.shg-box {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  flex-direction: column;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  /**
   * While `flex: 1` is enough here, we need to supply the rest
   * of the parameters (`1 auto`) to keep compatibility with IE11.
   * Otherwise, IE11 flex would break.
   */
  flex: 1 1 auto;
}

.shg-box > .shg-box-content {
  z-index: 4;
  position: relative;
  /**
   * This is part of an IE11 fallback to avoid flex introducing
   * huge amount of weird space on the bottom on the section element.
   */
  min-height: 1px;
}

.shg-box-vertical-align-wrapper, .shg-box-vertical-center-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.shg-box-vertical-align-top {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.shg-box-vertical-align-center, .shg-box-vertical-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-box-vertical-align-bottom {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.shg-box-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  pointer-events: none;
}

.shg-box-video-wrapper {
  /*
    It's very important we don't create a new containing block for shg-box-video-wrapper
    Jarallax uses transforms + position: fixed to achieve it's parallaxing effect

    https://developer.mozilla.org/en-US/docs/Web/CSS/position

    position: fixed
    The element is removed from the normal document flow, and no space is created for the element in the page layout. 
    It is positioned relative to the initial containing block established by the viewport, 

    *
      except when one of its ancestors has a transform, perspective, or filter property set to something other than none 
      (see the CSS Transforms Spec), or the will-change property is set to transform, 
      in which case that ancestor behaves as the containing block. 
    *
  */

  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

#s-8dbc8a6a-da6f-4918-83c5-15b32e6449e3 {
  margin-top: 0px;
margin-bottom: 1px;
min-height: 50px;
}
@media (min-width: 1200px){#s-8dbc8a6a-da6f-4918-83c5-15b32e6449e3 {
  display: none;
}
#s-8dbc8a6a-da6f-4918-83c5-15b32e6449e3, #wrap-s-8dbc8a6a-da6f-4918-83c5-15b32e6449e3 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8dbc8a6a-da6f-4918-83c5-15b32e6449e3 {
  display: none;
}
#s-8dbc8a6a-da6f-4918-83c5-15b32e6449e3, #wrap-s-8dbc8a6a-da6f-4918-83c5-15b32e6449e3 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-8dbc8a6a-da6f-4918-83c5-15b32e6449e3 {
  
}
}@media (max-width: 767px){#s-8dbc8a6a-da6f-4918-83c5-15b32e6449e3 {
  display: none;
}
#s-8dbc8a6a-da6f-4918-83c5-15b32e6449e3, #wrap-s-8dbc8a6a-da6f-4918-83c5-15b32e6449e3 { display: none !important; }}







#s-8dbc8a6a-da6f-4918-83c5-15b32e6449e3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8dbc8a6a-da6f-4918-83c5-15b32e6449e3 {
  cursor: pointer;
}#s-8dbc8a6a-da6f-4918-83c5-15b32e6449e3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shogun-image-container {
  position: relative;
}

.shogun-image-container.shg-align-left {
  text-align: left;
}

.shogun-image-container.shg-align-center {
  text-align: center;
}

.shogun-image-container.shg-align-right {
  text-align: right;
}

.shogun-image-linked {
  cursor: pointer;
}

.shogun-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.shogun-image-overlay.shg-top-left {
  align-items: flex-start;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-top-center {
  align-items: flex-start;
  justify-content: center;
}

.shogun-image-overlay.shg-top-right {
  align-items: flex-start;
  justify-content: flex-end;
}

.shogun-image-overlay.shg-middle-left {
  align-items: center;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-middle-center {
  align-items: center;
  justify-content: center;
}

.shogun-image-overlay.shg-middle-right {
  align-items: center;
  justify-content: flex-end;
}

.shogun-image-overlay.shg-bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-bottom-center {
  align-items: flex-end;
  justify-content: center;
}

.shogun-image-overlay.shg-bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}

.shogun-image-overlay p {
  margin: 0;
  padding: 0;
  line-height: normal;
}

.shogun-image-cover {
  object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

.shogun-image-contain {
  font-family: "object-fit: contain;";
  object-fit: contain;
  width: 100%;
}

.shogun-image-link {
  display: block;
  min-height: inherit;
  max-height: inherit;
}

img.shogun-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.shogun-image-content {
  display: flex;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.shogun-image-content-linked,
.shogun-image-content-not-linked {
  pointer-events: none;
}

.shogun-image-content-not-linked > div {
  pointer-events: auto;
}

.shogun-image-content-linked a,
.shogun-image-content-linked button,
.shogun-image-content-linked iframe,
.shogun-image-content-linked .shg-box-linked {
  pointer-events: auto;
}

.shogun-image-content > div {
  width: 100%;
}

.shogun-image-content-top {
  align-items: flex-start;
}

.shogun-image-content-center {
  align-items: center;
}

.shogun-image-content-bottom {
  align-items: flex-end;
}

.shogun-image.hover {
  opacity: 0;
  z-index: 200;
  position: absolute;
  left: 0;
  top: 0;
}

.shogun-image.hover:hover {
  opacity: 1;
}

#s-76c6432a-20c2-4b2b-9c65-ce20add592c4 {
  margin-top: 0px;
margin-bottom: 0px;
max-width: 2000px;
aspect-ratio: 2000/1200;
text-align: center;
}





  #s-76c6432a-20c2-4b2b-9c65-ce20add592c4 img.shogun-image,
  #s-76c6432a-20c2-4b2b-9c65-ce20add592c4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-76c6432a-20c2-4b2b-9c65-ce20add592c4 {
    width: 100%;
    height: auto;
  }



  #s-76c6432a-20c2-4b2b-9c65-ce20add592c4 img.shogun-image {
    

    
    
    
  }


#s-76c6432a-20c2-4b2b-9c65-ce20add592c4 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-5ce94d5b-7d13-40f1-8a0e-c55bc3710f45 {
  margin-top: 40px;
margin-left: 40px;
margin-bottom: 40px;
margin-right: 40px;
}








#s-5ce94d5b-7d13-40f1-8a0e-c55bc3710f45 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5ce94d5b-7d13-40f1-8a0e-c55bc3710f45.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.shg-rich-text {
  overflow-wrap: break-word;
}

.shg-rich-text img {
  margin: 0 20px;
}

@media (max-width: 768px) {
  .shg-rich-text img {
    display: block;
    float: none !important;
    margin: 0 auto;
  }
}

.shg-default-text-content *:first-child {
  margin-top: 0;
}

.shg-default-text-content {
  text-align: left;
}

.shg-default-text-content p,
.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6,
.shg-default-text-content address,
.shg-default-text-content pre,
.shg-default-text-content div,
.shg-default-text-content ol,
.shg-default-text-content ul {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  color: #000000;
  font-family: inherit;
  font-style: normal;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-transform: none;
}

.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6 {
  color: ;
  font-family: ;
  font-weight: ;
}

.shg-default-text-content a {
  background-color: inherit;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-style: inherit;
  text-decoration: underline;
  text-transform: inherit;
}

.shg-default-text-content strong,
.shg-default-text-content em {
  background-color: inherit;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: inherit;
  text-transform: inherit;
}

.shg-default-text-content em {
  font-weight: inherit;
}

.shg-default-text-content strong {
  font-style: inherit;
  font-weight: 700;
}

/* https://stackoverflow.com/a/16094931/3696652 */
.shg-default-text-content ::selection,
.shg-default-text-content *::selection {
  background: #accef7;
}

.shg-default-text-content p {
  font-size: 1em;
  font-weight: ;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0.6em;
  color: ;
  font-family: ;
}

.shg-default-text-content h1 {
  font-size: 1.714em;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.166;
  margin-top: 0.67em;
}

.shg-default-text-content h2 {
  font-size: 1.43em;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-top: 0.83em;
}

.shg-default-text-content h3 {
  font-size: 1.142em;
  font-weight: 500;
  letter-spacing: -0.008em;
  line-height: 1.5;
  margin-top: 1em;
}

.shg-default-text-content h4 {
  font-size: 1em;
  font-weight: 600;
  letter-spacing: -0.006em;
  line-height: 1.428;
  margin-top: 1.33em;
}

.shg-default-text-content h5 {
  font-size: 0.857em;
  font-weight: 600;
  letter-spacing: -0.003em;
  line-height: 1.333;
  margin-top: 1.43em;
}

.shg-default-text-content h6 {
  font-size: 0.785em;
  font-weight: 600;
  letter-spacing: -0.003em;
  line-height: 1.454;
  margin-top: 1.42em;
  text-transform: uppercase;
}

.shg-default-text-content ul {
  list-style: disc;
}

.shg-default-text-content ol {
  list-style: decimal;
}

.shg-default-text-content ul,
.shg-default-text-content ol {
  margin-block-end: 1em;
  margin-block-start: 1em;
  margin-bottom: 0;
  margin-inline-end: 0;
  margin-inline-start: 0;
  margin-top: 0;
  padding-inline-start: 40px;
}

.shg-default-text-content li {
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1;
  list-style: inherit;
  margin-top: 0.67em;
}

.shg-default-text-content pre {
  font-family: monospace;
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 1em;
  white-space: pre-wrap;
  word-break: normal;
}

.shg-default-text-content address {
  font-size: 1em;
  font-style: italic;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0;
}

.shg-default-text-content div {
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-bottom: 0;
  margin-top: 0.67em;
}

.shg-theme-text-content h1,
.shg-theme-text-content h2,
.shg-theme-text-content h3,
.shg-theme-text-content h4,
.shg-theme-text-content h5,
.shg-theme-text-content h6 {
  color: ;
  font-family: ;
  font-weight: ;
}

.shg-theme-text-content p {
  color: ;
  font-family: ;
  font-weight: ;
}

#s-819a62d7-fa09-447e-a6b2-2fa564780bae {
  margin-bottom: 15px;
}

.shg-btn.shg-cse, .shg-btn.shg-cse:hover, .shg-btn.shg-cse:focus {
  color: #FFF;
}

.shg-btn {
  cursor: pointer;
  box-sizing: border-box;
}

.shg-btn-text {
  font-weight: ;
  font-family: ;
}

.shg-btn.shg-btn-stretch {
  display: block;
}

.shg-btn:not(.shg-btn-stretch) {
  display: inline-block;
}

.shg-btn-wrapper.shg-align-left {
  text-align: left;
}

.shg-btn-wrapper.shg-align-center {
  text-align: center;
}

.shg-btn-wrapper.shg-align-right {
  text-align: right;
}

#s-8cf0432b-98a8-4dc1-b870-22c68af82976 {
  padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(255, 255, 255, 0);
text-align: left;
text-decoration: none;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-8cf0432b-98a8-4dc1-b870-22c68af82976:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-8cf0432b-98a8-4dc1-b870-22c68af82976:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-8cf0432b-98a8-4dc1-b870-22c68af82976-root {
    text-align: left;
  }


#s-8cf0432b-98a8-4dc1-b870-22c68af82976.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-8cf0432b-98a8-4dc1-b870-22c68af82976-root {
    text-align: left;
  }


#s-8cf0432b-98a8-4dc1-b870-22c68af82976.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-8cf0432b-98a8-4dc1-b870-22c68af82976-root {
    text-align: left;
  }


#s-8cf0432b-98a8-4dc1-b870-22c68af82976.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-8cf0432b-98a8-4dc1-b870-22c68af82976-root {
    text-align: left;
  }


#s-8cf0432b-98a8-4dc1-b870-22c68af82976.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-8cf0432b-98a8-4dc1-b870-22c68af82976-root {
    text-align: left;
  }


#s-8cf0432b-98a8-4dc1-b870-22c68af82976.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}
#s-51da9786-753e-4f54-b836-79d59f9d94b7 {
  margin-top: 0px;
margin-bottom: 1px;
min-height: 50px;
}
@media (min-width: 1200px){#s-51da9786-753e-4f54-b836-79d59f9d94b7 {
  display: none;
}
#s-51da9786-753e-4f54-b836-79d59f9d94b7, #wrap-s-51da9786-753e-4f54-b836-79d59f9d94b7 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-51da9786-753e-4f54-b836-79d59f9d94b7 {
  display: none;
}
#s-51da9786-753e-4f54-b836-79d59f9d94b7, #wrap-s-51da9786-753e-4f54-b836-79d59f9d94b7 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-51da9786-753e-4f54-b836-79d59f9d94b7 {
  display: none;
}
#s-51da9786-753e-4f54-b836-79d59f9d94b7, #wrap-s-51da9786-753e-4f54-b836-79d59f9d94b7 { display: none !important; }}







#s-51da9786-753e-4f54-b836-79d59f9d94b7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-51da9786-753e-4f54-b836-79d59f9d94b7 {
  cursor: pointer;
}#s-51da9786-753e-4f54-b836-79d59f9d94b7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-61063625-a6ba-440b-b321-7037b5af43fa {
  max-width: 750px;
aspect-ratio: 750/900;
text-align: center;
}





  #s-61063625-a6ba-440b-b321-7037b5af43fa img.shogun-image,
  #s-61063625-a6ba-440b-b321-7037b5af43fa .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-61063625-a6ba-440b-b321-7037b5af43fa {
    width: 100%;
    height: auto;
  }



  #s-61063625-a6ba-440b-b321-7037b5af43fa img.shogun-image {
    

    
    
    
  }


#s-61063625-a6ba-440b-b321-7037b5af43fa .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-3e008204-c16f-42fe-8c15-cd65f5d084b5 {
  margin-top: 40px;
margin-left: 30px;
margin-bottom: 40px;
margin-right: 30px;
}
@media (max-width: 767px){#s-3e008204-c16f-42fe-8c15-cd65f5d084b5 {
  margin-bottom: 50px;
}
}







#s-3e008204-c16f-42fe-8c15-cd65f5d084b5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3e008204-c16f-42fe-8c15-cd65f5d084b5.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-53dc9046-a83d-4bac-9cae-7238605c8000 {
  margin-bottom: 20px;
}

#s-72580fb7-6df7-45aa-b56c-144b39ae3ead {
  padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(255, 255, 255, 0);
text-align: left;
text-decoration: none;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-72580fb7-6df7-45aa-b56c-144b39ae3ead:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-72580fb7-6df7-45aa-b56c-144b39ae3ead:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-72580fb7-6df7-45aa-b56c-144b39ae3ead-root {
    text-align: left;
  }


#s-72580fb7-6df7-45aa-b56c-144b39ae3ead.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-72580fb7-6df7-45aa-b56c-144b39ae3ead-root {
    text-align: left;
  }


#s-72580fb7-6df7-45aa-b56c-144b39ae3ead.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-72580fb7-6df7-45aa-b56c-144b39ae3ead-root {
    text-align: left;
  }


#s-72580fb7-6df7-45aa-b56c-144b39ae3ead.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-72580fb7-6df7-45aa-b56c-144b39ae3ead-root {
    text-align: left;
  }


#s-72580fb7-6df7-45aa-b56c-144b39ae3ead.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-72580fb7-6df7-45aa-b56c-144b39ae3ead-root {
    text-align: left;
  }


#s-72580fb7-6df7-45aa-b56c-144b39ae3ead.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}
#s-04352153-f275-4986-a4aa-301da40804c7 {
  background-size: cover;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
min-height: 0px;
background-position: center center;
background-repeat: no-repeat;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-04352153-f275-4986-a4aa-301da40804c7 {
  display: none;
}
#s-04352153-f275-4986-a4aa-301da40804c7, #wrap-s-04352153-f275-4986-a4aa-301da40804c7 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-04352153-f275-4986-a4aa-301da40804c7 {
  display: none;
}
#s-04352153-f275-4986-a4aa-301da40804c7, #wrap-s-04352153-f275-4986-a4aa-301da40804c7 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-04352153-f275-4986-a4aa-301da40804c7 {
  
}
}@media (max-width: 767px){#s-04352153-f275-4986-a4aa-301da40804c7 {
  
}
}







#s-04352153-f275-4986-a4aa-301da40804c7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-04352153-f275-4986-a4aa-301da40804c7.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.shg-row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.shg-row > * {
  min-height: inherit;
  max-height: inherit;
}

[class*=shg-c-xs],
[class*=shg-c-sm],
[class*=shg-c-md],
[class*=shg-c-lg] {
  position: relative;
}

#s-b0393975-09e7-492b-9769-79788890fae8 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-b0393975-09e7-492b-9769-79788890fae8 {
  
}
}@media (max-width: 767px){#s-b0393975-09e7-492b-9769-79788890fae8 {
  
}
}
@media (min-width: 0px) {
[id="s-b0393975-09e7-492b-9769-79788890fae8"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.5px);
}

}

@media (min-width: 768px) {
[id="s-b0393975-09e7-492b-9769-79788890fae8"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.75px);
}

}

@media (min-width: 992px) {
[id="s-b0393975-09e7-492b-9769-79788890fae8"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.75px);
}

}

@media (min-width: 1200px) {
[id="s-b0393975-09e7-492b-9769-79788890fae8"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.75px);
}

}

#s-7c347995-a7a3-4d6d-9885-58d9d7ec54f4 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-7c347995-a7a3-4d6d-9885-58d9d7ec54f4 {
  padding-bottom: 1px;
}
}







#s-7c347995-a7a3-4d6d-9885-58d9d7ec54f4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7c347995-a7a3-4d6d-9885-58d9d7ec54f4 {
  cursor: pointer;
}#s-7c347995-a7a3-4d6d-9885-58d9d7ec54f4.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-fb33c708-16f4-44f8-893f-2d07703f2fdc {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-fb33c708-16f4-44f8-893f-2d07703f2fdc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fb33c708-16f4-44f8-893f-2d07703f2fdc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-69e1abbf-2736-4de3-93de-95e52216ddd2 {
  text-align: center;
background-color: rgba(255, 255, 255, 0.02);
}
#s-69e1abbf-2736-4de3-93de-95e52216ddd2:hover {opacity: 1 !important;}






  #s-69e1abbf-2736-4de3-93de-95e52216ddd2 img.shogun-image {
    

    
    
    
  }


#s-69e1abbf-2736-4de3-93de-95e52216ddd2 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-c403be27-4f65-4233-853d-3c5f5b8ca529 {
  min-height: 50px;
text-align: center;
background-color: rgba(255, 255, 255, 0.02);
}
#s-c403be27-4f65-4233-853d-3c5f5b8ca529:hover {opacity: 1 !important;}






  #s-c403be27-4f65-4233-853d-3c5f5b8ca529 img.shogun-image {
    

    
    
    
  }


#s-c403be27-4f65-4233-853d-3c5f5b8ca529 .shogun-image-content {
  
    align-items: center;
  
}

#s-dc8960a8-b538-4ca4-b2f4-cbc315a6a77f {
  margin-left: 0px;
margin-right: 0px;
padding-top: 16px;
padding-left: 20px;
padding-bottom: 16px;
padding-right: 20px;
background-color: rgba(247, 247, 247, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-dc8960a8-b538-4ca4-b2f4-cbc315a6a77f {
  padding-left: 16px;
padding-right: 16px;
}
}@media (max-width: 767px){#s-dc8960a8-b538-4ca4-b2f4-cbc315a6a77f {
  padding-left: 16px;
padding-right: 16px;
}
}







#s-dc8960a8-b538-4ca4-b2f4-cbc315a6a77f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dc8960a8-b538-4ca4-b2f4-cbc315a6a77f.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-44f994e1-b97d-4e63-96cb-f5a68e4e0afe {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-bottom: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-44f994e1-b97d-4e63-96cb-f5a68e4e0afe {
  
}
}@media (max-width: 767px){#s-44f994e1-b97d-4e63-96cb-f5a68e4e0afe {
  
}
}
#s-628099ef-d8eb-40be-b1c5-64c06587ce21 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-628099ef-d8eb-40be-b1c5-64c06587ce21 {
  padding-bottom: 1px;
}
}







#s-628099ef-d8eb-40be-b1c5-64c06587ce21 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-628099ef-d8eb-40be-b1c5-64c06587ce21 {
  cursor: pointer;
}#s-628099ef-d8eb-40be-b1c5-64c06587ce21.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-c22cf5d3-a808-4bc1-8db2-f7b95194b00c {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-c22cf5d3-a808-4bc1-8db2-f7b95194b00c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c22cf5d3-a808-4bc1-8db2-f7b95194b00c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0abdbab5-aa42-46e8-b183-b2392d45bbc5 {
  text-align: center;
background-color: rgba(255, 255, 255, 0.02);
}
#s-0abdbab5-aa42-46e8-b183-b2392d45bbc5:hover {opacity: 1 !important;}






  #s-0abdbab5-aa42-46e8-b183-b2392d45bbc5 img.shogun-image {
    

    
    
    
  }


#s-0abdbab5-aa42-46e8-b183-b2392d45bbc5 .shogun-image-content {
  
    align-items: center;
  
}

#s-24c95b47-340b-4151-8769-597d84786d23 {
  min-height: 50px;
text-align: center;
background-color: rgba(255, 255, 255, 0.02);
}
#s-24c95b47-340b-4151-8769-597d84786d23:hover {opacity: 1 !important;}






  #s-24c95b47-340b-4151-8769-597d84786d23 img.shogun-image {
    

    
    
    
  }


#s-24c95b47-340b-4151-8769-597d84786d23 .shogun-image-content {
  
    align-items: center;
  
}

#s-6b633913-3372-40ea-bfee-37d55dcf0a3a {
  margin-left: 0px;
margin-right: 0px;
padding-top: 16px;
padding-left: 20px;
padding-bottom: 16px;
padding-right: 20px;
background-color: rgba(247, 247, 247, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-6b633913-3372-40ea-bfee-37d55dcf0a3a {
  padding-left: 16px;
padding-right: 16px;
}
}@media (max-width: 767px){#s-6b633913-3372-40ea-bfee-37d55dcf0a3a {
  padding-left: 16px;
padding-right: 16px;
}
}







#s-6b633913-3372-40ea-bfee-37d55dcf0a3a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6b633913-3372-40ea-bfee-37d55dcf0a3a.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-c242c13c-5cfa-4514-8e42-1bb1ce261997 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-c242c13c-5cfa-4514-8e42-1bb1ce261997 {
  
}
}@media (max-width: 767px){#s-c242c13c-5cfa-4514-8e42-1bb1ce261997 {
  
}
}
#s-314c4b93-9885-43b5-87c2-2f9d87c261c8 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-314c4b93-9885-43b5-87c2-2f9d87c261c8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-314c4b93-9885-43b5-87c2-2f9d87c261c8 {
  cursor: pointer;
}#s-314c4b93-9885-43b5-87c2-2f9d87c261c8.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-e76d378b-17cb-43f1-8138-ac2fb190d30e {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-e76d378b-17cb-43f1-8138-ac2fb190d30e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e76d378b-17cb-43f1-8138-ac2fb190d30e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1bf05f6b-2fff-42c2-99e6-d46b1bcff163 {
  text-align: center;
background-color: rgba(255, 255, 255, 0.02);
}
#s-1bf05f6b-2fff-42c2-99e6-d46b1bcff163:hover {opacity: 1 !important;}






  #s-1bf05f6b-2fff-42c2-99e6-d46b1bcff163 img.shogun-image {
    

    
    
    
  }


#s-1bf05f6b-2fff-42c2-99e6-d46b1bcff163 .shogun-image-content {
  
    align-items: center;
  
}

#s-6906eee2-1dca-4447-8efe-7aa7a3ea24ac {
  min-height: 50px;
text-align: center;
background-color: rgba(255, 255, 255, 0.02);
}
#s-6906eee2-1dca-4447-8efe-7aa7a3ea24ac:hover {opacity: 1 !important;}






  #s-6906eee2-1dca-4447-8efe-7aa7a3ea24ac img.shogun-image {
    

    
    
    
  }


#s-6906eee2-1dca-4447-8efe-7aa7a3ea24ac .shogun-image-content {
  
    align-items: center;
  
}

#s-765ab168-6eae-4b82-b0cc-de639242aa95 {
  margin-left: 0px;
margin-right: 0px;
padding-top: 16px;
padding-left: 20px;
padding-bottom: 16px;
padding-right: 20px;
background-color: rgba(247, 247, 247, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-765ab168-6eae-4b82-b0cc-de639242aa95 {
  padding-left: 16px;
padding-right: 16px;
}
}@media (max-width: 767px){#s-765ab168-6eae-4b82-b0cc-de639242aa95 {
  padding-left: 16px;
padding-right: 16px;
}
}







#s-765ab168-6eae-4b82-b0cc-de639242aa95 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-765ab168-6eae-4b82-b0cc-de639242aa95.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-ec779aa3-09b7-4f2c-b78c-08f555590b27 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 991px){#s-ec779aa3-09b7-4f2c-b78c-08f555590b27 {
  padding-bottom: 0px;
}
}@media (max-width: 767px){#s-ec779aa3-09b7-4f2c-b78c-08f555590b27 {
  padding-bottom: 0px;
}
}
#s-c3809990-6c43-4c1e-b963-01a2c65ebabb {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-c3809990-6c43-4c1e-b963-01a2c65ebabb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c3809990-6c43-4c1e-b963-01a2c65ebabb {
  cursor: pointer;
}#s-c3809990-6c43-4c1e-b963-01a2c65ebabb.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-ab8a16eb-b6db-4b07-b775-ac6cd351bf77 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-ab8a16eb-b6db-4b07-b775-ac6cd351bf77 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ab8a16eb-b6db-4b07-b775-ac6cd351bf77.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-888a0c35-3591-41f7-bb7c-411d570d4da5 {
  text-align: center;
background-color: rgba(255, 255, 255, 0.02);
}
#s-888a0c35-3591-41f7-bb7c-411d570d4da5:hover {border-style: solid !important;
border-top-width: 0px !important;
border-left-width: 0px !important;
border-bottom-width: 0px !important;
border-right-width: 0px !important;
border-color: #2C2A34 !important;
opacity: 1 !important;}






  #s-888a0c35-3591-41f7-bb7c-411d570d4da5 img.shogun-image {
    

    
    
    
  }


#s-888a0c35-3591-41f7-bb7c-411d570d4da5 .shogun-image-content {
  
    align-items: center;
  
}

#s-9c217908-5687-4f34-8a18-206fa9ea7b58 {
  min-height: 50px;
text-align: center;
background-color: rgba(255, 255, 255, 0.02);
}
#s-9c217908-5687-4f34-8a18-206fa9ea7b58:hover {opacity: 1 !important;}






  #s-9c217908-5687-4f34-8a18-206fa9ea7b58 img.shogun-image {
    

    
    
    
  }


#s-9c217908-5687-4f34-8a18-206fa9ea7b58 .shogun-image-content {
  
    align-items: center;
  
}

#s-08e222a5-753e-43f4-b9bd-eec77a90de30 {
  margin-left: 0px;
margin-right: 0px;
padding-top: 16px;
padding-left: 20px;
padding-bottom: 16px;
padding-right: 20px;
background-color: rgba(247, 247, 247, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-08e222a5-753e-43f4-b9bd-eec77a90de30 {
  padding-left: 16px;
padding-right: 16px;
}
}@media (max-width: 767px){#s-08e222a5-753e-43f4-b9bd-eec77a90de30 {
  padding-left: 16px;
padding-right: 16px;
}
}







#s-08e222a5-753e-43f4-b9bd-eec77a90de30 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-08e222a5-753e-43f4-b9bd-eec77a90de30.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-a470a43f-f3ee-4b76-8fca-9932756e467e {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-bottom: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-a470a43f-f3ee-4b76-8fca-9932756e467e {
  
}
}@media (max-width: 767px){#s-a470a43f-f3ee-4b76-8fca-9932756e467e {
  
}
}
#s-a04b7572-7d14-4041-8087-1cb6f39ce35e {
  margin-top: 0px;
margin-bottom: 1px;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-a04b7572-7d14-4041-8087-1cb6f39ce35e {
  display: none;
}
#s-a04b7572-7d14-4041-8087-1cb6f39ce35e, #wrap-s-a04b7572-7d14-4041-8087-1cb6f39ce35e { display: none !important; }}@media (max-width: 767px){#s-a04b7572-7d14-4041-8087-1cb6f39ce35e {
  display: none;
}
#s-a04b7572-7d14-4041-8087-1cb6f39ce35e, #wrap-s-a04b7572-7d14-4041-8087-1cb6f39ce35e { display: none !important; }}







#s-a04b7572-7d14-4041-8087-1cb6f39ce35e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a04b7572-7d14-4041-8087-1cb6f39ce35e {
  cursor: pointer;
}#s-a04b7572-7d14-4041-8087-1cb6f39ce35e.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-80ae7b1c-cb0c-409a-998c-44dc0cf22e67 {
  max-width: 3000px;
aspect-ratio: 3000/1200;
text-align: center;
}





  #s-80ae7b1c-cb0c-409a-998c-44dc0cf22e67 img.shogun-image,
  #s-80ae7b1c-cb0c-409a-998c-44dc0cf22e67 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-80ae7b1c-cb0c-409a-998c-44dc0cf22e67 {
    width: 100%;
    height: auto;
  }



  #s-80ae7b1c-cb0c-409a-998c-44dc0cf22e67 img.shogun-image {
    

    
    
    
  }


#s-80ae7b1c-cb0c-409a-998c-44dc0cf22e67 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-fa75de10-be0e-40dd-964d-1897f9433a69 {
  margin-top: 100px;
margin-left: 100px;
margin-bottom: 100px;
margin-right: 100px;
}
@media (min-width: 1200px){#s-fa75de10-be0e-40dd-964d-1897f9433a69 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-fa75de10-be0e-40dd-964d-1897f9433a69 {
  margin-top: 50px;
margin-left: 50px;
margin-bottom: 50px;
margin-right: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-fa75de10-be0e-40dd-964d-1897f9433a69 {
  margin-top: 50px;
margin-left: 50px;
margin-bottom: 50px;
margin-right: 50px;
display: none;
}
#s-fa75de10-be0e-40dd-964d-1897f9433a69, #wrap-s-fa75de10-be0e-40dd-964d-1897f9433a69 { display: none !important; }}@media (max-width: 767px){#s-fa75de10-be0e-40dd-964d-1897f9433a69 {
  margin-top: 30px;
margin-left: 30px;
margin-bottom: 30px;
margin-right: 30px;
display: none;
}
#s-fa75de10-be0e-40dd-964d-1897f9433a69, #wrap-s-fa75de10-be0e-40dd-964d-1897f9433a69 { display: none !important; }}







#s-fa75de10-be0e-40dd-964d-1897f9433a69 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fa75de10-be0e-40dd-964d-1897f9433a69.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-246c2eed-5d39-4635-a711-da11205784ed {
  margin-bottom: 20px;
}

#s-b7a8b6e5-bc18-4041-a13a-3cda7454d71e {
  padding-top: 10px;
padding-left: 40px;
padding-bottom: 10px;
padding-right: 40px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(255, 255, 255, 0);
text-align: left;
text-decoration: none;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-b7a8b6e5-bc18-4041-a13a-3cda7454d71e:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(18, 18, 18, 1) !important;}#s-b7a8b6e5-bc18-4041-a13a-3cda7454d71e:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(18, 18, 18, 1) !important;}

  #s-b7a8b6e5-bc18-4041-a13a-3cda7454d71e-root {
    text-align: left;
  }


#s-b7a8b6e5-bc18-4041-a13a-3cda7454d71e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-b7a8b6e5-bc18-4041-a13a-3cda7454d71e-root {
    text-align: left;
  }


#s-b7a8b6e5-bc18-4041-a13a-3cda7454d71e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b7a8b6e5-bc18-4041-a13a-3cda7454d71e-root {
    text-align: left;
  }


#s-b7a8b6e5-bc18-4041-a13a-3cda7454d71e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b7a8b6e5-bc18-4041-a13a-3cda7454d71e-root {
    text-align: left;
  }


#s-b7a8b6e5-bc18-4041-a13a-3cda7454d71e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-b7a8b6e5-bc18-4041-a13a-3cda7454d71e-root {
    text-align: left;
  }


#s-b7a8b6e5-bc18-4041-a13a-3cda7454d71e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}
#s-e44b9a85-d6eb-4d04-93aa-145a71f2b6e5 {
  background-size: cover;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
min-height: 0px;
background-position: center center;
background-repeat: no-repeat;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-e44b9a85-d6eb-4d04-93aa-145a71f2b6e5 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e44b9a85-d6eb-4d04-93aa-145a71f2b6e5 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-e44b9a85-d6eb-4d04-93aa-145a71f2b6e5 {
  display: none;
}
#s-e44b9a85-d6eb-4d04-93aa-145a71f2b6e5, #wrap-s-e44b9a85-d6eb-4d04-93aa-145a71f2b6e5 { display: none !important; }}@media (max-width: 767px){#s-e44b9a85-d6eb-4d04-93aa-145a71f2b6e5 {
  display: none;
}
#s-e44b9a85-d6eb-4d04-93aa-145a71f2b6e5, #wrap-s-e44b9a85-d6eb-4d04-93aa-145a71f2b6e5 { display: none !important; }}







#s-e44b9a85-d6eb-4d04-93aa-145a71f2b6e5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e44b9a85-d6eb-4d04-93aa-145a71f2b6e5.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-50fe8372-9e74-4087-a0b8-34ab641bc96e {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-50fe8372-9e74-4087-a0b8-34ab641bc96e {
  
}
}@media (max-width: 767px){#s-50fe8372-9e74-4087-a0b8-34ab641bc96e {
  
}
}
@media (min-width: 0px) {
[id="s-50fe8372-9e74-4087-a0b8-34ab641bc96e"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.5px);
}

}

@media (min-width: 768px) {
[id="s-50fe8372-9e74-4087-a0b8-34ab641bc96e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.75px);
}

}

@media (min-width: 992px) {
[id="s-50fe8372-9e74-4087-a0b8-34ab641bc96e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.75px);
}

}

@media (min-width: 1200px) {
[id="s-50fe8372-9e74-4087-a0b8-34ab641bc96e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.75px);
}

}

#s-30c15034-3ae6-4b68-86f9-18c2d72fdad2 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-30c15034-3ae6-4b68-86f9-18c2d72fdad2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-30c15034-3ae6-4b68-86f9-18c2d72fdad2 {
  cursor: pointer;
}#s-30c15034-3ae6-4b68-86f9-18c2d72fdad2.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-1a952a9b-2ade-43ad-b274-ae838b79db33 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-1a952a9b-2ade-43ad-b274-ae838b79db33 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1a952a9b-2ade-43ad-b274-ae838b79db33.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-88f88ca4-5d80-48cf-ab71-4ec5b66ddcdd {
  text-align: center;
background-color: rgba(255, 255, 255, 0.02);
}
#s-88f88ca4-5d80-48cf-ab71-4ec5b66ddcdd:hover {opacity: 1 !important;}






  #s-88f88ca4-5d80-48cf-ab71-4ec5b66ddcdd img.shogun-image {
    

    
    
    
  }


#s-88f88ca4-5d80-48cf-ab71-4ec5b66ddcdd .shogun-image-content {
  
    align-items: center;
  
}

#s-f902661d-6db3-4255-a543-705a404dfc05 {
  text-align: center;
background-color: rgba(255, 255, 255, 0.02);
}
#s-f902661d-6db3-4255-a543-705a404dfc05:hover {opacity: 0.8 !important;}






  #s-f902661d-6db3-4255-a543-705a404dfc05 img.shogun-image {
    

    
    
    
  }


#s-f902661d-6db3-4255-a543-705a404dfc05 .shogun-image-content {
  
    align-items: center;
  
}

#s-2b676810-ab90-4f69-bdbe-63fffbded51a {
  margin-left: 0px;
margin-right: 0px;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 30px;
padding-right: 20px;
background-color: rgba(247, 247, 247, 1);
}
@media (min-width: 1200px){#s-2b676810-ab90-4f69-bdbe-63fffbded51a {
  padding-bottom: 20px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2b676810-ab90-4f69-bdbe-63fffbded51a {
  padding-bottom: 20px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-2b676810-ab90-4f69-bdbe-63fffbded51a {
  padding-top: 16px;
padding-left: 16px;
padding-bottom: 16px;
padding-right: 16px;
}
}@media (max-width: 767px){#s-2b676810-ab90-4f69-bdbe-63fffbded51a {
  padding-top: 16px;
padding-left: 16px;
padding-bottom: 16px;
padding-right: 16px;
}
}







#s-2b676810-ab90-4f69-bdbe-63fffbded51a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2b676810-ab90-4f69-bdbe-63fffbded51a.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-f7c1e40f-f418-4952-906a-9dccc248f6fc {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-bottom: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-f7c1e40f-f418-4952-906a-9dccc248f6fc {
  
}
}@media (max-width: 767px){#s-f7c1e40f-f418-4952-906a-9dccc248f6fc {
  
}
}
#s-f1338ae9-c3a6-4b5e-8073-3fd9891f3e0e {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
opacity: 1;
}








#s-f1338ae9-c3a6-4b5e-8073-3fd9891f3e0e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f1338ae9-c3a6-4b5e-8073-3fd9891f3e0e {
  cursor: pointer;
}#s-f1338ae9-c3a6-4b5e-8073-3fd9891f3e0e.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-cc0ac21b-9dee-42ae-aae9-d726e0b01be6 {
  box-shadow:0px 0px 0px 0px ;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-cc0ac21b-9dee-42ae-aae9-d726e0b01be6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cc0ac21b-9dee-42ae-aae9-d726e0b01be6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fb692131-f2cd-443b-9a26-7e2094e4fac0 {
  text-align: center;
background-color: rgba(255, 255, 255, 0.02);
opacity: 1;
}
#s-fb692131-f2cd-443b-9a26-7e2094e4fac0:hover {opacity: 1 !important;}






  #s-fb692131-f2cd-443b-9a26-7e2094e4fac0 img.shogun-image {
    

    
    
    
  }


#s-fb692131-f2cd-443b-9a26-7e2094e4fac0 .shogun-image-content {
  
    align-items: center;
  
}

#s-3e52a9af-1b79-4b90-b2b9-5d1386030ad3 {
  text-align: center;
background-color: rgba(255, 255, 255, 0.02);
opacity: 1;
}
#s-3e52a9af-1b79-4b90-b2b9-5d1386030ad3:hover {opacity: 0.8 !important;}






  #s-3e52a9af-1b79-4b90-b2b9-5d1386030ad3 img.shogun-image {
    

    
    
    
  }


#s-3e52a9af-1b79-4b90-b2b9-5d1386030ad3 .shogun-image-content {
  
    align-items: center;
  
}

#s-2d61a91f-d9b8-4827-91da-d097dfa09bf1 {
  margin-left: 0px;
margin-right: 0px;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 30px;
padding-right: 20px;
background-color: rgba(247, 247, 247, 1);
}
@media (min-width: 1200px){#s-2d61a91f-d9b8-4827-91da-d097dfa09bf1 {
  padding-bottom: 20px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2d61a91f-d9b8-4827-91da-d097dfa09bf1 {
  padding-bottom: 20px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-2d61a91f-d9b8-4827-91da-d097dfa09bf1 {
  padding-top: 16px;
padding-left: 16px;
padding-bottom: 16px;
padding-right: 16px;
}
}@media (max-width: 767px){#s-2d61a91f-d9b8-4827-91da-d097dfa09bf1 {
  padding-top: 16px;
padding-left: 16px;
padding-bottom: 16px;
padding-right: 16px;
}
}







#s-2d61a91f-d9b8-4827-91da-d097dfa09bf1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2d61a91f-d9b8-4827-91da-d097dfa09bf1.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-d3f3962e-dfd7-480f-8db8-d76d64450746 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-bottom: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-d3f3962e-dfd7-480f-8db8-d76d64450746 {
  
}
}@media (max-width: 767px){#s-d3f3962e-dfd7-480f-8db8-d76d64450746 {
  
}
}
#s-3b83c479-3efa-4067-904a-727e90628fe3 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-3b83c479-3efa-4067-904a-727e90628fe3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3b83c479-3efa-4067-904a-727e90628fe3 {
  cursor: pointer;
}#s-3b83c479-3efa-4067-904a-727e90628fe3.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-262d8873-7b1f-4036-8a88-7e2a8a81b381 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-262d8873-7b1f-4036-8a88-7e2a8a81b381 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-262d8873-7b1f-4036-8a88-7e2a8a81b381.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-85cfb4d6-6629-470b-a429-4d7666c3c56e {
  text-align: center;
background-color: rgba(255, 255, 255, 0.02);
}
#s-85cfb4d6-6629-470b-a429-4d7666c3c56e:hover {opacity: 1 !important;}






  #s-85cfb4d6-6629-470b-a429-4d7666c3c56e img.shogun-image {
    

    
    
    
  }


#s-85cfb4d6-6629-470b-a429-4d7666c3c56e .shogun-image-content {
  
    align-items: center;
  
}

#s-b6411846-6b63-49c1-a3f7-18e87888f01b {
  text-align: center;
background-color: rgba(255, 255, 255, 0.02);
}
#s-b6411846-6b63-49c1-a3f7-18e87888f01b:hover {opacity: 0.8 !important;}






  #s-b6411846-6b63-49c1-a3f7-18e87888f01b img.shogun-image {
    

    
    
    
  }


#s-b6411846-6b63-49c1-a3f7-18e87888f01b .shogun-image-content {
  
    align-items: center;
  
}

#s-0bc582d4-485c-4dcf-895d-dadc0f393c11 {
  margin-left: 0px;
margin-right: 0px;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 30px;
padding-right: 20px;
background-color: rgba(247, 247, 247, 1);
}
@media (min-width: 1200px){#s-0bc582d4-485c-4dcf-895d-dadc0f393c11 {
  padding-bottom: 20px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0bc582d4-485c-4dcf-895d-dadc0f393c11 {
  padding-bottom: 20px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-0bc582d4-485c-4dcf-895d-dadc0f393c11 {
  padding-top: 16px;
padding-left: 16px;
padding-bottom: 16px;
padding-right: 16px;
}
}@media (max-width: 767px){#s-0bc582d4-485c-4dcf-895d-dadc0f393c11 {
  padding-top: 16px;
padding-left: 16px;
padding-bottom: 16px;
padding-right: 16px;
}
}







#s-0bc582d4-485c-4dcf-895d-dadc0f393c11 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0bc582d4-485c-4dcf-895d-dadc0f393c11.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-b853c7db-e909-43e7-adf1-a7c98643bc97 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-b853c7db-e909-43e7-adf1-a7c98643bc97 {
  
}
}@media (max-width: 767px){#s-b853c7db-e909-43e7-adf1-a7c98643bc97 {
  
}
}
#s-82ca9932-5bb3-4c35-9231-b5f1ef5f2407 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-82ca9932-5bb3-4c35-9231-b5f1ef5f2407 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-82ca9932-5bb3-4c35-9231-b5f1ef5f2407 {
  cursor: pointer;
}#s-82ca9932-5bb3-4c35-9231-b5f1ef5f2407.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-725ed7a1-bb7f-4b69-bf58-5254056f0e04 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-725ed7a1-bb7f-4b69-bf58-5254056f0e04 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-725ed7a1-bb7f-4b69-bf58-5254056f0e04.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-54bf36cd-fb11-497a-8083-e609398d8d73 {
  text-align: center;
background-color: rgba(255, 255, 255, 0.02);
}
#s-54bf36cd-fb11-497a-8083-e609398d8d73:hover {border-style: solid !important;
border-top-width: 0px !important;
border-left-width: 0px !important;
border-bottom-width: 0px !important;
border-right-width: 0px !important;
border-color: #2C2A34 !important;
opacity: 1 !important;}






  #s-54bf36cd-fb11-497a-8083-e609398d8d73 img.shogun-image {
    

    
    
    
  }


#s-54bf36cd-fb11-497a-8083-e609398d8d73 .shogun-image-content {
  
    align-items: center;
  
}

#s-7eb71dd5-d047-4696-9791-ae1b4d5bd6ec {
  text-align: center;
background-color: rgba(255, 255, 255, 0.02);
}
#s-7eb71dd5-d047-4696-9791-ae1b4d5bd6ec:hover {opacity: 0.8 !important;}






  #s-7eb71dd5-d047-4696-9791-ae1b4d5bd6ec img.shogun-image {
    

    
    
    
  }


#s-7eb71dd5-d047-4696-9791-ae1b4d5bd6ec .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-6971f1ad-a3df-4324-b7f8-5533f5d474f3 {
  margin-left: 0px;
margin-right: 0px;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 30px;
padding-right: 20px;
background-color: rgba(247, 247, 247, 1);
}
@media (min-width: 1200px){#s-6971f1ad-a3df-4324-b7f8-5533f5d474f3 {
  padding-bottom: 20px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-6971f1ad-a3df-4324-b7f8-5533f5d474f3 {
  padding-bottom: 20px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-6971f1ad-a3df-4324-b7f8-5533f5d474f3 {
  padding-top: 16px;
padding-left: 16px;
padding-bottom: 16px;
padding-right: 16px;
}
}@media (max-width: 767px){#s-6971f1ad-a3df-4324-b7f8-5533f5d474f3 {
  padding-top: 16px;
padding-left: 16px;
padding-bottom: 16px;
padding-right: 16px;
}
}







#s-6971f1ad-a3df-4324-b7f8-5533f5d474f3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6971f1ad-a3df-4324-b7f8-5533f5d474f3.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-750c15cd-8ed7-428c-a5a9-d86112c5f82a {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-750c15cd-8ed7-428c-a5a9-d86112c5f82a {
  
}
}@media (max-width: 767px){#s-750c15cd-8ed7-428c-a5a9-d86112c5f82a {
  
}
}
#s-1b783e85-5738-4650-9f90-327f2ed32ea9 {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-6c738c0b-658b-4ae6-8573-4d56280c8bfc {
  background-size: cover;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 20px;
margin-right: 0px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
min-height: 0px;
background-position: center center;
background-repeat: no-repeat;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-6c738c0b-658b-4ae6-8573-4d56280c8bfc {
  margin-top: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-6c738c0b-658b-4ae6-8573-4d56280c8bfc {
  margin-top: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-6c738c0b-658b-4ae6-8573-4d56280c8bfc {
  display: none;
}
#s-6c738c0b-658b-4ae6-8573-4d56280c8bfc, #wrap-s-6c738c0b-658b-4ae6-8573-4d56280c8bfc { display: none !important; }}@media (max-width: 767px){#s-6c738c0b-658b-4ae6-8573-4d56280c8bfc {
  display: none;
}
#s-6c738c0b-658b-4ae6-8573-4d56280c8bfc, #wrap-s-6c738c0b-658b-4ae6-8573-4d56280c8bfc { display: none !important; }}







#s-6c738c0b-658b-4ae6-8573-4d56280c8bfc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6c738c0b-658b-4ae6-8573-4d56280c8bfc.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-01fe7d75-2333-49ca-abcb-8d2685659eca {
  margin-left: auto;
margin-right: auto;
padding-left: 50px;
padding-right: 50px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
max-width: 1520px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-01fe7d75-2333-49ca-abcb-8d2685659eca {
  
}
}@media (max-width: 767px){#s-01fe7d75-2333-49ca-abcb-8d2685659eca {
  
}
}
@media (min-width: 0px) {
[id="s-01fe7d75-2333-49ca-abcb-8d2685659eca"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-01fe7d75-2333-49ca-abcb-8d2685659eca"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-01fe7d75-2333-49ca-abcb-8d2685659eca"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-01fe7d75-2333-49ca-abcb-8d2685659eca"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (max-width: 767px) {
  [id="s-01fe7d75-2333-49ca-abcb-8d2685659eca"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-31e7bcaf-063c-42d9-be00-dc94adbd0767 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(232, 232, 232, 1);
border-style: solid;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-31e7bcaf-063c-42d9-be00-dc94adbd0767 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-31e7bcaf-063c-42d9-be00-dc94adbd0767 {
  cursor: pointer;
}#s-31e7bcaf-063c-42d9-be00-dc94adbd0767.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.shg-align-container {
  box-sizing: border-box;
}

.shg-image-content-wrapper {
  position: relative;
}

.shogun-image-container.shg-align-left {
  text-align: left;
}

.shogun-image-container.shg-align-center {
  text-align: center;
}

.shogun-image-container.shg-align-right {
  text-align: right;
}

.shogun-image-linked {
  cursor: pointer;
}

.shogun-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.shogun-image-overlay.shg-top-left {
  align-items: flex-start;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-top-center {
  align-items: flex-start;
  justify-content: center;
}

.shogun-image-overlay.shg-top-right {
  align-items: flex-start;
  justify-content: flex-end;
}

.shogun-image-overlay.shg-middle-left {
  align-items: center;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-middle-center {
  align-items: center;
  justify-content: center;
}

.shogun-image-overlay.shg-middle-right {
  align-items: center;
  justify-content: flex-end;
}

.shogun-image-overlay.shg-bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-bottom-center {
  align-items: flex-end;
  justify-content: center;
}

.shogun-image-overlay.shg-bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}

.shogun-image-overlay p {
  margin: 0;
  padding: 0;
  line-height: normal;
}

.shogun-image-cover {
  object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

.shogun-image-contain {
  font-family: "object-fit: contain;";
  object-fit: contain;
  width: 100%;
}

.shogun-image-link {
  display: block;
  min-height: inherit;
  max-height: inherit;
  height: inherit;
  position: relative;
}

img.shogun-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.shg-imageV2-content {
  text-align: initial;
}

.shogun-image-content {
  display: flex;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.shogun-image-content-linked,
.shogun-image-content-not-linked {
  pointer-events: none;
}

.shogun-image-content-not-linked>div {
  pointer-events: auto;
}

.shogun-image-content-linked a,
.shogun-image-content-linked button,
.shogun-image-content-linked iframe,
.shogun-image-content-linked .shg-box-linked {
  pointer-events: auto;
}

.shogun-image-content>div {
  width: 100%;
}

.shogun-image-content-top {
  align-items: flex-start;
}

.shogun-image-content-center {
  align-items: center;
}

.shogun-image-content-bottom {
  align-items: flex-end;
}

.shg-image-content-wrapper .shogun-image.hover~* {
  z-index: 1;
}
#s-bf062e62-186c-46a3-adda-a58f8c07532a {
  max-width: 1200px;
aspect-ratio: 1/1;
text-align: center;
}
#s-bf062e62-186c-46a3-adda-a58f8c07532a:hover {opacity: 0.9 !important;}






  img.s-bf062e62-186c-46a3-adda-a58f8c07532a.shogun-image {
    
    
  }


.s-bf062e62-186c-46a3-adda-a58f8c07532a .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-bf062e62-186c-46a3-adda-a58f8c07532a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf062e62-186c-46a3-adda-a58f8c07532a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf062e62-186c-46a3-adda-a58f8c07532a.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-bf062e62-186c-46a3-adda-a58f8c07532a.shogun-image {
    
    
  }


.s-bf062e62-186c-46a3-adda-a58f8c07532a .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-bf062e62-186c-46a3-adda-a58f8c07532a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf062e62-186c-46a3-adda-a58f8c07532a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf062e62-186c-46a3-adda-a58f8c07532a.shogun-image {
  box-sizing: border-box;
}



}@media (min-width: 992px) and (max-width: 1199px){





  img.s-bf062e62-186c-46a3-adda-a58f8c07532a.shogun-image {
    
    
  }


.s-bf062e62-186c-46a3-adda-a58f8c07532a .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-bf062e62-186c-46a3-adda-a58f8c07532a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf062e62-186c-46a3-adda-a58f8c07532a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf062e62-186c-46a3-adda-a58f8c07532a.shogun-image {
  box-sizing: border-box;
}



}@media (min-width: 768px) and (max-width: 991px){





  img.s-bf062e62-186c-46a3-adda-a58f8c07532a.shogun-image {
    
    
  }


.s-bf062e62-186c-46a3-adda-a58f8c07532a .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-bf062e62-186c-46a3-adda-a58f8c07532a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf062e62-186c-46a3-adda-a58f8c07532a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf062e62-186c-46a3-adda-a58f8c07532a.shogun-image {
  box-sizing: border-box;
}



}@media (max-width: 767px){





  img.s-bf062e62-186c-46a3-adda-a58f8c07532a.shogun-image {
    
    
  }


.s-bf062e62-186c-46a3-adda-a58f8c07532a .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-bf062e62-186c-46a3-adda-a58f8c07532a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf062e62-186c-46a3-adda-a58f8c07532a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf062e62-186c-46a3-adda-a58f8c07532a.shogun-image {
  box-sizing: border-box;
}



}
#s-4216d4c2-943b-44de-b0a9-917201c6b920 {
  margin-bottom: 50px;
min-height: 50px;
}








#s-4216d4c2-943b-44de-b0a9-917201c6b920 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4216d4c2-943b-44de-b0a9-917201c6b920.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-249dfd21-10db-4e04-a3f6-0f1c97a12f85 {
  margin-left: 0px;
margin-bottom: 20px;
margin-right: 0px;
}

#s-85c6ab28-c466-4f5d-b8d8-ecdb33cf0383 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(0, 0, 0, 0);
text-align: center;
text-decoration: none;
color: rgba(255, 255, 255, 1);
hover-type: color;
}
#s-85c6ab28-c466-4f5d-b8d8-ecdb33cf0383:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(18, 18, 18, 1) !important;}#s-85c6ab28-c466-4f5d-b8d8-ecdb33cf0383:active {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(18, 18, 18, 1) !important;}@media (min-width: 768px) and (max-width: 991px){#s-85c6ab28-c466-4f5d-b8d8-ecdb33cf0383 {
  padding-top: 6px;
padding-bottom: 6px;
}
}@media (max-width: 767px){#s-85c6ab28-c466-4f5d-b8d8-ecdb33cf0383 {
  padding-top: 6px;
padding-bottom: 6px;
}
}

  #s-85c6ab28-c466-4f5d-b8d8-ecdb33cf0383-root {
    text-align: center;
  }


#s-85c6ab28-c466-4f5d-b8d8-ecdb33cf0383.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-85c6ab28-c466-4f5d-b8d8-ecdb33cf0383-root {
    text-align: center;
  }


#s-85c6ab28-c466-4f5d-b8d8-ecdb33cf0383.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-85c6ab28-c466-4f5d-b8d8-ecdb33cf0383-root {
    text-align: center;
  }


#s-85c6ab28-c466-4f5d-b8d8-ecdb33cf0383.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-85c6ab28-c466-4f5d-b8d8-ecdb33cf0383-root {
    text-align: center;
  }


#s-85c6ab28-c466-4f5d-b8d8-ecdb33cf0383.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-85c6ab28-c466-4f5d-b8d8-ecdb33cf0383-root {
    text-align: center;
  }


#s-85c6ab28-c466-4f5d-b8d8-ecdb33cf0383.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}
#s-e374ebda-4c96-42a4-aaa0-187b8f47e054 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(232, 232, 232, 1);
border-style: solid;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-e374ebda-4c96-42a4-aaa0-187b8f47e054 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e374ebda-4c96-42a4-aaa0-187b8f47e054 {
  cursor: pointer;
}#s-e374ebda-4c96-42a4-aaa0-187b8f47e054.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-fac1b4b7-802b-4d11-8c1d-9b6c80c383d4 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(232, 232, 232, 1);
border-style: solid;
max-width: 1200px;
aspect-ratio: 1/1;
text-align: left;
}
#s-fac1b4b7-802b-4d11-8c1d-9b6c80c383d4:hover {opacity: 0.9 !important;}






  #s-fac1b4b7-802b-4d11-8c1d-9b6c80c383d4 img.shogun-image {
    

    
    
    
  }


#s-fac1b4b7-802b-4d11-8c1d-9b6c80c383d4 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-1c48a829-6ff2-48a7-beed-999aeab36ffa {
  margin-bottom: 50px;
min-height: 50px;
}








#s-1c48a829-6ff2-48a7-beed-999aeab36ffa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1c48a829-6ff2-48a7-beed-999aeab36ffa.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5030b8fe-9b76-46f4-b0ad-e8fb41c10a59 {
  margin-left: 0px;
margin-bottom: 20px;
margin-right: 0px;
}

#s-20efac48-7e12-4989-95ff-7a18856e6e68 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(0, 0, 0, 0);
text-align: center;
text-decoration: none;
color: rgba(255, 255, 255, 1);
hover-type: color;
}
#s-20efac48-7e12-4989-95ff-7a18856e6e68:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(18, 18, 18, 1) !important;}#s-20efac48-7e12-4989-95ff-7a18856e6e68:active {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(18, 18, 18, 1) !important;}@media (min-width: 768px) and (max-width: 991px){#s-20efac48-7e12-4989-95ff-7a18856e6e68 {
  padding-top: 6px;
padding-bottom: 6px;
}
}@media (max-width: 767px){#s-20efac48-7e12-4989-95ff-7a18856e6e68 {
  padding-top: 6px;
padding-bottom: 6px;
}
}

  #s-20efac48-7e12-4989-95ff-7a18856e6e68-root {
    text-align: center;
  }


#s-20efac48-7e12-4989-95ff-7a18856e6e68.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-20efac48-7e12-4989-95ff-7a18856e6e68-root {
    text-align: center;
  }


#s-20efac48-7e12-4989-95ff-7a18856e6e68.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-20efac48-7e12-4989-95ff-7a18856e6e68-root {
    text-align: center;
  }


#s-20efac48-7e12-4989-95ff-7a18856e6e68.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-20efac48-7e12-4989-95ff-7a18856e6e68-root {
    text-align: center;
  }


#s-20efac48-7e12-4989-95ff-7a18856e6e68.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-20efac48-7e12-4989-95ff-7a18856e6e68-root {
    text-align: center;
  }


#s-20efac48-7e12-4989-95ff-7a18856e6e68.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}
#s-fb1bd2ef-0999-4ff1-b170-edfd2aee2217 {
  background-size: cover;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
min-height: 50px;
background-position: center center;
background-repeat: no-repeat;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-fb1bd2ef-0999-4ff1-b170-edfd2aee2217 {
  display: none;
}
#s-fb1bd2ef-0999-4ff1-b170-edfd2aee2217, #wrap-s-fb1bd2ef-0999-4ff1-b170-edfd2aee2217 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-fb1bd2ef-0999-4ff1-b170-edfd2aee2217 {
  display: none;
}
#s-fb1bd2ef-0999-4ff1-b170-edfd2aee2217, #wrap-s-fb1bd2ef-0999-4ff1-b170-edfd2aee2217 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-fb1bd2ef-0999-4ff1-b170-edfd2aee2217 {
  padding-top: 0px;
padding-left: 24px;
padding-bottom: 12px;
padding-right: 24px;
}
}@media (max-width: 767px){#s-fb1bd2ef-0999-4ff1-b170-edfd2aee2217 {
  margin-top: 0px;
padding-top: 30px;
padding-left: 16px;
padding-bottom: 12px;
padding-right: 16px;
}
}







#s-fb1bd2ef-0999-4ff1-b170-edfd2aee2217 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fb1bd2ef-0999-4ff1-b170-edfd2aee2217.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-8d9e23f7-7f46-4215-80b3-24dfe34bf5d6 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-8d9e23f7-7f46-4215-80b3-24dfe34bf5d6 {
  
}
}@media (max-width: 767px){#s-8d9e23f7-7f46-4215-80b3-24dfe34bf5d6 {
  
}
}
@media (min-width: 0px) {
[id="s-8d9e23f7-7f46-4215-80b3-24dfe34bf5d6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8d9e23f7-7f46-4215-80b3-24dfe34bf5d6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 992px) {
[id="s-8d9e23f7-7f46-4215-80b3-24dfe34bf5d6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 1200px) {
[id="s-8d9e23f7-7f46-4215-80b3-24dfe34bf5d6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (max-width: 767px) {
  [id="s-8d9e23f7-7f46-4215-80b3-24dfe34bf5d6"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-4cdaacdb-7469-428b-85d4-facb585b259e {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-4cdaacdb-7469-428b-85d4-facb585b259e {
  margin-bottom: 0px;
}
}







#s-4cdaacdb-7469-428b-85d4-facb585b259e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4cdaacdb-7469-428b-85d4-facb585b259e {
  cursor: pointer;
}#s-4cdaacdb-7469-428b-85d4-facb585b259e.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-0e1e9d3b-3d5e-4132-837e-30970165009a {
  min-height: 50px;
max-width: 1200px;
aspect-ratio: 1/1;
text-align: left;
}
#s-0e1e9d3b-3d5e-4132-837e-30970165009a:hover {opacity: 1 !important;}






  #s-0e1e9d3b-3d5e-4132-837e-30970165009a img.shogun-image {
    

    
    
    
  }


#s-0e1e9d3b-3d5e-4132-837e-30970165009a .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-fae641cd-16a3-4ade-9d00-c33bc56c7fd2 {
  margin-bottom: 30px;
min-height: 50px;
}
@media (max-width: 767px){#s-fae641cd-16a3-4ade-9d00-c33bc56c7fd2 {
  margin-bottom: 40px;
}
}







#s-fae641cd-16a3-4ade-9d00-c33bc56c7fd2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fae641cd-16a3-4ade-9d00-c33bc56c7fd2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2149eae4-5c5a-439a-a842-47cadb61d262 {
  margin-left: 0px;
margin-bottom: 15px;
margin-right: 0px;
}

#s-5514ce9f-6f1c-4cf4-9370-36b4344cc959 {
  padding-top: 10px;
padding-left: 40px;
padding-bottom: 10px;
padding-right: 40px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(0, 0, 0, 0);
text-align: center;
text-decoration: none;
color: rgba(255, 255, 255, 1);
hover-type: color;
}
#s-5514ce9f-6f1c-4cf4-9370-36b4344cc959:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(18, 18, 18, 1) !important;}#s-5514ce9f-6f1c-4cf4-9370-36b4344cc959:active {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(18, 18, 18, 1) !important;}@media (min-width: 768px) and (max-width: 991px){#s-5514ce9f-6f1c-4cf4-9370-36b4344cc959 {
  padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
}
}@media (max-width: 767px){#s-5514ce9f-6f1c-4cf4-9370-36b4344cc959 {
  padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
}
}

  #s-5514ce9f-6f1c-4cf4-9370-36b4344cc959-root {
    text-align: center;
  }


#s-5514ce9f-6f1c-4cf4-9370-36b4344cc959.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-5514ce9f-6f1c-4cf4-9370-36b4344cc959-root {
    text-align: center;
  }


#s-5514ce9f-6f1c-4cf4-9370-36b4344cc959.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5514ce9f-6f1c-4cf4-9370-36b4344cc959-root {
    text-align: center;
  }


#s-5514ce9f-6f1c-4cf4-9370-36b4344cc959.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5514ce9f-6f1c-4cf4-9370-36b4344cc959-root {
    text-align: center;
  }


#s-5514ce9f-6f1c-4cf4-9370-36b4344cc959.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-5514ce9f-6f1c-4cf4-9370-36b4344cc959-root {
    text-align: center;
  }


#s-5514ce9f-6f1c-4cf4-9370-36b4344cc959.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}
#s-f7e3644b-fad3-4461-aaac-2e42a3528d5d {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(232, 232, 232, 1);
border-style: solid;
min-height: 50px;
background-color: rgba(18, 18, 18, 0);
}
@media (max-width: 767px){#s-f7e3644b-fad3-4461-aaac-2e42a3528d5d {
  margin-bottom: 12px;
}
}







#s-f7e3644b-fad3-4461-aaac-2e42a3528d5d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f7e3644b-fad3-4461-aaac-2e42a3528d5d {
  cursor: pointer;
}#s-f7e3644b-fad3-4461-aaac-2e42a3528d5d.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-6477d389-1906-4b81-b9ea-71c8ec8444c7 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(232, 232, 232, 1);
border-style: solid;
min-height: 50px;
max-width: 1200px;
aspect-ratio: 1/1;
text-align: left;
}
#s-6477d389-1906-4b81-b9ea-71c8ec8444c7:hover {opacity: 1 !important;}






  #s-6477d389-1906-4b81-b9ea-71c8ec8444c7 img.shogun-image {
    

    
    
    
  }


#s-6477d389-1906-4b81-b9ea-71c8ec8444c7 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-81f2056c-3ada-4794-a56d-939ccda89e99 {
  margin-bottom: 30px;
min-height: 50px;
}
@media (max-width: 767px){#s-81f2056c-3ada-4794-a56d-939ccda89e99 {
  margin-bottom: 40px;
}
}







#s-81f2056c-3ada-4794-a56d-939ccda89e99 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-81f2056c-3ada-4794-a56d-939ccda89e99.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ea0662aa-5a5c-4e02-a479-8660102f69de {
  margin-left: 0px;
margin-bottom: 15px;
margin-right: 0px;
}

#s-84538654-5f1b-4720-b982-cb191dfd1489 {
  padding-top: 10px;
padding-left: 40px;
padding-bottom: 10px;
padding-right: 40px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(0, 0, 0, 0);
text-align: center;
text-decoration: none;
color: rgba(255, 255, 255, 1);
hover-type: color;
}
#s-84538654-5f1b-4720-b982-cb191dfd1489:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(18, 18, 18, 1) !important;}#s-84538654-5f1b-4720-b982-cb191dfd1489:active {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(18, 18, 18, 1) !important;}@media (min-width: 768px) and (max-width: 991px){#s-84538654-5f1b-4720-b982-cb191dfd1489 {
  padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
}
}@media (max-width: 767px){#s-84538654-5f1b-4720-b982-cb191dfd1489 {
  padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
}
}

  #s-84538654-5f1b-4720-b982-cb191dfd1489-root {
    text-align: center;
  }


#s-84538654-5f1b-4720-b982-cb191dfd1489.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-84538654-5f1b-4720-b982-cb191dfd1489-root {
    text-align: center;
  }


#s-84538654-5f1b-4720-b982-cb191dfd1489.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-84538654-5f1b-4720-b982-cb191dfd1489-root {
    text-align: center;
  }


#s-84538654-5f1b-4720-b982-cb191dfd1489.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-84538654-5f1b-4720-b982-cb191dfd1489-root {
    text-align: center;
  }


#s-84538654-5f1b-4720-b982-cb191dfd1489.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-84538654-5f1b-4720-b982-cb191dfd1489-root {
    text-align: center;
  }


#s-84538654-5f1b-4720-b982-cb191dfd1489.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}
#s-4474f73e-bdcf-4df3-965a-7afdbd12ed57 {
  background-size: cover;
margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
padding-left: 0px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
min-height: 0px;
background-position: center center;
background-repeat: no-repeat;
background-color: rgba(255, 255, 255, 1);
background-attachment: scroll;
}
@media (min-width: 1200px){#s-4474f73e-bdcf-4df3-965a-7afdbd12ed57 {
  margin-left: auto;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 0px;
padding-bottom: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-4474f73e-bdcf-4df3-965a-7afdbd12ed57 {
  margin-left: auto;
margin-bottom: 0px;
margin-right: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-4474f73e-bdcf-4df3-965a-7afdbd12ed57 {
  margin-left: 0px;
margin-right: 0px;
display: none;
}
#s-4474f73e-bdcf-4df3-965a-7afdbd12ed57, #wrap-s-4474f73e-bdcf-4df3-965a-7afdbd12ed57 { display: none !important; }}@media (max-width: 767px){#s-4474f73e-bdcf-4df3-965a-7afdbd12ed57 {
  margin-left: 0px;
margin-right: 0px;
display: none;
}
#s-4474f73e-bdcf-4df3-965a-7afdbd12ed57, #wrap-s-4474f73e-bdcf-4df3-965a-7afdbd12ed57 { display: none !important; }}







#s-4474f73e-bdcf-4df3-965a-7afdbd12ed57 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4474f73e-bdcf-4df3-965a-7afdbd12ed57.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-8cbbc8e1-7e20-4a23-a9ea-a1892cc37797 {
  margin-left: auto;
margin-right: auto;
padding-left: 50px;
padding-right: 50px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
max-width: 1520px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 992px) and (max-width: 1199px){#s-8cbbc8e1-7e20-4a23-a9ea-a1892cc37797 {
  margin-left: auto;
margin-right: auto;
}
}@media (min-width: 768px) and (max-width: 991px){#s-8cbbc8e1-7e20-4a23-a9ea-a1892cc37797 {
  margin-left: 0px;
margin-right: 0px;
}
}@media (max-width: 767px){#s-8cbbc8e1-7e20-4a23-a9ea-a1892cc37797 {
  margin-left: 0px;
margin-right: 0px;
padding-left: 16px;
padding-right: 16px;
}
}
@media (min-width: 0px) {
[id="s-8cbbc8e1-7e20-4a23-a9ea-a1892cc37797"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-8cbbc8e1-7e20-4a23-a9ea-a1892cc37797"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8cbbc8e1-7e20-4a23-a9ea-a1892cc37797"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8cbbc8e1-7e20-4a23-a9ea-a1892cc37797"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

}

#s-bd60b8f3-f4d7-44ad-b062-e1a22da39b03 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-bd60b8f3-f4d7-44ad-b062-e1a22da39b03 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bd60b8f3-f4d7-44ad-b062-e1a22da39b03 {
  cursor: pointer;
}#s-bd60b8f3-f4d7-44ad-b062-e1a22da39b03.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-73b73b66-456f-4315-beb9-a316b1d0a955 {
  max-width: 600px;
aspect-ratio: 1/1;
text-align: left;
}
#s-73b73b66-456f-4315-beb9-a316b1d0a955:hover {opacity: 0.9 !important;}




  #s-73b73b66-456f-4315-beb9-a316b1d0a955 img.shogun-image,
  #s-73b73b66-456f-4315-beb9-a316b1d0a955 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-73b73b66-456f-4315-beb9-a316b1d0a955 {
    width: 100%;
    height: auto;
  }



  #s-73b73b66-456f-4315-beb9-a316b1d0a955 img.shogun-image {
    

    
    
    
  }


#s-73b73b66-456f-4315-beb9-a316b1d0a955 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-adf37730-c8e1-4c54-ad8c-df030ce3d376 {
  margin-left: 0px;
margin-bottom: 40px;
margin-right: 0px;
}

#s-05d93f54-da8c-452e-a102-6583287a0570 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-05d93f54-da8c-452e-a102-6583287a0570 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-05d93f54-da8c-452e-a102-6583287a0570 {
  cursor: pointer;
}#s-05d93f54-da8c-452e-a102-6583287a0570.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-701be2fd-2f40-4556-b40e-2ceadc70bd4c {
  max-width: 600px;
aspect-ratio: 1/1;
text-align: left;
}
#s-701be2fd-2f40-4556-b40e-2ceadc70bd4c:hover {opacity: 0.9 !important;}




  #s-701be2fd-2f40-4556-b40e-2ceadc70bd4c img.shogun-image,
  #s-701be2fd-2f40-4556-b40e-2ceadc70bd4c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-701be2fd-2f40-4556-b40e-2ceadc70bd4c {
    width: 100%;
    height: auto;
  }



  #s-701be2fd-2f40-4556-b40e-2ceadc70bd4c img.shogun-image {
    

    
    
    
  }


#s-701be2fd-2f40-4556-b40e-2ceadc70bd4c .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-26cbcb7a-f1b0-4a5c-8da1-51a0ce1ef83b {
  margin-left: 0px;
margin-bottom: 40px;
margin-right: 0px;
}

#s-846e1607-fd13-47a5-98fe-676d65c1bb00 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-846e1607-fd13-47a5-98fe-676d65c1bb00 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-846e1607-fd13-47a5-98fe-676d65c1bb00 {
  cursor: pointer;
}#s-846e1607-fd13-47a5-98fe-676d65c1bb00.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-6d470109-e1f9-4cf2-9f84-e538ab0c96c4 {
  max-width: 600px;
aspect-ratio: 1/1;
text-align: left;
}
#s-6d470109-e1f9-4cf2-9f84-e538ab0c96c4:hover {opacity: 0.9 !important;}




  #s-6d470109-e1f9-4cf2-9f84-e538ab0c96c4 img.shogun-image,
  #s-6d470109-e1f9-4cf2-9f84-e538ab0c96c4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6d470109-e1f9-4cf2-9f84-e538ab0c96c4 {
    width: 100%;
    height: auto;
  }



  #s-6d470109-e1f9-4cf2-9f84-e538ab0c96c4 img.shogun-image {
    

    
    
    
  }


#s-6d470109-e1f9-4cf2-9f84-e538ab0c96c4 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-812ae147-e5f5-4a42-9292-fc87d19299ed {
  margin-left: 0px;
margin-bottom: 40px;
margin-right: 0px;
}

#s-f7450be8-ab6f-4089-9b4e-b37ef5239570 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-f7450be8-ab6f-4089-9b4e-b37ef5239570 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f7450be8-ab6f-4089-9b4e-b37ef5239570 {
  cursor: pointer;
}#s-f7450be8-ab6f-4089-9b4e-b37ef5239570.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-54a53669-a07c-43a5-906c-f06970d7b1e5 {
  text-align: left;
opacity: 1;
}
#s-54a53669-a07c-43a5-906c-f06970d7b1e5:hover {opacity: 0.9 !important;}






  #s-54a53669-a07c-43a5-906c-f06970d7b1e5 img.shogun-image {
    

    
    
    
  }


#s-54a53669-a07c-43a5-906c-f06970d7b1e5 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-cb1c256a-71af-4878-b7a3-6a75b6a93a0d {
  margin-left: 0px;
margin-bottom: 40px;
margin-right: 0px;
}

#s-46169ef4-4422-472f-81af-cec81a186075 {
  background-size: cover;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-left: 0px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
min-height: 0px;
background-position: center center;
background-repeat: no-repeat;
background-color: rgba(255, 255, 255, 1);
background-attachment: scroll;
}
@media (min-width: 1200px){#s-46169ef4-4422-472f-81af-cec81a186075 {
  display: none;
}
#s-46169ef4-4422-472f-81af-cec81a186075, #wrap-s-46169ef4-4422-472f-81af-cec81a186075 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-46169ef4-4422-472f-81af-cec81a186075 {
  margin-left: auto;
margin-right: auto;
display: none;
}
#s-46169ef4-4422-472f-81af-cec81a186075, #wrap-s-46169ef4-4422-472f-81af-cec81a186075 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-46169ef4-4422-472f-81af-cec81a186075 {
  margin-top: 0px;
margin-left: 0px;
margin-right: 0px;
padding-top: 0px;
padding-bottom: 0px;
}
}@media (max-width: 767px){#s-46169ef4-4422-472f-81af-cec81a186075 {
  margin-left: 0px;
margin-right: 0px;
padding-top: 0px;
padding-bottom: 0px;
}
}







#s-46169ef4-4422-472f-81af-cec81a186075 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-46169ef4-4422-472f-81af-cec81a186075.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-2f55d919-3cfa-49b4-b83b-c4d51cdccaac {
  margin-left: auto;
margin-right: auto;
padding-left: 24px;
padding-right: 24px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
max-width: 1520px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 992px) and (max-width: 1199px){#s-2f55d919-3cfa-49b4-b83b-c4d51cdccaac {
  margin-left: auto;
margin-right: auto;
}
}@media (min-width: 768px) and (max-width: 991px){#s-2f55d919-3cfa-49b4-b83b-c4d51cdccaac {
  margin-left: 0px;
margin-right: 0px;
}
}@media (max-width: 767px){#s-2f55d919-3cfa-49b4-b83b-c4d51cdccaac {
  margin-left: 0px;
margin-right: 0px;
padding-top: 0px;
padding-left: 16px;
padding-bottom: 0px;
padding-right: 16px;
}
}
@media (min-width: 0px) {
[id="s-2f55d919-3cfa-49b4-b83b-c4d51cdccaac"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 6.0px);
}

}

@media (min-width: 768px) {
[id="s-2f55d919-3cfa-49b4-b83b-c4d51cdccaac"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 9.0px);
}

}

@media (min-width: 992px) {
[id="s-2f55d919-3cfa-49b4-b83b-c4d51cdccaac"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 9.0px);
}

}

@media (min-width: 1200px) {
[id="s-2f55d919-3cfa-49b4-b83b-c4d51cdccaac"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 9.0px);
}

}

#s-688a62df-dd2b-4d0f-9ded-ff9fd52b8952 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-688a62df-dd2b-4d0f-9ded-ff9fd52b8952 {
  margin-bottom: 12px;
}
}







#s-688a62df-dd2b-4d0f-9ded-ff9fd52b8952 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-688a62df-dd2b-4d0f-9ded-ff9fd52b8952 {
  cursor: pointer;
}#s-688a62df-dd2b-4d0f-9ded-ff9fd52b8952.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-5e556ab6-86ee-4953-a314-30b5ed7c416f {
  text-align: left;
}
#s-5e556ab6-86ee-4953-a314-30b5ed7c416f:hover {opacity: 1 !important;}






  #s-5e556ab6-86ee-4953-a314-30b5ed7c416f img.shogun-image {
    

    
    
    
  }


#s-5e556ab6-86ee-4953-a314-30b5ed7c416f .shogun-image-content {
  
    align-items: center;
  
}

#s-098207aa-6f36-48f2-b3d2-b8dad0d4622b {
  margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}

#s-93e576c7-ca22-4a51-b888-5d0d2029e682 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-93e576c7-ca22-4a51-b888-5d0d2029e682 {
  margin-bottom: 12px;
}
}







#s-93e576c7-ca22-4a51-b888-5d0d2029e682 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-93e576c7-ca22-4a51-b888-5d0d2029e682 {
  cursor: pointer;
}#s-93e576c7-ca22-4a51-b888-5d0d2029e682.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-dff39ec8-29c4-49cb-a69e-c418e9f66157 {
  text-align: left;
}
#s-dff39ec8-29c4-49cb-a69e-c418e9f66157:hover {opacity: 1 !important;}






  #s-dff39ec8-29c4-49cb-a69e-c418e9f66157 img.shogun-image {
    

    
    
    
  }


#s-dff39ec8-29c4-49cb-a69e-c418e9f66157 .shogun-image-content {
  
    align-items: center;
  
}

#s-d7c57de9-cb01-4705-a37f-87a2979023d8 {
  margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-d7c57de9-cb01-4705-a37f-87a2979023d8 {
  margin-top: auto;
}
}
#s-8714f8d7-5fe9-4930-a004-05a55e38356c {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-8714f8d7-5fe9-4930-a004-05a55e38356c {
  margin-bottom: 0px;
}
}







#s-8714f8d7-5fe9-4930-a004-05a55e38356c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8714f8d7-5fe9-4930-a004-05a55e38356c {
  cursor: pointer;
}#s-8714f8d7-5fe9-4930-a004-05a55e38356c.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-9b3d53e9-ca07-46f2-9ed9-04648d172ef7 {
  text-align: left;
}
#s-9b3d53e9-ca07-46f2-9ed9-04648d172ef7:hover {opacity: 1 !important;}






  #s-9b3d53e9-ca07-46f2-9ed9-04648d172ef7 img.shogun-image {
    

    
    
    
  }


#s-9b3d53e9-ca07-46f2-9ed9-04648d172ef7 .shogun-image-content {
  
    align-items: center;
  
}

#s-de5273fa-3fc4-482c-9eee-0eab7ecc8234 {
  margin-left: 0px;
margin-right: 0px;
}

#s-ce8f456d-4e42-4389-8ce5-9430d8cf2a97 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-ce8f456d-4e42-4389-8ce5-9430d8cf2a97 {
  margin-bottom: 0px;
}
}







#s-ce8f456d-4e42-4389-8ce5-9430d8cf2a97 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ce8f456d-4e42-4389-8ce5-9430d8cf2a97 {
  cursor: pointer;
}#s-ce8f456d-4e42-4389-8ce5-9430d8cf2a97.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-79154b09-aa4b-4c1f-88d5-b9bbec8f72f0 {
  text-align: left;
}
#s-79154b09-aa4b-4c1f-88d5-b9bbec8f72f0:hover {opacity: 1 !important;}






  #s-79154b09-aa4b-4c1f-88d5-b9bbec8f72f0 img.shogun-image {
    

    
    
    
  }


#s-79154b09-aa4b-4c1f-88d5-b9bbec8f72f0 .shogun-image-content {
  
    align-items: center;
  
}

#s-f64acae4-633e-448a-9e87-b3526a49152b {
  margin-left: 0px;
margin-right: 0px;
}

#s-8dbd830a-66ae-4eaf-bdbb-05d5767c3a08 {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-ecb26112-78d1-4079-9554-4cef067031df {
  margin-left: auto;
margin-right: auto;
padding-left: 50px;
padding-right: 50px;
min-height: 50px;
}
@media (min-width: 1200px){#s-ecb26112-78d1-4079-9554-4cef067031df {
  margin-top: 10px;
margin-bottom: 0px;
padding-left: 0px;
padding-right: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ecb26112-78d1-4079-9554-4cef067031df {
  margin-top: 0px;
padding-left: 0px;
padding-right: 0px;
background-color: rgba(18, 18, 18, 1);
}
}@media (min-width: 768px) and (max-width: 991px){#s-ecb26112-78d1-4079-9554-4cef067031df {
  padding-left: 24px;
padding-right: 24px;
}
}@media (max-width: 767px){#s-ecb26112-78d1-4079-9554-4cef067031df {
  padding-left: 16px;
padding-right: 16px;
}
}







#s-ecb26112-78d1-4079-9554-4cef067031df > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ecb26112-78d1-4079-9554-4cef067031df.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b54fa78e-c7b3-406c-9d1e-54b4f7103a95 {
  margin-top: 10px;
padding-top: 100px;
padding-bottom: 100px;
min-height: 0px;
}
@media (min-width: 1200px){#s-b54fa78e-c7b3-406c-9d1e-54b4f7103a95 {
  margin-top: 0px;
padding-top: 200px;
padding-bottom: 200px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b54fa78e-c7b3-406c-9d1e-54b4f7103a95 {
  margin-top: 0px;
padding-top: 150px;
padding-bottom: 150px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-b54fa78e-c7b3-406c-9d1e-54b4f7103a95 {
  margin-top: 0px;
padding-left: 0px;
padding-right: 0px;
display: unset;
}
#s-b54fa78e-c7b3-406c-9d1e-54b4f7103a95, #wrap-s-b54fa78e-c7b3-406c-9d1e-54b4f7103a95 { display: unset !important; }}@media (max-width: 767px){#s-b54fa78e-c7b3-406c-9d1e-54b4f7103a95 {
  margin-top: 30px;
padding-top: 150px;
padding-bottom: 150px;
display: unset;
}
#s-b54fa78e-c7b3-406c-9d1e-54b4f7103a95, #wrap-s-b54fa78e-c7b3-406c-9d1e-54b4f7103a95 { display: unset !important; }}







#s-b54fa78e-c7b3-406c-9d1e-54b4f7103a95 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b54fa78e-c7b3-406c-9d1e-54b4f7103a95 {
  cursor: pointer;
}#s-b54fa78e-c7b3-406c-9d1e-54b4f7103a95.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1968cd09-9c10-45d8-a33a-7dea10bd9596 {
  max-width: 1000px;
aspect-ratio: 3000/300;
text-align: center;
}





  #s-1968cd09-9c10-45d8-a33a-7dea10bd9596 img.shogun-image,
  #s-1968cd09-9c10-45d8-a33a-7dea10bd9596 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1968cd09-9c10-45d8-a33a-7dea10bd9596 {
    width: 100%;
    height: auto;
  }

  #s-1968cd09-9c10-45d8-a33a-7dea10bd9596 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shogun-image {
    
    
  }


.s-1968cd09-9c10-45d8-a33a-7dea10bd9596 .shogun-image-content {
  
    align-items: center;
  
}

.s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1968cd09-9c10-45d8-a33a-7dea10bd9596 {
      --shg-aspect-ratio: calc(3000/300); 
    }

    .s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shogun-image-container {
      position: relative;
    }

    .s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1968cd09-9c10-45d8-a33a-7dea10bd9596 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-1968cd09-9c10-45d8-a33a-7dea10bd9596 img.shogun-image,
  #s-1968cd09-9c10-45d8-a33a-7dea10bd9596 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1968cd09-9c10-45d8-a33a-7dea10bd9596 {
    width: 100%;
    height: auto;
  }

  #s-1968cd09-9c10-45d8-a33a-7dea10bd9596 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shogun-image {
    
    
  }


.s-1968cd09-9c10-45d8-a33a-7dea10bd9596 .shogun-image-content {
  
    align-items: center;
  
}

.s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1968cd09-9c10-45d8-a33a-7dea10bd9596 {
      --shg-aspect-ratio: calc(3000/300); 
    }

    .s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shogun-image-container {
      position: relative;
    }

    .s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1968cd09-9c10-45d8-a33a-7dea10bd9596 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-1968cd09-9c10-45d8-a33a-7dea10bd9596 img.shogun-image,
  #s-1968cd09-9c10-45d8-a33a-7dea10bd9596 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1968cd09-9c10-45d8-a33a-7dea10bd9596 {
    width: 100%;
    height: auto;
  }

  #s-1968cd09-9c10-45d8-a33a-7dea10bd9596 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shogun-image {
    
    
  }


.s-1968cd09-9c10-45d8-a33a-7dea10bd9596 .shogun-image-content {
  
    align-items: center;
  
}

.s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1968cd09-9c10-45d8-a33a-7dea10bd9596 {
      --shg-aspect-ratio: calc(3000/300); 
    }

    .s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shogun-image-container {
      position: relative;
    }

    .s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1968cd09-9c10-45d8-a33a-7dea10bd9596 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-1968cd09-9c10-45d8-a33a-7dea10bd9596 img.shogun-image,
  #s-1968cd09-9c10-45d8-a33a-7dea10bd9596 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1968cd09-9c10-45d8-a33a-7dea10bd9596 {
    width: 100%;
    height: auto;
  }

  #s-1968cd09-9c10-45d8-a33a-7dea10bd9596 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shogun-image {
    
    
  }


.s-1968cd09-9c10-45d8-a33a-7dea10bd9596 .shogun-image-content {
  
    align-items: center;
  
}

.s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1968cd09-9c10-45d8-a33a-7dea10bd9596 {
      --shg-aspect-ratio: calc(3000/300); 
    }

    .s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shogun-image-container {
      position: relative;
    }

    .s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1968cd09-9c10-45d8-a33a-7dea10bd9596 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-1968cd09-9c10-45d8-a33a-7dea10bd9596 img.shogun-image,
  #s-1968cd09-9c10-45d8-a33a-7dea10bd9596 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1968cd09-9c10-45d8-a33a-7dea10bd9596 {
    width: 100%;
    height: auto;
  }

  #s-1968cd09-9c10-45d8-a33a-7dea10bd9596 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shogun-image {
    
    
  }


.s-1968cd09-9c10-45d8-a33a-7dea10bd9596 .shogun-image-content {
  
    align-items: center;
  
}

.s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1968cd09-9c10-45d8-a33a-7dea10bd9596 {
      --shg-aspect-ratio: calc(3000/300); 
    }

    .s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shogun-image-container {
      position: relative;
    }

    .s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1968cd09-9c10-45d8-a33a-7dea10bd9596.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1968cd09-9c10-45d8-a33a-7dea10bd9596 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-aab9d1d7-ab7c-47bf-96da-78b6479b872a {
  margin-top: 30px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 40px;
padding-bottom: 10px;
padding-right: 40px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(0, 0, 0, 0);
text-align: center;
text-decoration: none;
color: rgba(255, 255, 255, 1);
hover-type: color;
}
#s-aab9d1d7-ab7c-47bf-96da-78b6479b872a:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(18, 18, 18, 1) !important;}#s-aab9d1d7-ab7c-47bf-96da-78b6479b872a:active {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(18, 18, 18, 1) !important;}@media (min-width: 768px) and (max-width: 991px){#s-aab9d1d7-ab7c-47bf-96da-78b6479b872a {
  padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
}
}@media (max-width: 767px){#s-aab9d1d7-ab7c-47bf-96da-78b6479b872a {
  margin-top: 20px;
padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
}
}

  #s-aab9d1d7-ab7c-47bf-96da-78b6479b872a-root {
    text-align: center;
  }


#s-aab9d1d7-ab7c-47bf-96da-78b6479b872a.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-aab9d1d7-ab7c-47bf-96da-78b6479b872a-root {
    text-align: center;
  }


#s-aab9d1d7-ab7c-47bf-96da-78b6479b872a.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-aab9d1d7-ab7c-47bf-96da-78b6479b872a-root {
    text-align: center;
  }


#s-aab9d1d7-ab7c-47bf-96da-78b6479b872a.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-aab9d1d7-ab7c-47bf-96da-78b6479b872a-root {
    text-align: center;
  }


#s-aab9d1d7-ab7c-47bf-96da-78b6479b872a.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-aab9d1d7-ab7c-47bf-96da-78b6479b872a-root {
    text-align: center;
  }


#s-aab9d1d7-ab7c-47bf-96da-78b6479b872a.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}
#s-ede0e3fd-3074-4c0d-8d6f-c65d62ff2965 {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-6b2a5226-3056-465b-a5ff-6915781e03a4 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-left: 50px;
padding-right: 50px;
min-height: 50px;
max-width: 1520px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-6b2a5226-3056-465b-a5ff-6915781e03a4 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-6b2a5226-3056-465b-a5ff-6915781e03a4 {
  padding-left: 24px;
padding-right: 24px;
display: none;
}
#s-6b2a5226-3056-465b-a5ff-6915781e03a4, #wrap-s-6b2a5226-3056-465b-a5ff-6915781e03a4 { display: none !important; }}@media (max-width: 767px){#s-6b2a5226-3056-465b-a5ff-6915781e03a4 {
  display: none;
}
#s-6b2a5226-3056-465b-a5ff-6915781e03a4, #wrap-s-6b2a5226-3056-465b-a5ff-6915781e03a4 { display: none !important; }}







#s-6b2a5226-3056-465b-a5ff-6915781e03a4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6b2a5226-3056-465b-a5ff-6915781e03a4 {
  cursor: pointer;
}#s-6b2a5226-3056-465b-a5ff-6915781e03a4.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-cafce1d3-360d-400a-9d53-7d76a2508840 {
  max-width: 2000px;
aspect-ratio: 2000/800;
text-align: center;
}
#s-cafce1d3-360d-400a-9d53-7d76a2508840:hover {opacity: 0.9 !important;}




  #s-cafce1d3-360d-400a-9d53-7d76a2508840 img.shogun-image,
  #s-cafce1d3-360d-400a-9d53-7d76a2508840 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cafce1d3-360d-400a-9d53-7d76a2508840 {
    width: 100%;
    height: auto;
  }



  #s-cafce1d3-360d-400a-9d53-7d76a2508840 img.shogun-image {
    

    
    
    
  }


#s-cafce1d3-360d-400a-9d53-7d76a2508840 .shogun-image-content {
  
    align-items: center;
  
}

#s-afca6576-a312-4257-8c19-93929d50ee94 {
  padding-left: 50px;
}

@media (min-width: 0px) {
[id="s-afca6576-a312-4257-8c19-93929d50ee94"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-afca6576-a312-4257-8c19-93929d50ee94"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-afca6576-a312-4257-8c19-93929d50ee94"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-afca6576-a312-4257-8c19-93929d50ee94"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-afca6576-a312-4257-8c19-93929d50ee94"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-afca6576-a312-4257-8c19-93929d50ee94"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-afca6576-a312-4257-8c19-93929d50ee94"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

#s-19aa6598-c0ef-4b92-a9d9-5f71d57a68e3 {
  padding-left: 50px;
padding-right: 50px;
min-height: 50px;
}








#s-19aa6598-c0ef-4b92-a9d9-5f71d57a68e3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-19aa6598-c0ef-4b92-a9d9-5f71d57a68e3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8c8a27d7-9f41-425e-b669-916a40203d8f {
  margin-left: auto;
margin-right: auto;
padding-top: 1px;
padding-bottom: 1px;
max-width: 250px;
aspect-ratio: 400/139;
text-align: right;
}





  #s-8c8a27d7-9f41-425e-b669-916a40203d8f img.shogun-image,
  #s-8c8a27d7-9f41-425e-b669-916a40203d8f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8c8a27d7-9f41-425e-b669-916a40203d8f {
    width: 100%;
    height: auto;
  }



  #s-8c8a27d7-9f41-425e-b669-916a40203d8f img.shogun-image {
    

    
    
    
  }


#s-8c8a27d7-9f41-425e-b669-916a40203d8f .shogun-image-content {
  
    align-items: center;
  
}

#s-66fd8ec6-78b2-436d-8630-efe43ae25fbe {
  margin-top: 40px;
padding-top: 10px;
padding-left: 40px;
padding-bottom: 10px;
padding-right: 40px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(18, 18, 18, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(17, 34, 17, 0);
text-align: center;
text-decoration: none;
color: rgba(18, 18, 18, 1);
background-image: none;
hover-type: color;
}
#s-66fd8ec6-78b2-436d-8630-efe43ae25fbe:hover {border-style: solid !important;
border-color: rgba(18, 18, 18, 1) !important;
background-color: rgba(18, 18, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-66fd8ec6-78b2-436d-8630-efe43ae25fbe:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(18, 18, 18, 1) !important;
background-color: rgba(18, 18, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-66fd8ec6-78b2-436d-8630-efe43ae25fbe-root {
    text-align: center;
  }


#s-66fd8ec6-78b2-436d-8630-efe43ae25fbe.shg-btn {
  color: rgba(18, 18, 18, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-66fd8ec6-78b2-436d-8630-efe43ae25fbe-root {
    text-align: center;
  }


#s-66fd8ec6-78b2-436d-8630-efe43ae25fbe.shg-btn {
  color: rgba(18, 18, 18, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-66fd8ec6-78b2-436d-8630-efe43ae25fbe-root {
    text-align: center;
  }


#s-66fd8ec6-78b2-436d-8630-efe43ae25fbe.shg-btn {
  color: rgba(18, 18, 18, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-66fd8ec6-78b2-436d-8630-efe43ae25fbe-root {
    text-align: center;
  }


#s-66fd8ec6-78b2-436d-8630-efe43ae25fbe.shg-btn {
  color: rgba(18, 18, 18, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-66fd8ec6-78b2-436d-8630-efe43ae25fbe-root {
    text-align: center;
  }


#s-66fd8ec6-78b2-436d-8630-efe43ae25fbe.shg-btn {
  color: rgba(18, 18, 18, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}
#s-1e477827-391d-4ca2-bf0c-a86dd9bde666 {
  margin-left: auto;
margin-right: auto;
padding-left: 50px;
padding-right: 50px;
min-height: 50px;
max-width: 1520px;
}
@media (min-width: 1200px){#s-1e477827-391d-4ca2-bf0c-a86dd9bde666 {
  display: none;
}
#s-1e477827-391d-4ca2-bf0c-a86dd9bde666, #wrap-s-1e477827-391d-4ca2-bf0c-a86dd9bde666 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1e477827-391d-4ca2-bf0c-a86dd9bde666 {
  display: none;
}
#s-1e477827-391d-4ca2-bf0c-a86dd9bde666, #wrap-s-1e477827-391d-4ca2-bf0c-a86dd9bde666 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1e477827-391d-4ca2-bf0c-a86dd9bde666 {
  margin-top: 0px;
margin-bottom: 0px;
padding-left: 24px;
padding-right: 24px;
}
}@media (max-width: 767px){#s-1e477827-391d-4ca2-bf0c-a86dd9bde666 {
  display: none;
}
#s-1e477827-391d-4ca2-bf0c-a86dd9bde666, #wrap-s-1e477827-391d-4ca2-bf0c-a86dd9bde666 { display: none !important; }}







#s-1e477827-391d-4ca2-bf0c-a86dd9bde666 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1e477827-391d-4ca2-bf0c-a86dd9bde666 {
  cursor: pointer;
}#s-1e477827-391d-4ca2-bf0c-a86dd9bde666.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-097f0a77-6ac5-486c-b24b-baa3e123c11d {
  text-align: center;
}







  #s-097f0a77-6ac5-486c-b24b-baa3e123c11d img.shogun-image {
    

    
    
    
  }


#s-097f0a77-6ac5-486c-b24b-baa3e123c11d .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-1ab78c7d-1f8e-4752-b982-5bbf81ecf91c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1ab78c7d-1f8e-4752-b982-5bbf81ecf91c"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-1ab78c7d-1f8e-4752-b982-5bbf81ecf91c"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1ab78c7d-1f8e-4752-b982-5bbf81ecf91c"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-1ab78c7d-1f8e-4752-b982-5bbf81ecf91c"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1ab78c7d-1f8e-4752-b982-5bbf81ecf91c"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-1ab78c7d-1f8e-4752-b982-5bbf81ecf91c"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

#s-ad43022d-2381-4ea6-b0bf-36372474471f {
  min-height: 50px;
}








#s-ad43022d-2381-4ea6-b0bf-36372474471f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ad43022d-2381-4ea6-b0bf-36372474471f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7f0c3f63-91f2-4a80-ab83-0dcca21f6c99 {
  margin-left: auto;
margin-right: auto;
padding-left: 0px;
padding-right: 0px;
max-width: 150px;
aspect-ratio: 400/139;
text-align: center;
}





  #s-7f0c3f63-91f2-4a80-ab83-0dcca21f6c99 img.shogun-image,
  #s-7f0c3f63-91f2-4a80-ab83-0dcca21f6c99 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7f0c3f63-91f2-4a80-ab83-0dcca21f6c99 {
    width: 100%;
    height: auto;
  }



  #s-7f0c3f63-91f2-4a80-ab83-0dcca21f6c99 img.shogun-image {
    

    
    
    
  }


#s-7f0c3f63-91f2-4a80-ab83-0dcca21f6c99 .shogun-image-content {
  
    align-items: center;
  
}

#s-fad20484-b040-480b-98a0-e110fc14e6b0 {
  margin-top: 30px;
padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(18, 18, 18, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(18, 18, 18, 0);
text-align: center;
text-decoration: none;
color: rgba(18, 18, 18, 1);
hover-type: color;
}
#s-fad20484-b040-480b-98a0-e110fc14e6b0:hover {background-color: rgba(18, 18, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-fad20484-b040-480b-98a0-e110fc14e6b0:active {background-color: rgba(18, 18, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-fad20484-b040-480b-98a0-e110fc14e6b0-root {
    text-align: center;
  }


#s-fad20484-b040-480b-98a0-e110fc14e6b0.shg-btn {
  color: rgba(18, 18, 18, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-fad20484-b040-480b-98a0-e110fc14e6b0-root {
    text-align: center;
  }


#s-fad20484-b040-480b-98a0-e110fc14e6b0.shg-btn {
  color: rgba(18, 18, 18, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-fad20484-b040-480b-98a0-e110fc14e6b0-root {
    text-align: center;
  }


#s-fad20484-b040-480b-98a0-e110fc14e6b0.shg-btn {
  color: rgba(18, 18, 18, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-fad20484-b040-480b-98a0-e110fc14e6b0-root {
    text-align: center;
  }


#s-fad20484-b040-480b-98a0-e110fc14e6b0.shg-btn {
  color: rgba(18, 18, 18, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-fad20484-b040-480b-98a0-e110fc14e6b0-root {
    text-align: center;
  }


#s-fad20484-b040-480b-98a0-e110fc14e6b0.shg-btn {
  color: rgba(18, 18, 18, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}
#s-a713b2d2-aa70-4d9e-9f1c-f09fc0d5b97b {
  margin-top: 30px;
padding-left: 16px;
padding-right: 16px;
min-height: 50px;
}
@media (min-width: 1200px){#s-a713b2d2-aa70-4d9e-9f1c-f09fc0d5b97b {
  display: none;
}
#s-a713b2d2-aa70-4d9e-9f1c-f09fc0d5b97b, #wrap-s-a713b2d2-aa70-4d9e-9f1c-f09fc0d5b97b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a713b2d2-aa70-4d9e-9f1c-f09fc0d5b97b {
  display: none;
}
#s-a713b2d2-aa70-4d9e-9f1c-f09fc0d5b97b, #wrap-s-a713b2d2-aa70-4d9e-9f1c-f09fc0d5b97b { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a713b2d2-aa70-4d9e-9f1c-f09fc0d5b97b {
  display: none;
}
#s-a713b2d2-aa70-4d9e-9f1c-f09fc0d5b97b, #wrap-s-a713b2d2-aa70-4d9e-9f1c-f09fc0d5b97b { display: none !important; }}







#s-a713b2d2-aa70-4d9e-9f1c-f09fc0d5b97b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a713b2d2-aa70-4d9e-9f1c-f09fc0d5b97b {
  cursor: pointer;
}#s-a713b2d2-aa70-4d9e-9f1c-f09fc0d5b97b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a691d784-f1e5-4e94-9d9e-aed29dfd5d38 {
  min-height: 50px;
background-color: rgba(39, 42, 51, 1);
}








#s-a691d784-f1e5-4e94-9d9e-aed29dfd5d38 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a691d784-f1e5-4e94-9d9e-aed29dfd5d38.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-00b38122-b114-497d-b943-babc703ce611 {
  aspect-ratio: 1/1;
text-align: center;
}





  #s-00b38122-b114-497d-b943-babc703ce611 img.shogun-image,
  #s-00b38122-b114-497d-b943-babc703ce611 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-00b38122-b114-497d-b943-babc703ce611 {
    width: 100%;
    height: auto;
  }



  #s-00b38122-b114-497d-b943-babc703ce611 img.shogun-image {
    

    
    
    
  }


#s-00b38122-b114-497d-b943-babc703ce611 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-016dd05e-6cf6-4c1a-84a7-3a9c62456c62 {
  margin-bottom: 30px;
min-height: 50px;
}
@media (max-width: 767px){#s-016dd05e-6cf6-4c1a-84a7-3a9c62456c62 {
  margin-bottom: 40px;
}
}







#s-016dd05e-6cf6-4c1a-84a7-3a9c62456c62 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-016dd05e-6cf6-4c1a-84a7-3a9c62456c62.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-50b3a4c3-ecfe-433d-8c68-1d5007255fc4 {
  margin-left: 0px;
margin-bottom: 15px;
margin-right: 0px;
}

#s-0b731218-d901-4846-888a-77586c7df753 {
  padding-top: 10px;
padding-left: 40px;
padding-bottom: 10px;
padding-right: 40px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(0, 0, 0, 0);
text-align: center;
text-decoration: none;
color: rgba(255, 255, 255, 1);
hover-type: color;
}
#s-0b731218-d901-4846-888a-77586c7df753:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(18, 18, 18, 1) !important;}#s-0b731218-d901-4846-888a-77586c7df753:active {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(18, 18, 18, 1) !important;}@media (min-width: 768px) and (max-width: 991px){#s-0b731218-d901-4846-888a-77586c7df753 {
  padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
}
}@media (max-width: 767px){#s-0b731218-d901-4846-888a-77586c7df753 {
  padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
}
}

  #s-0b731218-d901-4846-888a-77586c7df753-root {
    text-align: center;
  }


#s-0b731218-d901-4846-888a-77586c7df753.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-0b731218-d901-4846-888a-77586c7df753-root {
    text-align: center;
  }


#s-0b731218-d901-4846-888a-77586c7df753.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-0b731218-d901-4846-888a-77586c7df753-root {
    text-align: center;
  }


#s-0b731218-d901-4846-888a-77586c7df753.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-0b731218-d901-4846-888a-77586c7df753-root {
    text-align: center;
  }


#s-0b731218-d901-4846-888a-77586c7df753.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-0b731218-d901-4846-888a-77586c7df753-root {
    text-align: center;
  }


#s-0b731218-d901-4846-888a-77586c7df753.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}
#s-7334c8b0-f1c2-43b4-a083-d574829cb4cd {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-bottom: 60px;
background-color: rgba(247, 247, 247, 0);
}
@media (min-width: 1200px){#s-7334c8b0-f1c2-43b4-a083-d574829cb4cd {
  margin-top: 50px;
margin-bottom: 70px;
padding-bottom: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-7334c8b0-f1c2-43b4-a083-d574829cb4cd {
  margin-top: 50px;
margin-bottom: 70px;
padding-bottom: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-7334c8b0-f1c2-43b4-a083-d574829cb4cd {
  margin-top: 45px;
margin-left: 0px;
margin-bottom: 60px;
margin-right: 0px;
padding-bottom: 0px;
}
}@media (max-width: 767px){#s-7334c8b0-f1c2-43b4-a083-d574829cb4cd {
  margin-top: 30px;
margin-left: 0px;
margin-bottom: 40px;
margin-right: 0px;
padding-bottom: 0px;
}
}







#s-7334c8b0-f1c2-43b4-a083-d574829cb4cd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7334c8b0-f1c2-43b4-a083-d574829cb4cd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b535a6bc-6256-43a0-97ac-7c69e9179f14 {
  margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
padding-top: 0px;
padding-left: 50px;
padding-bottom: 0px;
padding-right: 50px;
max-width: 1520px;
}
@media (min-width: 1200px){#s-b535a6bc-6256-43a0-97ac-7c69e9179f14 {
  margin-bottom: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-b535a6bc-6256-43a0-97ac-7c69e9179f14 {
  margin-left: 0px;
margin-bottom: 45px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}
}@media (max-width: 767px){#s-b535a6bc-6256-43a0-97ac-7c69e9179f14 {
  margin-left: 0px;
margin-bottom: 30px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}
}
#s-d4a36d59-4133-400a-be7c-758e91d110dd {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-left: 40px;
padding-right: 40px;
max-width: 1520px;
background-color: rgba(255, 255, 255, 0);
}
@media (min-width: 992px) and (max-width: 1199px){#s-d4a36d59-4133-400a-be7c-758e91d110dd {
  margin-top: 0px;
margin-bottom: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-d4a36d59-4133-400a-be7c-758e91d110dd {
  padding-left: 18px;
padding-right: 18px;
}
}@media (max-width: 767px){#s-d4a36d59-4133-400a-be7c-758e91d110dd {
  padding-left: 16px;
padding-right: 16px;
}
}
@media (min-width: 0px) {
[id="s-d4a36d59-4133-400a-be7c-758e91d110dd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d4a36d59-4133-400a-be7c-758e91d110dd"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-d4a36d59-4133-400a-be7c-758e91d110dd"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-d4a36d59-4133-400a-be7c-758e91d110dd"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-f463dec2-aae1-488c-bf3b-ca9b22b1fd13 {
  margin-top: 0px;
margin-left: 10px;
margin-bottom: 0px;
margin-right: 10px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-f463dec2-aae1-488c-bf3b-ca9b22b1fd13 {
  margin-left: 6px;
margin-right: 6px;
}
}@media (max-width: 767px){#s-f463dec2-aae1-488c-bf3b-ca9b22b1fd13 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 30px;
margin-right: 0px;
}
}







#s-f463dec2-aae1-488c-bf3b-ca9b22b1fd13 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f463dec2-aae1-488c-bf3b-ca9b22b1fd13.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c13e61cd-e1c8-410a-b85e-5c1d07eb76f7 {
  text-align: center;
opacity: 1;
}
#s-c13e61cd-e1c8-410a-b85e-5c1d07eb76f7:hover {opacity: 0.9 !important;}






  #s-c13e61cd-e1c8-410a-b85e-5c1d07eb76f7 img.shogun-image {
    

    
    
    
  }


#s-c13e61cd-e1c8-410a-b85e-5c1d07eb76f7 .shogun-image-content {
  
    align-items: center;
  
}

#s-c2cab14e-9e7d-4f31-ab12-d36ddbbc0ba3 {
  margin-top: 20px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
min-height: 50px;
background-color: rgba(255, 255, 255, 0);
}
@media (min-width: 768px) and (max-width: 991px){#s-c2cab14e-9e7d-4f31-ab12-d36ddbbc0ba3 {
  margin-top: 16px;
}
}







#s-c2cab14e-9e7d-4f31-ab12-d36ddbbc0ba3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c2cab14e-9e7d-4f31-ab12-d36ddbbc0ba3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4a125248-fe7e-4d81-98bd-61a49818a678 {
  padding-bottom: 10px;
}

#s-e0fc365d-4af6-413b-8d24-979aebca6e5e {
  padding-bottom: 20px;
}

#s-aa2edb36-f21e-41bd-80ad-7e3fcd243436 {
  margin-top: 0px;
margin-left: 10px;
margin-bottom: 0px;
margin-right: 10px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-aa2edb36-f21e-41bd-80ad-7e3fcd243436 {
  margin-left: 6px;
margin-right: 6px;
}
}@media (max-width: 767px){#s-aa2edb36-f21e-41bd-80ad-7e3fcd243436 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 30px;
margin-right: 0px;
}
}







#s-aa2edb36-f21e-41bd-80ad-7e3fcd243436 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-aa2edb36-f21e-41bd-80ad-7e3fcd243436.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-68edf2a1-4281-491b-9311-4cf831dc6996 {
  text-align: center;
opacity: 1;
}
#s-68edf2a1-4281-491b-9311-4cf831dc6996:hover {opacity: 0.9 !important;}






  #s-68edf2a1-4281-491b-9311-4cf831dc6996 img.shogun-image {
    

    
    
    
  }


#s-68edf2a1-4281-491b-9311-4cf831dc6996 .shogun-image-content {
  
    align-items: center;
  
}

#s-8c8b68a7-2117-4a1e-9370-320668afb986 {
  margin-top: 20px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
min-height: 50px;
background-color: rgba(255, 255, 255, 0);
}
@media (min-width: 768px) and (max-width: 991px){#s-8c8b68a7-2117-4a1e-9370-320668afb986 {
  margin-top: 16px;
}
}







#s-8c8b68a7-2117-4a1e-9370-320668afb986 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8c8b68a7-2117-4a1e-9370-320668afb986.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6324dc5b-8b0a-460a-929c-e95d82f8f1bd {
  padding-bottom: 10px;
}

#s-719fa097-3ba8-4681-9725-3bb1ccfadf2c {
  padding-bottom: 20px;
}

#s-4ebaaa57-6d7c-42ad-aef4-64c5945d4198 {
  margin-top: 0px;
margin-left: 10px;
margin-bottom: 0px;
margin-right: 10px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-4ebaaa57-6d7c-42ad-aef4-64c5945d4198 {
  margin-left: 6px;
margin-right: 6px;
}
}@media (max-width: 767px){#s-4ebaaa57-6d7c-42ad-aef4-64c5945d4198 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 30px;
margin-right: 0px;
}
}







#s-4ebaaa57-6d7c-42ad-aef4-64c5945d4198 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4ebaaa57-6d7c-42ad-aef4-64c5945d4198.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-897cd3bb-6676-49a7-80ea-790c91b0f878 {
  text-align: center;
opacity: 1;
}
#s-897cd3bb-6676-49a7-80ea-790c91b0f878:hover {opacity: 0.9 !important;}






  #s-897cd3bb-6676-49a7-80ea-790c91b0f878 img.shogun-image {
    

    
    
    
  }


#s-897cd3bb-6676-49a7-80ea-790c91b0f878 .shogun-image-content {
  
    align-items: center;
  
}

#s-c57bb1d4-b151-4d96-bbc3-9ab2e7c4ff89 {
  margin-top: 20px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
min-height: 50px;
background-color: rgba(255, 255, 255, 0);
}
@media (min-width: 768px) and (max-width: 991px){#s-c57bb1d4-b151-4d96-bbc3-9ab2e7c4ff89 {
  margin-top: 16px;
}
}







#s-c57bb1d4-b151-4d96-bbc3-9ab2e7c4ff89 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c57bb1d4-b151-4d96-bbc3-9ab2e7c4ff89.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7f372932-b8b4-46b7-8e8b-8ea783224fb2 {
  padding-bottom: 10px;
}

#s-737bac3d-bafd-4e0d-ab4e-62090f0fd3ae {
  padding-bottom: 20px;
}

#s-3b0b50a6-1fe6-4551-a18d-86f71fe413b5 {
  margin-top: 50px;
padding-top: 10px;
padding-left: 40px;
padding-bottom: 10px;
padding-right: 40px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(18, 18, 18, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(18, 18, 18, 0);
text-align: center;
text-decoration: none;
color: rgba(18, 18, 18, 1);
hover-type: color;
}
#s-3b0b50a6-1fe6-4551-a18d-86f71fe413b5:hover {background-color: rgba(18, 18, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-3b0b50a6-1fe6-4551-a18d-86f71fe413b5:active {background-color: rgba(18, 18, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 768px) and (max-width: 991px){#s-3b0b50a6-1fe6-4551-a18d-86f71fe413b5 {
  margin-top: 40px;
padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
}
}@media (max-width: 767px){#s-3b0b50a6-1fe6-4551-a18d-86f71fe413b5 {
  margin-top: 0px;
padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
}
}

  #s-3b0b50a6-1fe6-4551-a18d-86f71fe413b5-root {
    text-align: center;
  }


#s-3b0b50a6-1fe6-4551-a18d-86f71fe413b5.shg-btn {
  color: rgba(18, 18, 18, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-3b0b50a6-1fe6-4551-a18d-86f71fe413b5-root {
    text-align: center;
  }


#s-3b0b50a6-1fe6-4551-a18d-86f71fe413b5.shg-btn {
  color: rgba(18, 18, 18, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-3b0b50a6-1fe6-4551-a18d-86f71fe413b5-root {
    text-align: center;
  }


#s-3b0b50a6-1fe6-4551-a18d-86f71fe413b5.shg-btn {
  color: rgba(18, 18, 18, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-3b0b50a6-1fe6-4551-a18d-86f71fe413b5-root {
    text-align: center;
  }


#s-3b0b50a6-1fe6-4551-a18d-86f71fe413b5.shg-btn {
  color: rgba(18, 18, 18, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-3b0b50a6-1fe6-4551-a18d-86f71fe413b5-root {
    text-align: center;
  }


#s-3b0b50a6-1fe6-4551-a18d-86f71fe413b5.shg-btn {
  color: rgba(18, 18, 18, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}
#s-6c84d9c0-af79-4cde-8aa7-43988372136e {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-6c84d9c0-af79-4cde-8aa7-43988372136e {
  display: none;
}
#s-6c84d9c0-af79-4cde-8aa7-43988372136e, #wrap-s-6c84d9c0-af79-4cde-8aa7-43988372136e { display: none !important; }}@media (max-width: 767px){#s-6c84d9c0-af79-4cde-8aa7-43988372136e {
  display: none;
}
#s-6c84d9c0-af79-4cde-8aa7-43988372136e, #wrap-s-6c84d9c0-af79-4cde-8aa7-43988372136e { display: none !important; }}







#s-6c84d9c0-af79-4cde-8aa7-43988372136e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6c84d9c0-af79-4cde-8aa7-43988372136e {
  cursor: pointer;
}#s-6c84d9c0-af79-4cde-8aa7-43988372136e.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-8d145dc5-8df4-4bb4-a358-0f82cf5209bf {
  text-align: center;
background-color: rgba(18, 18, 18, 1);
opacity: 0.7;
}







  #s-8d145dc5-8df4-4bb4-a358-0f82cf5209bf img.shogun-image {
    

    
    
    
  }


#s-8d145dc5-8df4-4bb4-a358-0f82cf5209bf .shogun-image-content {
  
    align-items: center;
  
}

.shogun-heading-component h1,
.shogun-heading-component h2,
.shogun-heading-component h3,
.shogun-heading-component h4,
.shogun-heading-component h5,
.shogun-heading-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: ;
  font-family: ;
  text-transform: none;
  font-weight: ;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

.shogun-heading-component a {
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

#s-1abf5104-7c19-48f2-a6cc-4426e3bb9942 {
  padding-top: 0px;
padding-bottom: 30px;
text-align: center;
}

#s-1abf5104-7c19-48f2-a6cc-4426e3bb9942 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "neue-haas-grotesk-display";
  font-style:  normal ;
  font-size: 100px;
  line-height: 1em;
  
  text-align: center;
}


@media (min-width: 1200px){#s-1abf5104-7c19-48f2-a6cc-4426e3bb9942 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "neue-haas-grotesk-display";
  font-style:  normal ;
  font-size: 140px;
  line-height: 1em;
  
  text-align: center;
}


}
#s-9153b7f9-7947-4256-9e95-b9cd8956594c {
  padding-top: 10px;
padding-left: 40px;
padding-bottom: 10px;
padding-right: 40px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(255, 255, 255, 0);
text-align: center;
text-decoration: none;
color: rgba(255, 255, 255, 1);
hover-type: color;
}
#s-9153b7f9-7947-4256-9e95-b9cd8956594c:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(18, 18, 18, 1) !important;}#s-9153b7f9-7947-4256-9e95-b9cd8956594c:active {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(18, 18, 18, 1) !important;}@media (min-width: 768px) and (max-width: 991px){#s-9153b7f9-7947-4256-9e95-b9cd8956594c {
  padding-top: 5px;
padding-bottom: 5px;
}
}

  #s-9153b7f9-7947-4256-9e95-b9cd8956594c-root {
    text-align: center;
  }


#s-9153b7f9-7947-4256-9e95-b9cd8956594c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-9153b7f9-7947-4256-9e95-b9cd8956594c-root {
    text-align: center;
  }


#s-9153b7f9-7947-4256-9e95-b9cd8956594c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9153b7f9-7947-4256-9e95-b9cd8956594c-root {
    text-align: center;
  }


#s-9153b7f9-7947-4256-9e95-b9cd8956594c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9153b7f9-7947-4256-9e95-b9cd8956594c-root {
    text-align: center;
  }


#s-9153b7f9-7947-4256-9e95-b9cd8956594c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-9153b7f9-7947-4256-9e95-b9cd8956594c-root {
    text-align: center;
  }


#s-9153b7f9-7947-4256-9e95-b9cd8956594c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}
#s-4a197ecc-e8eb-4a25-b663-4afdb2b0e954 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-4a197ecc-e8eb-4a25-b663-4afdb2b0e954 {
  display: none;
}
#s-4a197ecc-e8eb-4a25-b663-4afdb2b0e954, #wrap-s-4a197ecc-e8eb-4a25-b663-4afdb2b0e954 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4a197ecc-e8eb-4a25-b663-4afdb2b0e954 {
  display: none;
}
#s-4a197ecc-e8eb-4a25-b663-4afdb2b0e954, #wrap-s-4a197ecc-e8eb-4a25-b663-4afdb2b0e954 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-4a197ecc-e8eb-4a25-b663-4afdb2b0e954 {
  
}
}@media (max-width: 767px){#s-4a197ecc-e8eb-4a25-b663-4afdb2b0e954 {
  display: none;
}
#s-4a197ecc-e8eb-4a25-b663-4afdb2b0e954, #wrap-s-4a197ecc-e8eb-4a25-b663-4afdb2b0e954 { display: none !important; }}







#s-4a197ecc-e8eb-4a25-b663-4afdb2b0e954 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4a197ecc-e8eb-4a25-b663-4afdb2b0e954 {
  cursor: pointer;
}#s-4a197ecc-e8eb-4a25-b663-4afdb2b0e954.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-d780254a-170d-4818-9c3a-1f5976ef37c5 {
  text-align: center;
background-color: rgba(18, 18, 18, 1);
opacity: 0.7;
}
#s-d780254a-170d-4818-9c3a-1f5976ef37c5:hover {opacity: 1 !important;}






  #s-d780254a-170d-4818-9c3a-1f5976ef37c5 img.shogun-image {
    

    
    
    
  }


#s-d780254a-170d-4818-9c3a-1f5976ef37c5 .shogun-image-content {
  
    align-items: center;
  
}

#s-c72782a1-5a19-45fe-bb8b-4e707edd2256 {
  padding-top: 0px;
padding-bottom: 10px;
text-align: center;
}

#s-c72782a1-5a19-45fe-bb8b-4e707edd2256 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 80px;
  
  
  
}



#s-b06c4402-7c37-45d7-978e-955827af1e0b {
  padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(255, 255, 255, 0);
text-align: center;
text-decoration: none;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-b06c4402-7c37-45d7-978e-955827af1e0b:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(18, 18, 18, 1) !important;}#s-b06c4402-7c37-45d7-978e-955827af1e0b:active {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(18, 18, 18, 1) !important;}

  #s-b06c4402-7c37-45d7-978e-955827af1e0b-root {
    text-align: center;
  }


#s-b06c4402-7c37-45d7-978e-955827af1e0b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-b06c4402-7c37-45d7-978e-955827af1e0b-root {
    text-align: center;
  }


#s-b06c4402-7c37-45d7-978e-955827af1e0b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b06c4402-7c37-45d7-978e-955827af1e0b-root {
    text-align: center;
  }


#s-b06c4402-7c37-45d7-978e-955827af1e0b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b06c4402-7c37-45d7-978e-955827af1e0b-root {
    text-align: center;
  }


#s-b06c4402-7c37-45d7-978e-955827af1e0b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-b06c4402-7c37-45d7-978e-955827af1e0b-root {
    text-align: center;
  }


#s-b06c4402-7c37-45d7-978e-955827af1e0b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}
#s-bd4e6642-ebf3-4e17-82a0-c23525fc9972 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-bd4e6642-ebf3-4e17-82a0-c23525fc9972 {
  display: none;
}
#s-bd4e6642-ebf3-4e17-82a0-c23525fc9972, #wrap-s-bd4e6642-ebf3-4e17-82a0-c23525fc9972 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-bd4e6642-ebf3-4e17-82a0-c23525fc9972 {
  display: none;
}
#s-bd4e6642-ebf3-4e17-82a0-c23525fc9972, #wrap-s-bd4e6642-ebf3-4e17-82a0-c23525fc9972 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-bd4e6642-ebf3-4e17-82a0-c23525fc9972 {
  display: none;
}
#s-bd4e6642-ebf3-4e17-82a0-c23525fc9972, #wrap-s-bd4e6642-ebf3-4e17-82a0-c23525fc9972 { display: none !important; }}@media (max-width: 767px){#s-bd4e6642-ebf3-4e17-82a0-c23525fc9972 {
  
}
}







#s-bd4e6642-ebf3-4e17-82a0-c23525fc9972 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bd4e6642-ebf3-4e17-82a0-c23525fc9972 {
  cursor: pointer;
}#s-bd4e6642-ebf3-4e17-82a0-c23525fc9972.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-a77bc6e7-cffa-44e2-9e28-954d2a4d70ce {
  text-align: center;
opacity: 0.7;
background-color: rgba(18, 18, 18, 1);
}







  #s-a77bc6e7-cffa-44e2-9e28-954d2a4d70ce img.shogun-image {
    

    
    
    
  }


#s-a77bc6e7-cffa-44e2-9e28-954d2a4d70ce .shogun-image-content {
  
    align-items: center;
  
}

#s-b55263d2-5f9d-48fa-b07c-01f20d99524a {
  padding-top: 0px;
padding-bottom: 10px;
text-align: center;
}

#s-b55263d2-5f9d-48fa-b07c-01f20d99524a .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



#s-cfac6a56-3b7d-4d8b-b798-61fa3a6f6f31 {
  padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(255, 255, 255, 0);
text-align: center;
text-decoration: none;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-cfac6a56-3b7d-4d8b-b798-61fa3a6f6f31:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(18, 18, 18, 1) !important;}#s-cfac6a56-3b7d-4d8b-b798-61fa3a6f6f31:active {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(18, 18, 18, 1) !important;}

  #s-cfac6a56-3b7d-4d8b-b798-61fa3a6f6f31-root {
    text-align: center;
  }


#s-cfac6a56-3b7d-4d8b-b798-61fa3a6f6f31.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-cfac6a56-3b7d-4d8b-b798-61fa3a6f6f31-root {
    text-align: center;
  }


#s-cfac6a56-3b7d-4d8b-b798-61fa3a6f6f31.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-cfac6a56-3b7d-4d8b-b798-61fa3a6f6f31-root {
    text-align: center;
  }


#s-cfac6a56-3b7d-4d8b-b798-61fa3a6f6f31.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-cfac6a56-3b7d-4d8b-b798-61fa3a6f6f31-root {
    text-align: center;
  }


#s-cfac6a56-3b7d-4d8b-b798-61fa3a6f6f31.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-cfac6a56-3b7d-4d8b-b798-61fa3a6f6f31-root {
    text-align: center;
  }


#s-cfac6a56-3b7d-4d8b-b798-61fa3a6f6f31.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}
#s-14008050-b2d7-4819-9247-f1a77fcd99ad {
  padding-top: 100px;
padding-bottom: 100px;
min-height: 50px;
background-color: rgba(18, 18, 18, 1);
}
@media (min-width: 1200px){#s-14008050-b2d7-4819-9247-f1a77fcd99ad {
  padding-top: 110px;
padding-bottom: 110px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-14008050-b2d7-4819-9247-f1a77fcd99ad {
  padding-top: 100px;
padding-left: 100px;
padding-bottom: 110px;
padding-right: 100px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-14008050-b2d7-4819-9247-f1a77fcd99ad {
  padding-top: 80px;
padding-left: 80px;
padding-bottom: 90px;
padding-right: 80px;
}
}@media (max-width: 767px){#s-14008050-b2d7-4819-9247-f1a77fcd99ad {
  padding-top: 60px;
padding-left: 30px;
padding-bottom: 60px;
padding-right: 30px;
}
}







#s-14008050-b2d7-4819-9247-f1a77fcd99ad > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-14008050-b2d7-4819-9247-f1a77fcd99ad.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2cc4c705-1071-4f59-a001-af65927ce5d8 {
  margin-left: auto;
margin-right: auto;
padding-bottom: 40px;
max-width: 1000px;
}
@media (min-width: 768px) and (max-width: 991px){#s-2cc4c705-1071-4f59-a001-af65927ce5d8 {
  padding-bottom: 40px;
}
}@media (max-width: 767px){#s-2cc4c705-1071-4f59-a001-af65927ce5d8 {
  padding-bottom: 35px;
}
}
#s-dc75daa8-ac0b-4398-ae6b-6e134b58829e {
  padding-top: 10px;
padding-left: 40px;
padding-bottom: 10px;
padding-right: 40px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(0, 0, 0, 0);
text-align: center;
text-decoration: none;
color: rgba(255, 255, 255, 1);
hover-type: color;
}
#s-dc75daa8-ac0b-4398-ae6b-6e134b58829e:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(18, 18, 18, 1) !important;}#s-dc75daa8-ac0b-4398-ae6b-6e134b58829e:active {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(18, 18, 18, 1) !important;}@media (min-width: 768px) and (max-width: 991px){#s-dc75daa8-ac0b-4398-ae6b-6e134b58829e {
  padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
}
}@media (max-width: 767px){#s-dc75daa8-ac0b-4398-ae6b-6e134b58829e {
  padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
}
}

  #s-dc75daa8-ac0b-4398-ae6b-6e134b58829e-root {
    text-align: center;
  }


#s-dc75daa8-ac0b-4398-ae6b-6e134b58829e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-dc75daa8-ac0b-4398-ae6b-6e134b58829e-root {
    text-align: center;
  }


#s-dc75daa8-ac0b-4398-ae6b-6e134b58829e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-dc75daa8-ac0b-4398-ae6b-6e134b58829e-root {
    text-align: center;
  }


#s-dc75daa8-ac0b-4398-ae6b-6e134b58829e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-dc75daa8-ac0b-4398-ae6b-6e134b58829e-root {
    text-align: center;
  }


#s-dc75daa8-ac0b-4398-ae6b-6e134b58829e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-dc75daa8-ac0b-4398-ae6b-6e134b58829e-root {
    text-align: center;
  }


#s-dc75daa8-ac0b-4398-ae6b-6e134b58829e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: neue-haas-grotesk-display;
  display:  inline-block ;
}
}
#s-b0830b1f-e450-485e-959a-e9add50da637 {
  background-color: rgba(18, 18, 18, 1);
}
@media (min-width: 1200px){#s-b0830b1f-e450-485e-959a-e9add50da637 {
  display: none;
}
#s-b0830b1f-e450-485e-959a-e9add50da637, #wrap-s-b0830b1f-e450-485e-959a-e9add50da637 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b0830b1f-e450-485e-959a-e9add50da637 {
  display: none;
}
#s-b0830b1f-e450-485e-959a-e9add50da637, #wrap-s-b0830b1f-e450-485e-959a-e9add50da637 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b0830b1f-e450-485e-959a-e9add50da637 {
  display: none;
}
#s-b0830b1f-e450-485e-959a-e9add50da637, #wrap-s-b0830b1f-e450-485e-959a-e9add50da637 { display: none !important; }}
#s-754f3071-b528-49d9-9868-81618b16a829 {
  background-color: rgba(18, 18, 18, 1);
}
@media (min-width: 1200px){#s-754f3071-b528-49d9-9868-81618b16a829 {
  display: none;
}
#s-754f3071-b528-49d9-9868-81618b16a829, #wrap-s-754f3071-b528-49d9-9868-81618b16a829 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-754f3071-b528-49d9-9868-81618b16a829 {
  display: none;
}
#s-754f3071-b528-49d9-9868-81618b16a829, #wrap-s-754f3071-b528-49d9-9868-81618b16a829 { display: none !important; }}@media (max-width: 767px){#s-754f3071-b528-49d9-9868-81618b16a829 {
  display: none;
}
#s-754f3071-b528-49d9-9868-81618b16a829, #wrap-s-754f3071-b528-49d9-9868-81618b16a829 { display: none !important; }}
#s-a3e3851d-9ccf-42f3-896f-1d8b8d2a6332 {
  background-color: rgba(18, 18, 18, 1);
}
@media (min-width: 992px) and (max-width: 1199px){#s-a3e3851d-9ccf-42f3-896f-1d8b8d2a6332 {
  display: none;
}
#s-a3e3851d-9ccf-42f3-896f-1d8b8d2a6332, #wrap-s-a3e3851d-9ccf-42f3-896f-1d8b8d2a6332 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a3e3851d-9ccf-42f3-896f-1d8b8d2a6332 {
  display: none;
}
#s-a3e3851d-9ccf-42f3-896f-1d8b8d2a6332, #wrap-s-a3e3851d-9ccf-42f3-896f-1d8b8d2a6332 { display: none !important; }}@media (max-width: 767px){#s-a3e3851d-9ccf-42f3-896f-1d8b8d2a6332 {
  display: none;
}
#s-a3e3851d-9ccf-42f3-896f-1d8b8d2a6332, #wrap-s-a3e3851d-9ccf-42f3-896f-1d8b8d2a6332 { display: none !important; }}
#s-1bf5b380-75d2-4f05-a039-ecbd4d457347 {
  background-color: rgba(18, 18, 18, 1);
}
@media (min-width: 1200px){#s-1bf5b380-75d2-4f05-a039-ecbd4d457347 {
  display: none;
}
#s-1bf5b380-75d2-4f05-a039-ecbd4d457347, #wrap-s-1bf5b380-75d2-4f05-a039-ecbd4d457347 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1bf5b380-75d2-4f05-a039-ecbd4d457347 {
  display: none;
}
#s-1bf5b380-75d2-4f05-a039-ecbd4d457347, #wrap-s-1bf5b380-75d2-4f05-a039-ecbd4d457347 { display: none !important; }}@media (max-width: 767px){#s-1bf5b380-75d2-4f05-a039-ecbd4d457347 {
  display: none;
}
#s-1bf5b380-75d2-4f05-a039-ecbd4d457347, #wrap-s-1bf5b380-75d2-4f05-a039-ecbd4d457347 { display: none !important; }}
/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape) {
  .shg-box {
    background-attachment: scroll !important;
  }
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}
.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-lazyload-bg-image {
  display: none;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}
/* <-- User Content Animations */

.shogun-form-error-msg, .shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}

.shg-c:before,.shg-c:after{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width: 1024px){.shg-c,.shg-box{background-attachment:scroll !important}}@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape){.shg-box{background-attachment:scroll !important}}#mc_embed_signup .clear{width:auto !important;height:auto !important;visibility:visible !important}.shg-clearfix:after{content:"";display:block;clear:both}.shogun-image{max-width:100%;min-height:inherit;max-height:inherit;display:inline !important;border:0;vertical-align:middle}.shg-fw{margin-left:calc(50% - 50vw);width:100vw}.shg-fw .shg-fw{margin-left:auto;margin-right:auto;width:100%}div[data-shg-lightbox-switch]{cursor:pointer}.shg-lightbox{position:fixed;z-index:999999;left:0;top:0;width:100%;height:100%;overflow:hidden;background-color:#000;background-color:rgba(0,0,0,0.85)}.shg-lightbox.hidden{display:none !important}.shg-lightbox .shg-lightbox-content{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:100%;text-align:center}.shg-lightbox .shg-lightbox-close{position:absolute;right:0;padding:5px 0;color:#fff;font-size:45px;margin-right:10px;line-height:30px;user-select:none;cursor:pointer;z-index:1}.shg-lightbox .shg-lightbox-image-container{padding:25px}.shg-lightbox .shg-lightbox-image{margin:auto;max-height:90vh;max-width:100%}.shg-lightbox .shg-lightbox-close:hover,.shg-lightbox .shg-lightbox-close:focus{color:#a2a2a2;text-decoration:none;cursor:pointer}.shg-lightbox .shg-lightbox-nav{cursor:pointer;position:absolute;top:50%;width:35px;height:100px;background-size:contain;background-repeat:no-repeat;background-position:center;transform:translate(0%, -50%);z-index:1}.shg-lightbox .shg-lightbox-nav.hidden{display:none !important}.shg-lightbox .shg-lightbox-nav.shg-nav-left{left:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==)}.shg-lightbox .shg-lightbox-nav.shg-nav-right{right:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+)}@media screen and (min-width: 769px){.shg-lightbox .shg-lightbox-image-container{padding:50px}}.shogun-lazyload:not([src]),.shogun-lazyloading:not([src]){opacity:0}.shogun-lazyloaded{opacity:1;transition:opacity 300ms}.shogun-lazyload-bg-image{display:none}.shogun-root a:empty,.shogun-root article:empty,.shogun-root dl:empty,.shogun-root h1:empty,.shogun-root h2:empty,.shogun-root h3:empty,.shogun-root h4:empty,.shogun-root h5:empty,.shogun-root h6:empty,.shogun-root p:empty,.shogun-root section:empty,.shogun-root ul:empty{display:unset}.shogun-root div:empty{display:inline-block}[data-animations*="enterviewport"][data-animations*="fadeIn"],[data-animations*="enterviewport"][data-animations*="zoomIn"]{opacity:0}.shogun-form-error-msg,.shogun-form-field-error-msg{display:flex;align-items:center;color:#dc143c}.shogun-badge{margin-bottom:50px}.shogun-badge-container{position:fixed;right:0;bottom:0;margin-bottom:-10px}
