.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-ece7389f-3d5e-4580-b49b-c059b0609cce {
  min-height: 50px;
}








#s-ece7389f-3d5e-4580-b49b-c059b0609cce > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ece7389f-3d5e-4580-b49b-c059b0609cce.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.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-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 {
  margin-top: 28px;
margin-bottom: 28px;
max-width: 1920px;
aspect-ratio: 1920/320;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 .shg-image-content-wrapper {
      aspect-ratio: 1920/320;
      min-width: 100%;
      height: auto;
    }

    #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 .shogun-image-link {
      aspect-ratio: 1920/320;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 {
    width: 100%;
    height: auto;
  }

  #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shogun-image {
    
    
  }


.s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 {
      --shg-aspect-ratio: calc(1920/320); 
    }

    .s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shogun-image-container {
      position: relative;
    }

    .s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 .shg-image-content-wrapper {
      aspect-ratio: 1920/320;
      min-width: 100%;
      height: auto;
    }

    #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 .shogun-image-link {
      aspect-ratio: 1920/320;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 {
    width: 100%;
    height: auto;
  }

  #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shogun-image {
    
    
  }


.s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 {
      --shg-aspect-ratio: calc(1920/320); 
    }

    .s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shogun-image-container {
      position: relative;
    }

    .s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 .shg-image-content-wrapper {
      aspect-ratio: 1920/320;
      min-width: 100%;
      height: auto;
    }

    #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 .shogun-image-link {
      aspect-ratio: 1920/320;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 {
    width: 100%;
    height: auto;
  }

  #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shogun-image {
    
    
  }


.s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 {
      --shg-aspect-ratio: calc(1920/320); 
    }

    .s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shogun-image-container {
      position: relative;
    }

    .s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 .shg-image-content-wrapper {
      aspect-ratio: 1920/320;
      min-width: 100%;
      height: auto;
    }

    #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 .shogun-image-link {
      aspect-ratio: 1920/320;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 {
    width: 100%;
    height: auto;
  }

  #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shogun-image {
    
    
  }


.s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 {
      --shg-aspect-ratio: calc(1920/320); 
    }

    .s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shogun-image-container {
      position: relative;
    }

    .s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 .shg-image-content-wrapper {
      aspect-ratio: 1920/320;
      min-width: 100%;
      height: auto;
    }

    #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 .shogun-image-link {
      aspect-ratio: 1920/320;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 {
    width: 100%;
    height: auto;
  }

  #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shogun-image {
    
    
  }


.s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 {
      --shg-aspect-ratio: calc(1920/320); 
    }

    .s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shogun-image-container {
      position: relative;
    }

    .s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
.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: #121212;
  font-family: Serif;
  text-transform: none;
  font-weight: 400;
  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-c4a6f7b0-8bc5-4ad5-b998-2cda3db5037b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c4a6f7b0-8bc5-4ad5-b998-2cda3db5037b .shogun-heading-component h1 {
  color: ;
  font-weight:  600 ;
  font-family: "Inter";
  font-style:  normal ;
  
  
  
  
}



#s-c7ecc5c3-80c0-4efd-99dd-aa70e38caa78 {
  min-height: 50px;
}








#s-c7ecc5c3-80c0-4efd-99dd-aa70e38caa78 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c7ecc5c3-80c0-4efd-99dd-aa70e38caa78.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.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: #121212;
  font-family: Serif;
  font-weight: 400;
}

.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: 400;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0.6em;
  color: #121212;
  font-family: Serif;
}

.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: #121212;
  font-family: Serif;
  font-weight: 400;
}

.shg-theme-text-content p {
  color: #121212;
  font-family: Serif;
  font-weight: 400;
}

#s-6afa36b5-ceac-4a5d-945f-0a6a48631fe7 {
  margin-left: 10%;
margin-right: 10%;
}

.shg-hr-wrapper {
  padding: 30px 0;
}

.shg-hr-wrapper hr {
  margin: 0;
  border: 0;
  width: 100%;
}

#s-d1eb1768-4296-4dd5-bc75-776b85693234 hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

#s-9bac5aff-2b9b-4a93-9c56-8ffcdab240c5 {
  min-height: 50px;
}








#s-9bac5aff-2b9b-4a93-9c56-8ffcdab240c5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9bac5aff-2b9b-4a93-9c56-8ffcdab240c5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-sld-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

.shg-sld-slides {
  word-break: break-word;
  position: relative;
}

.shg-sld-slides-padded {
  padding: 0 35px;
}

.shg-sld-nav-button {
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: 0;
  width: 35px;
  min-height: 35px;
  height: 100%;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.shg-sld-nav-button > svg {
  height: 100%;
  width: 100%;
}

.shg-sld-nav-button.shg-sld-left {
  left: 0;
}

.shg-sld-nav-button.shg-sld-left-over-content {
  left: 2%;
}

.shg-sld-nav-button.shg-sld-right {
  right: 0;
}

.shg-sld-nav-button.shg-sld-right-over-content {
  right: 2%;
}

.shg-sld-nav-button.shg-sld-disabled {
  cursor: default;
  opacity: 0.2;
}

.shg-sld-item {
  display: none;
}

.shg-sld-item.shg-sld-active {
  display: block;
}

.shg-sld-dots {
  margin-top: 10px;
  text-align: center;
  z-index: 1;
  position: relative;
}

.shg-sld-dots-on-top {
  margin-top: -30px !important;
}

.shg-sld-dot {
  cursor: pointer;
  display: inline-block !important;
  height: 14px;
  width: 14px;
  border-radius: 100%;
  margin-left: 5px;
  opacity: 0.5;
}

.shg-sld-dot:first-child {
  margin-left: 0px;
}

.shg-sld-dot.shg-sld-active {
  opacity: 1;
}

@keyframes shg-sld-fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

#s-0c5d4d44-5f02-499d-bb0d-eaa647cd4e88 {
  margin-left: 10%;
margin-right: 10%;
padding-top: 10px;
padding-bottom: 10px;
max-width: 1200px;
}

#s-0c5d4d44-5f02-499d-bb0d-eaa647cd4e88 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-0c5d4d44-5f02-499d-bb0d-eaa647cd4e88 .shg-sld-nav-button.shg-sld-left,
#s-0c5d4d44-5f02-499d-bb0d-eaa647cd4e88 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-b8cfbfe3-2495-4101-a53a-815fc494cbde {
  max-width: 3130px;
aspect-ratio: 3130/2075;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-b8cfbfe3-2495-4101-a53a-815fc494cbde .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-b8cfbfe3-2495-4101-a53a-815fc494cbde .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b8cfbfe3-2495-4101-a53a-815fc494cbde .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b8cfbfe3-2495-4101-a53a-815fc494cbde {
    width: 100%;
    height: auto;
  }

  #s-b8cfbfe3-2495-4101-a53a-815fc494cbde img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shogun-image {
    
    
  }


.s-b8cfbfe3-2495-4101-a53a-815fc494cbde .shogun-image-content {
  
    align-items: center;
  
}

.s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b8cfbfe3-2495-4101-a53a-815fc494cbde {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shogun-image-container {
      position: relative;
    }

    .s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b8cfbfe3-2495-4101-a53a-815fc494cbde img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-b8cfbfe3-2495-4101-a53a-815fc494cbde .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-b8cfbfe3-2495-4101-a53a-815fc494cbde .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b8cfbfe3-2495-4101-a53a-815fc494cbde .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b8cfbfe3-2495-4101-a53a-815fc494cbde {
    width: 100%;
    height: auto;
  }

  #s-b8cfbfe3-2495-4101-a53a-815fc494cbde img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shogun-image {
    
    
  }


.s-b8cfbfe3-2495-4101-a53a-815fc494cbde .shogun-image-content {
  
    align-items: center;
  
}

.s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b8cfbfe3-2495-4101-a53a-815fc494cbde {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shogun-image-container {
      position: relative;
    }

    .s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b8cfbfe3-2495-4101-a53a-815fc494cbde img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-b8cfbfe3-2495-4101-a53a-815fc494cbde .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-b8cfbfe3-2495-4101-a53a-815fc494cbde .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b8cfbfe3-2495-4101-a53a-815fc494cbde .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b8cfbfe3-2495-4101-a53a-815fc494cbde {
    width: 100%;
    height: auto;
  }

  #s-b8cfbfe3-2495-4101-a53a-815fc494cbde img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shogun-image {
    
    
  }


.s-b8cfbfe3-2495-4101-a53a-815fc494cbde .shogun-image-content {
  
    align-items: center;
  
}

.s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b8cfbfe3-2495-4101-a53a-815fc494cbde {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shogun-image-container {
      position: relative;
    }

    .s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b8cfbfe3-2495-4101-a53a-815fc494cbde img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-b8cfbfe3-2495-4101-a53a-815fc494cbde .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-b8cfbfe3-2495-4101-a53a-815fc494cbde .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b8cfbfe3-2495-4101-a53a-815fc494cbde .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b8cfbfe3-2495-4101-a53a-815fc494cbde {
    width: 100%;
    height: auto;
  }

  #s-b8cfbfe3-2495-4101-a53a-815fc494cbde img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shogun-image {
    
    
  }


.s-b8cfbfe3-2495-4101-a53a-815fc494cbde .shogun-image-content {
  
    align-items: center;
  
}

.s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b8cfbfe3-2495-4101-a53a-815fc494cbde {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shogun-image-container {
      position: relative;
    }

    .s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b8cfbfe3-2495-4101-a53a-815fc494cbde img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-b8cfbfe3-2495-4101-a53a-815fc494cbde .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-b8cfbfe3-2495-4101-a53a-815fc494cbde .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b8cfbfe3-2495-4101-a53a-815fc494cbde .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b8cfbfe3-2495-4101-a53a-815fc494cbde {
    width: 100%;
    height: auto;
  }

  #s-b8cfbfe3-2495-4101-a53a-815fc494cbde img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shogun-image {
    
    
  }


.s-b8cfbfe3-2495-4101-a53a-815fc494cbde .shogun-image-content {
  
    align-items: center;
  
}

.s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b8cfbfe3-2495-4101-a53a-815fc494cbde {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shogun-image-container {
      position: relative;
    }

    .s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b8cfbfe3-2495-4101-a53a-815fc494cbde.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b8cfbfe3-2495-4101-a53a-815fc494cbde img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c {
  max-width: 3130px;
aspect-ratio: 3130/2075;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c {
    width: 100%;
    height: auto;
  }

  #s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shogun-image {
    
    
  }


.s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c .shogun-image-content {
  
    align-items: center;
  
}

.s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shogun-image-container {
      position: relative;
    }

    .s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c {
    width: 100%;
    height: auto;
  }

  #s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shogun-image {
    
    
  }


.s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c .shogun-image-content {
  
    align-items: center;
  
}

.s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shogun-image-container {
      position: relative;
    }

    .s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c {
    width: 100%;
    height: auto;
  }

  #s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shogun-image {
    
    
  }


.s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c .shogun-image-content {
  
    align-items: center;
  
}

.s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shogun-image-container {
      position: relative;
    }

    .s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c {
    width: 100%;
    height: auto;
  }

  #s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shogun-image {
    
    
  }


.s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c .shogun-image-content {
  
    align-items: center;
  
}

.s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shogun-image-container {
      position: relative;
    }

    .s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c {
    width: 100%;
    height: auto;
  }

  #s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shogun-image {
    
    
  }


.s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c .shogun-image-content {
  
    align-items: center;
  
}

.s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shogun-image-container {
      position: relative;
    }

    .s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f41ae649-3b3b-4e9e-9d85-069d4a5c057c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 {
  max-width: 3130px;
aspect-ratio: 3130/2075;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 {
    width: 100%;
    height: auto;
  }

  #s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shogun-image {
    
    
  }


.s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 .shogun-image-content {
  
    align-items: center;
  
}

.s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shogun-image-container {
      position: relative;
    }

    .s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 {
    width: 100%;
    height: auto;
  }

  #s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shogun-image {
    
    
  }


.s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 .shogun-image-content {
  
    align-items: center;
  
}

.s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shogun-image-container {
      position: relative;
    }

    .s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 {
    width: 100%;
    height: auto;
  }

  #s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shogun-image {
    
    
  }


.s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 .shogun-image-content {
  
    align-items: center;
  
}

.s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shogun-image-container {
      position: relative;
    }

    .s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 {
    width: 100%;
    height: auto;
  }

  #s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shogun-image {
    
    
  }


.s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 .shogun-image-content {
  
    align-items: center;
  
}

.s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shogun-image-container {
      position: relative;
    }

    .s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 {
    width: 100%;
    height: auto;
  }

  #s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shogun-image {
    
    
  }


.s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 .shogun-image-content {
  
    align-items: center;
  
}

.s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shogun-image-container {
      position: relative;
    }

    .s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a5d8604e-7a65-4ac7-8024-d89009e3d8f6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 {
  max-width: 3130px;
aspect-ratio: 3130/2075;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 {
    width: 100%;
    height: auto;
  }

  #s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shogun-image {
    
    
  }


.s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 .shogun-image-content {
  
    align-items: center;
  
}

.s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shogun-image-container {
      position: relative;
    }

    .s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 {
    width: 100%;
    height: auto;
  }

  #s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shogun-image {
    
    
  }


.s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 .shogun-image-content {
  
    align-items: center;
  
}

.s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shogun-image-container {
      position: relative;
    }

    .s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 {
    width: 100%;
    height: auto;
  }

  #s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shogun-image {
    
    
  }


.s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 .shogun-image-content {
  
    align-items: center;
  
}

.s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shogun-image-container {
      position: relative;
    }

    .s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 {
    width: 100%;
    height: auto;
  }

  #s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shogun-image {
    
    
  }


.s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 .shogun-image-content {
  
    align-items: center;
  
}

.s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shogun-image-container {
      position: relative;
    }

    .s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 {
    width: 100%;
    height: auto;
  }

  #s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shogun-image {
    
    
  }


.s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 .shogun-image-content {
  
    align-items: center;
  
}

.s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shogun-image-container {
      position: relative;
    }

    .s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-950d3445-dcfa-4832-b2f3-0cfd42e09ce1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 {
  max-width: 3130px;
aspect-ratio: 3130/2075;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 {
    width: 100%;
    height: auto;
  }

  #s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shogun-image {
    
    
  }


.s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 .shogun-image-content {
  
    align-items: center;
  
}

.s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shogun-image-container {
      position: relative;
    }

    .s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 {
    width: 100%;
    height: auto;
  }

  #s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shogun-image {
    
    
  }


.s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 .shogun-image-content {
  
    align-items: center;
  
}

.s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shogun-image-container {
      position: relative;
    }

    .s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 {
    width: 100%;
    height: auto;
  }

  #s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shogun-image {
    
    
  }


.s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 .shogun-image-content {
  
    align-items: center;
  
}

.s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shogun-image-container {
      position: relative;
    }

    .s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 {
    width: 100%;
    height: auto;
  }

  #s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shogun-image {
    
    
  }


.s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 .shogun-image-content {
  
    align-items: center;
  
}

.s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shogun-image-container {
      position: relative;
    }

    .s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 {
    width: 100%;
    height: auto;
  }

  #s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shogun-image {
    
    
  }


.s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 .shogun-image-content {
  
    align-items: center;
  
}

.s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shogun-image-container {
      position: relative;
    }

    .s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6ca77a6a-41ff-4c21-809f-4e15a4f1a129 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-9241dea8-f24c-41c2-af95-e96a9af51d22 {
  max-width: 3130px;
aspect-ratio: 3130/2075;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-9241dea8-f24c-41c2-af95-e96a9af51d22 .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-9241dea8-f24c-41c2-af95-e96a9af51d22 .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9241dea8-f24c-41c2-af95-e96a9af51d22 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-9241dea8-f24c-41c2-af95-e96a9af51d22 {
    width: 100%;
    height: auto;
  }

  #s-9241dea8-f24c-41c2-af95-e96a9af51d22 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9241dea8-f24c-41c2-af95-e96a9af51d22.shogun-image {
    
    
  }


.s-9241dea8-f24c-41c2-af95-e96a9af51d22 .shogun-image-content {
  
    align-items: center;
  
}

.s-9241dea8-f24c-41c2-af95-e96a9af51d22.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9241dea8-f24c-41c2-af95-e96a9af51d22.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9241dea8-f24c-41c2-af95-e96a9af51d22.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9241dea8-f24c-41c2-af95-e96a9af51d22 {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-9241dea8-f24c-41c2-af95-e96a9af51d22.shogun-image-container {
      position: relative;
    }

    .s-9241dea8-f24c-41c2-af95-e96a9af51d22.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9241dea8-f24c-41c2-af95-e96a9af51d22.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9241dea8-f24c-41c2-af95-e96a9af51d22 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-9241dea8-f24c-41c2-af95-e96a9af51d22 .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-9241dea8-f24c-41c2-af95-e96a9af51d22 .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9241dea8-f24c-41c2-af95-e96a9af51d22 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-9241dea8-f24c-41c2-af95-e96a9af51d22 {
    width: 100%;
    height: auto;
  }

  #s-9241dea8-f24c-41c2-af95-e96a9af51d22 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9241dea8-f24c-41c2-af95-e96a9af51d22.shogun-image {
    
    
  }


.s-9241dea8-f24c-41c2-af95-e96a9af51d22 .shogun-image-content {
  
    align-items: center;
  
}

.s-9241dea8-f24c-41c2-af95-e96a9af51d22.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9241dea8-f24c-41c2-af95-e96a9af51d22.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9241dea8-f24c-41c2-af95-e96a9af51d22.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9241dea8-f24c-41c2-af95-e96a9af51d22 {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-9241dea8-f24c-41c2-af95-e96a9af51d22.shogun-image-container {
      position: relative;
    }

    .s-9241dea8-f24c-41c2-af95-e96a9af51d22.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9241dea8-f24c-41c2-af95-e96a9af51d22.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9241dea8-f24c-41c2-af95-e96a9af51d22 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-9241dea8-f24c-41c2-af95-e96a9af51d22 .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-9241dea8-f24c-41c2-af95-e96a9af51d22 .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9241dea8-f24c-41c2-af95-e96a9af51d22 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-9241dea8-f24c-41c2-af95-e96a9af51d22 {
    width: 100%;
    height: auto;
  }

  #s-9241dea8-f24c-41c2-af95-e96a9af51d22 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9241dea8-f24c-41c2-af95-e96a9af51d22.shogun-image {
    
    
  }


.s-9241dea8-f24c-41c2-af95-e96a9af51d22 .shogun-image-content {
  
    align-items: center;
  
}

.s-9241dea8-f24c-41c2-af95-e96a9af51d22.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9241dea8-f24c-41c2-af95-e96a9af51d22.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9241dea8-f24c-41c2-af95-e96a9af51d22.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9241dea8-f24c-41c2-af95-e96a9af51d22 {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-9241dea8-f24c-41c2-af95-e96a9af51d22.shogun-image-container {
      position: relative;
    }

    .s-9241dea8-f24c-41c2-af95-e96a9af51d22.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9241dea8-f24c-41c2-af95-e96a9af51d22.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9241dea8-f24c-41c2-af95-e96a9af51d22 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-9241dea8-f24c-41c2-af95-e96a9af51d22 .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-9241dea8-f24c-41c2-af95-e96a9af51d22 .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9241dea8-f24c-41c2-af95-e96a9af51d22 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-9241dea8-f24c-41c2-af95-e96a9af51d22 {
    width: 100%;
    height: auto;
  }

  #s-9241dea8-f24c-41c2-af95-e96a9af51d22 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9241dea8-f24c-41c2-af95-e96a9af51d22.shogun-image {
    
    
  }


.s-9241dea8-f24c-41c2-af95-e96a9af51d22 .shogun-image-content {
  
    align-items: center;
  
}

.s-9241dea8-f24c-41c2-af95-e96a9af51d22.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9241dea8-f24c-41c2-af95-e96a9af51d22.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9241dea8-f24c-41c2-af95-e96a9af51d22.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9241dea8-f24c-41c2-af95-e96a9af51d22 {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-9241dea8-f24c-41c2-af95-e96a9af51d22.shogun-image-container {
      position: relative;
    }

    .s-9241dea8-f24c-41c2-af95-e96a9af51d22.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9241dea8-f24c-41c2-af95-e96a9af51d22.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9241dea8-f24c-41c2-af95-e96a9af51d22 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-9241dea8-f24c-41c2-af95-e96a9af51d22 .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-9241dea8-f24c-41c2-af95-e96a9af51d22 .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9241dea8-f24c-41c2-af95-e96a9af51d22 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-9241dea8-f24c-41c2-af95-e96a9af51d22 {
    width: 100%;
    height: auto;
  }

  #s-9241dea8-f24c-41c2-af95-e96a9af51d22 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9241dea8-f24c-41c2-af95-e96a9af51d22.shogun-image {
    
    
  }


.s-9241dea8-f24c-41c2-af95-e96a9af51d22 .shogun-image-content {
  
    align-items: center;
  
}

.s-9241dea8-f24c-41c2-af95-e96a9af51d22.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9241dea8-f24c-41c2-af95-e96a9af51d22.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9241dea8-f24c-41c2-af95-e96a9af51d22.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9241dea8-f24c-41c2-af95-e96a9af51d22 {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-9241dea8-f24c-41c2-af95-e96a9af51d22.shogun-image-container {
      position: relative;
    }

    .s-9241dea8-f24c-41c2-af95-e96a9af51d22.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9241dea8-f24c-41c2-af95-e96a9af51d22.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9241dea8-f24c-41c2-af95-e96a9af51d22 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-8780c16d-c1cf-41ba-8282-4e6cda53b45b {
  max-width: 3130px;
aspect-ratio: 3130/2075;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-8780c16d-c1cf-41ba-8282-4e6cda53b45b .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-8780c16d-c1cf-41ba-8282-4e6cda53b45b .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8780c16d-c1cf-41ba-8282-4e6cda53b45b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-8780c16d-c1cf-41ba-8282-4e6cda53b45b {
    width: 100%;
    height: auto;
  }

  #s-8780c16d-c1cf-41ba-8282-4e6cda53b45b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shogun-image {
    
    
  }


.s-8780c16d-c1cf-41ba-8282-4e6cda53b45b .shogun-image-content {
  
    align-items: center;
  
}

.s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8780c16d-c1cf-41ba-8282-4e6cda53b45b {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shogun-image-container {
      position: relative;
    }

    .s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8780c16d-c1cf-41ba-8282-4e6cda53b45b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-8780c16d-c1cf-41ba-8282-4e6cda53b45b .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-8780c16d-c1cf-41ba-8282-4e6cda53b45b .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8780c16d-c1cf-41ba-8282-4e6cda53b45b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-8780c16d-c1cf-41ba-8282-4e6cda53b45b {
    width: 100%;
    height: auto;
  }

  #s-8780c16d-c1cf-41ba-8282-4e6cda53b45b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shogun-image {
    
    
  }


.s-8780c16d-c1cf-41ba-8282-4e6cda53b45b .shogun-image-content {
  
    align-items: center;
  
}

.s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8780c16d-c1cf-41ba-8282-4e6cda53b45b {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shogun-image-container {
      position: relative;
    }

    .s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8780c16d-c1cf-41ba-8282-4e6cda53b45b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-8780c16d-c1cf-41ba-8282-4e6cda53b45b .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-8780c16d-c1cf-41ba-8282-4e6cda53b45b .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8780c16d-c1cf-41ba-8282-4e6cda53b45b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-8780c16d-c1cf-41ba-8282-4e6cda53b45b {
    width: 100%;
    height: auto;
  }

  #s-8780c16d-c1cf-41ba-8282-4e6cda53b45b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shogun-image {
    
    
  }


.s-8780c16d-c1cf-41ba-8282-4e6cda53b45b .shogun-image-content {
  
    align-items: center;
  
}

.s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8780c16d-c1cf-41ba-8282-4e6cda53b45b {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shogun-image-container {
      position: relative;
    }

    .s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8780c16d-c1cf-41ba-8282-4e6cda53b45b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-8780c16d-c1cf-41ba-8282-4e6cda53b45b .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-8780c16d-c1cf-41ba-8282-4e6cda53b45b .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8780c16d-c1cf-41ba-8282-4e6cda53b45b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-8780c16d-c1cf-41ba-8282-4e6cda53b45b {
    width: 100%;
    height: auto;
  }

  #s-8780c16d-c1cf-41ba-8282-4e6cda53b45b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shogun-image {
    
    
  }


.s-8780c16d-c1cf-41ba-8282-4e6cda53b45b .shogun-image-content {
  
    align-items: center;
  
}

.s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8780c16d-c1cf-41ba-8282-4e6cda53b45b {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shogun-image-container {
      position: relative;
    }

    .s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8780c16d-c1cf-41ba-8282-4e6cda53b45b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-8780c16d-c1cf-41ba-8282-4e6cda53b45b .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-8780c16d-c1cf-41ba-8282-4e6cda53b45b .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8780c16d-c1cf-41ba-8282-4e6cda53b45b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-8780c16d-c1cf-41ba-8282-4e6cda53b45b {
    width: 100%;
    height: auto;
  }

  #s-8780c16d-c1cf-41ba-8282-4e6cda53b45b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shogun-image {
    
    
  }


.s-8780c16d-c1cf-41ba-8282-4e6cda53b45b .shogun-image-content {
  
    align-items: center;
  
}

.s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8780c16d-c1cf-41ba-8282-4e6cda53b45b {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shogun-image-container {
      position: relative;
    }

    .s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8780c16d-c1cf-41ba-8282-4e6cda53b45b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8780c16d-c1cf-41ba-8282-4e6cda53b45b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-cd234f28-ff88-4327-b10e-831cfdf8ade3 {
  max-width: 3130px;
aspect-ratio: 3130/2075;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-cd234f28-ff88-4327-b10e-831cfdf8ade3 .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-cd234f28-ff88-4327-b10e-831cfdf8ade3 .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cd234f28-ff88-4327-b10e-831cfdf8ade3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-cd234f28-ff88-4327-b10e-831cfdf8ade3 {
    width: 100%;
    height: auto;
  }

  #s-cd234f28-ff88-4327-b10e-831cfdf8ade3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shogun-image {
    
    
  }


.s-cd234f28-ff88-4327-b10e-831cfdf8ade3 .shogun-image-content {
  
    align-items: center;
  
}

.s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cd234f28-ff88-4327-b10e-831cfdf8ade3 {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shogun-image-container {
      position: relative;
    }

    .s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cd234f28-ff88-4327-b10e-831cfdf8ade3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-cd234f28-ff88-4327-b10e-831cfdf8ade3 .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-cd234f28-ff88-4327-b10e-831cfdf8ade3 .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cd234f28-ff88-4327-b10e-831cfdf8ade3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-cd234f28-ff88-4327-b10e-831cfdf8ade3 {
    width: 100%;
    height: auto;
  }

  #s-cd234f28-ff88-4327-b10e-831cfdf8ade3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shogun-image {
    
    
  }


.s-cd234f28-ff88-4327-b10e-831cfdf8ade3 .shogun-image-content {
  
    align-items: center;
  
}

.s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cd234f28-ff88-4327-b10e-831cfdf8ade3 {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shogun-image-container {
      position: relative;
    }

    .s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cd234f28-ff88-4327-b10e-831cfdf8ade3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-cd234f28-ff88-4327-b10e-831cfdf8ade3 .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-cd234f28-ff88-4327-b10e-831cfdf8ade3 .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cd234f28-ff88-4327-b10e-831cfdf8ade3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-cd234f28-ff88-4327-b10e-831cfdf8ade3 {
    width: 100%;
    height: auto;
  }

  #s-cd234f28-ff88-4327-b10e-831cfdf8ade3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shogun-image {
    
    
  }


.s-cd234f28-ff88-4327-b10e-831cfdf8ade3 .shogun-image-content {
  
    align-items: center;
  
}

.s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cd234f28-ff88-4327-b10e-831cfdf8ade3 {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shogun-image-container {
      position: relative;
    }

    .s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cd234f28-ff88-4327-b10e-831cfdf8ade3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-cd234f28-ff88-4327-b10e-831cfdf8ade3 .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-cd234f28-ff88-4327-b10e-831cfdf8ade3 .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cd234f28-ff88-4327-b10e-831cfdf8ade3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-cd234f28-ff88-4327-b10e-831cfdf8ade3 {
    width: 100%;
    height: auto;
  }

  #s-cd234f28-ff88-4327-b10e-831cfdf8ade3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shogun-image {
    
    
  }


.s-cd234f28-ff88-4327-b10e-831cfdf8ade3 .shogun-image-content {
  
    align-items: center;
  
}

.s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cd234f28-ff88-4327-b10e-831cfdf8ade3 {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shogun-image-container {
      position: relative;
    }

    .s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cd234f28-ff88-4327-b10e-831cfdf8ade3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-cd234f28-ff88-4327-b10e-831cfdf8ade3 .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-cd234f28-ff88-4327-b10e-831cfdf8ade3 .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cd234f28-ff88-4327-b10e-831cfdf8ade3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-cd234f28-ff88-4327-b10e-831cfdf8ade3 {
    width: 100%;
    height: auto;
  }

  #s-cd234f28-ff88-4327-b10e-831cfdf8ade3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shogun-image {
    
    
  }


.s-cd234f28-ff88-4327-b10e-831cfdf8ade3 .shogun-image-content {
  
    align-items: center;
  
}

.s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cd234f28-ff88-4327-b10e-831cfdf8ade3 {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shogun-image-container {
      position: relative;
    }

    .s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cd234f28-ff88-4327-b10e-831cfdf8ade3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cd234f28-ff88-4327-b10e-831cfdf8ade3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-e874e52d-5aa8-4235-bd93-1edbe60f748b {
  max-width: 1080px;
aspect-ratio: 3130/2075;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-e874e52d-5aa8-4235-bd93-1edbe60f748b .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-e874e52d-5aa8-4235-bd93-1edbe60f748b .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e874e52d-5aa8-4235-bd93-1edbe60f748b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e874e52d-5aa8-4235-bd93-1edbe60f748b {
    width: 100%;
    height: auto;
  }

  #s-e874e52d-5aa8-4235-bd93-1edbe60f748b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shogun-image {
    
    
  }


.s-e874e52d-5aa8-4235-bd93-1edbe60f748b .shogun-image-content {
  
    align-items: center;
  
}

.s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e874e52d-5aa8-4235-bd93-1edbe60f748b {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shogun-image-container {
      position: relative;
    }

    .s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e874e52d-5aa8-4235-bd93-1edbe60f748b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-e874e52d-5aa8-4235-bd93-1edbe60f748b .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-e874e52d-5aa8-4235-bd93-1edbe60f748b .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e874e52d-5aa8-4235-bd93-1edbe60f748b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e874e52d-5aa8-4235-bd93-1edbe60f748b {
    width: 100%;
    height: auto;
  }

  #s-e874e52d-5aa8-4235-bd93-1edbe60f748b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shogun-image {
    
    
  }


.s-e874e52d-5aa8-4235-bd93-1edbe60f748b .shogun-image-content {
  
    align-items: center;
  
}

.s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e874e52d-5aa8-4235-bd93-1edbe60f748b {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shogun-image-container {
      position: relative;
    }

    .s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e874e52d-5aa8-4235-bd93-1edbe60f748b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-e874e52d-5aa8-4235-bd93-1edbe60f748b .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-e874e52d-5aa8-4235-bd93-1edbe60f748b .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e874e52d-5aa8-4235-bd93-1edbe60f748b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e874e52d-5aa8-4235-bd93-1edbe60f748b {
    width: 100%;
    height: auto;
  }

  #s-e874e52d-5aa8-4235-bd93-1edbe60f748b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shogun-image {
    
    
  }


.s-e874e52d-5aa8-4235-bd93-1edbe60f748b .shogun-image-content {
  
    align-items: center;
  
}

.s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e874e52d-5aa8-4235-bd93-1edbe60f748b {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shogun-image-container {
      position: relative;
    }

    .s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e874e52d-5aa8-4235-bd93-1edbe60f748b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-e874e52d-5aa8-4235-bd93-1edbe60f748b .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-e874e52d-5aa8-4235-bd93-1edbe60f748b .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e874e52d-5aa8-4235-bd93-1edbe60f748b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e874e52d-5aa8-4235-bd93-1edbe60f748b {
    width: 100%;
    height: auto;
  }

  #s-e874e52d-5aa8-4235-bd93-1edbe60f748b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shogun-image {
    
    
  }


.s-e874e52d-5aa8-4235-bd93-1edbe60f748b .shogun-image-content {
  
    align-items: center;
  
}

.s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e874e52d-5aa8-4235-bd93-1edbe60f748b {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shogun-image-container {
      position: relative;
    }

    .s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e874e52d-5aa8-4235-bd93-1edbe60f748b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-e874e52d-5aa8-4235-bd93-1edbe60f748b .shg-image-content-wrapper {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }

    #s-e874e52d-5aa8-4235-bd93-1edbe60f748b .shogun-image-link {
      aspect-ratio: 3130/2075;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e874e52d-5aa8-4235-bd93-1edbe60f748b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e874e52d-5aa8-4235-bd93-1edbe60f748b {
    width: 100%;
    height: auto;
  }

  #s-e874e52d-5aa8-4235-bd93-1edbe60f748b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shogun-image {
    
    
  }


.s-e874e52d-5aa8-4235-bd93-1edbe60f748b .shogun-image-content {
  
    align-items: center;
  
}

.s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e874e52d-5aa8-4235-bd93-1edbe60f748b {
      --shg-aspect-ratio: calc(3130/2075); 
    }

    .s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shogun-image-container {
      position: relative;
    }

    .s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e874e52d-5aa8-4235-bd93-1edbe60f748b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e874e52d-5aa8-4235-bd93-1edbe60f748b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-1848671f-f5bc-487f-8f8d-481a04f50820 hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

#s-a796a7c6-87ce-4f4a-804a-d3a4aaf2548e {
  min-height: 50px;
}








#s-a796a7c6-87ce-4f4a-804a-d3a4aaf2548e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a796a7c6-87ce-4f4a-804a-d3a4aaf2548e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3ba67e4d-7e8f-48de-99bf-4c11379a4baa {
  margin-left: 10%;
margin-right: 10%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3ba67e4d-7e8f-48de-99bf-4c11379a4baa .shogun-heading-component h1 {
  color: ;
  font-weight:  600 ;
  font-family: "Inter";
  font-style:  normal ;
  
  
  
  
}



#s-8784c141-1042-4c1e-9c7c-39566042665d {
  margin-left: 10%;
margin-right: 10%;
}

.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;
}

@media (min-width: 0px) {
[id="s-aa77ea05-7aae-4cdc-87e1-9dc9bb649104"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-aa77ea05-7aae-4cdc-87e1-9dc9bb649104"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-aa77ea05-7aae-4cdc-87e1-9dc9bb649104"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-aa77ea05-7aae-4cdc-87e1-9dc9bb649104"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 {
  margin-left: 0%;
margin-right: 0%;
max-width: 200px;
aspect-ratio: 1450/1973;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 .shg-image-content-wrapper {
      aspect-ratio: 1450/1973;
      min-width: 100%;
      height: auto;
    }

    #s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 .shogun-image-link {
      aspect-ratio: 1450/1973;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 {
    width: 100%;
    height: auto;
  }

  #s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shogun-image {
    
    
  }


.s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 .shogun-image-content {
  
    align-items: center;
  
}

.s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 {
      --shg-aspect-ratio: calc(1450/1973); 
    }

    .s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shogun-image-container {
      position: relative;
    }

    .s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 .shg-image-content-wrapper {
      aspect-ratio: 1450/1973;
      min-width: 100%;
      height: auto;
    }

    #s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 .shogun-image-link {
      aspect-ratio: 1450/1973;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 {
    width: 100%;
    height: auto;
  }

  #s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shogun-image {
    
    
  }


.s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 .shogun-image-content {
  
    align-items: center;
  
}

.s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 {
      --shg-aspect-ratio: calc(1450/1973); 
    }

    .s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shogun-image-container {
      position: relative;
    }

    .s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 .shg-image-content-wrapper {
      aspect-ratio: 1450/1973;
      min-width: 100%;
      height: auto;
    }

    #s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 .shogun-image-link {
      aspect-ratio: 1450/1973;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 {
    width: 100%;
    height: auto;
  }

  #s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shogun-image {
    
    
  }


.s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 .shogun-image-content {
  
    align-items: center;
  
}

.s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 {
      --shg-aspect-ratio: calc(1450/1973); 
    }

    .s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shogun-image-container {
      position: relative;
    }

    .s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 .shg-image-content-wrapper {
      aspect-ratio: 1450/1973;
      min-width: 100%;
      height: auto;
    }

    #s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 .shogun-image-link {
      aspect-ratio: 1450/1973;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 {
    width: 100%;
    height: auto;
  }

  #s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shogun-image {
    
    
  }


.s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 .shogun-image-content {
  
    align-items: center;
  
}

.s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 {
      --shg-aspect-ratio: calc(1450/1973); 
    }

    .s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shogun-image-container {
      position: relative;
    }

    .s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 .shg-image-content-wrapper {
      aspect-ratio: 1450/1973;
      min-width: 100%;
      height: auto;
    }

    #s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 .shogun-image-link {
      aspect-ratio: 1450/1973;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 {
    width: 100%;
    height: auto;
  }

  #s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shogun-image {
    
    
  }


.s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 .shogun-image-content {
  
    align-items: center;
  
}

.s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 {
      --shg-aspect-ratio: calc(1450/1973); 
    }

    .s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shogun-image-container {
      position: relative;
    }

    .s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c2731b22-b6b7-44c7-86bb-ee4c27d17b75 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-4f7e791f-527c-4dfb-ac2a-571bfc010f52 {
  margin-left: 10%;
margin-right: 10%;
}

#s-8c75a4a5-03f5-4fb3-b60c-f6598aa127be hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

#s-b6f291b7-62d4-4798-bb39-cf2e291824a4 hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

#s-f7edc94e-0bb4-4bdf-8a80-ac20d3f4e917 {
  padding-top: 10px;
padding-bottom: 10px;
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;
text-align: center;
}

#s-f7edc94e-0bb4-4bdf-8a80-ac20d3f4e917 .shogun-heading-component h1 {
  color: ;
  font-weight:  600 ;
  font-family: "Inter";
  font-style:  normal ;
  
  
  
  
}



#s-d4cbc05a-54c4-4f08-9fca-03193ed65b86 hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

.shogun-video {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.shogun-video-16x9 {
  padding-bottom: 56.25%;
}

.shogun-video-4x3 {
  padding-bottom: 75%;
}

.shogun-video-embed {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#s-03ce8b5a-4ecb-4a72-b263-b5d6640c2c64 {
  margin-left: 10%;
margin-right: 10%;
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;
max-width: 980px;
}

#s-6ae08452-6b9b-41d1-894e-f05e7bb5e2ba hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

#s-8248d5ab-e964-4c42-96e4-4f41f2d9eafa {
  margin-left: 10%;
margin-right: 10%;
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;
max-width: 980px;
}

#s-b0870fde-9e0e-4262-ba1e-2046d2859b1a hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

#s-7dfbff28-2fdf-46c4-ab85-a0427b232728 {
  margin-left: 10%;
margin-right: 10%;
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;
max-width: 980px;
}

#s-df4373c2-df0f-4abb-81cb-f6a8ac595e87 hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

#s-621a50e6-2e50-41bb-a3e1-66d64d5b3421 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-621a50e6-2e50-41bb-a3e1-66d64d5b3421 .shogun-heading-component h1 {
  color: ;
  font-weight:  600 ;
  font-family: "Inter";
  font-style:  normal ;
  
  
  
  
}



#s-cd99f9bb-e473-4bbb-960b-24cc5e51d98b {
  margin-left: 10%;
margin-right: 10%;
}

#s-3d5a0c31-cec7-4f33-87ca-f01b5a0e62d1 hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

#s-a55cf293-3fc5-4e02-9230-a525708d785b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a55cf293-3fc5-4e02-9230-a525708d785b .shogun-heading-component h1 {
  color: ;
  font-weight:  600 ;
  font-family: "Inter";
  font-style:  normal ;
  
  
  
  
}



#s-0f17cbd6-8bfa-4464-8030-0e44c9b31c9f {
  margin-left: 10%;
margin-right: 10%;
}

#s-93894ae7-355e-41db-b7a8-c4667326f792 {
  min-height: 50px;
}








#s-93894ae7-355e-41db-b7a8-c4667326f792 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-93894ae7-355e-41db-b7a8-c4667326f792.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4f002dc7-a7ff-40aa-8d69-cb96ad403b37 {
  margin-left: 10%;
margin-right: 10%;
}

@media (min-width: 0px) {
[id="s-4f002dc7-a7ff-40aa-8d69-cb96ad403b37"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4f002dc7-a7ff-40aa-8d69-cb96ad403b37"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4f002dc7-a7ff-40aa-8d69-cb96ad403b37"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4f002dc7-a7ff-40aa-8d69-cb96ad403b37"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-9fc51e76-818d-43c4-80b6-80def3883a68 {
  max-width: 200px;
aspect-ratio: 2/3;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-9fc51e76-818d-43c4-80b6-80def3883a68 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-9fc51e76-818d-43c4-80b6-80def3883a68 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9fc51e76-818d-43c4-80b6-80def3883a68 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-9fc51e76-818d-43c4-80b6-80def3883a68 {
    width: 100%;
    height: auto;
  }

  #s-9fc51e76-818d-43c4-80b6-80def3883a68 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9fc51e76-818d-43c4-80b6-80def3883a68.shogun-image {
    
    
  }


.s-9fc51e76-818d-43c4-80b6-80def3883a68 .shogun-image-content {
  
    align-items: center;
  
}

.s-9fc51e76-818d-43c4-80b6-80def3883a68.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9fc51e76-818d-43c4-80b6-80def3883a68.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9fc51e76-818d-43c4-80b6-80def3883a68.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9fc51e76-818d-43c4-80b6-80def3883a68 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-9fc51e76-818d-43c4-80b6-80def3883a68.shogun-image-container {
      position: relative;
    }

    .s-9fc51e76-818d-43c4-80b6-80def3883a68.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9fc51e76-818d-43c4-80b6-80def3883a68.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9fc51e76-818d-43c4-80b6-80def3883a68 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-9fc51e76-818d-43c4-80b6-80def3883a68 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-9fc51e76-818d-43c4-80b6-80def3883a68 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9fc51e76-818d-43c4-80b6-80def3883a68 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-9fc51e76-818d-43c4-80b6-80def3883a68 {
    width: 100%;
    height: auto;
  }

  #s-9fc51e76-818d-43c4-80b6-80def3883a68 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9fc51e76-818d-43c4-80b6-80def3883a68.shogun-image {
    
    
  }


.s-9fc51e76-818d-43c4-80b6-80def3883a68 .shogun-image-content {
  
    align-items: center;
  
}

.s-9fc51e76-818d-43c4-80b6-80def3883a68.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9fc51e76-818d-43c4-80b6-80def3883a68.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9fc51e76-818d-43c4-80b6-80def3883a68.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9fc51e76-818d-43c4-80b6-80def3883a68 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-9fc51e76-818d-43c4-80b6-80def3883a68.shogun-image-container {
      position: relative;
    }

    .s-9fc51e76-818d-43c4-80b6-80def3883a68.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9fc51e76-818d-43c4-80b6-80def3883a68.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9fc51e76-818d-43c4-80b6-80def3883a68 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-9fc51e76-818d-43c4-80b6-80def3883a68 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-9fc51e76-818d-43c4-80b6-80def3883a68 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9fc51e76-818d-43c4-80b6-80def3883a68 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-9fc51e76-818d-43c4-80b6-80def3883a68 {
    width: 100%;
    height: auto;
  }

  #s-9fc51e76-818d-43c4-80b6-80def3883a68 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9fc51e76-818d-43c4-80b6-80def3883a68.shogun-image {
    
    
  }


.s-9fc51e76-818d-43c4-80b6-80def3883a68 .shogun-image-content {
  
    align-items: center;
  
}

.s-9fc51e76-818d-43c4-80b6-80def3883a68.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9fc51e76-818d-43c4-80b6-80def3883a68.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9fc51e76-818d-43c4-80b6-80def3883a68.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9fc51e76-818d-43c4-80b6-80def3883a68 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-9fc51e76-818d-43c4-80b6-80def3883a68.shogun-image-container {
      position: relative;
    }

    .s-9fc51e76-818d-43c4-80b6-80def3883a68.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9fc51e76-818d-43c4-80b6-80def3883a68.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9fc51e76-818d-43c4-80b6-80def3883a68 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-9fc51e76-818d-43c4-80b6-80def3883a68 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-9fc51e76-818d-43c4-80b6-80def3883a68 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9fc51e76-818d-43c4-80b6-80def3883a68 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-9fc51e76-818d-43c4-80b6-80def3883a68 {
    width: 100%;
    height: auto;
  }

  #s-9fc51e76-818d-43c4-80b6-80def3883a68 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9fc51e76-818d-43c4-80b6-80def3883a68.shogun-image {
    
    
  }


.s-9fc51e76-818d-43c4-80b6-80def3883a68 .shogun-image-content {
  
    align-items: center;
  
}

.s-9fc51e76-818d-43c4-80b6-80def3883a68.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9fc51e76-818d-43c4-80b6-80def3883a68.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9fc51e76-818d-43c4-80b6-80def3883a68.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9fc51e76-818d-43c4-80b6-80def3883a68 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-9fc51e76-818d-43c4-80b6-80def3883a68.shogun-image-container {
      position: relative;
    }

    .s-9fc51e76-818d-43c4-80b6-80def3883a68.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9fc51e76-818d-43c4-80b6-80def3883a68.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9fc51e76-818d-43c4-80b6-80def3883a68 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-9fc51e76-818d-43c4-80b6-80def3883a68 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-9fc51e76-818d-43c4-80b6-80def3883a68 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9fc51e76-818d-43c4-80b6-80def3883a68 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-9fc51e76-818d-43c4-80b6-80def3883a68 {
    width: 100%;
    height: auto;
  }

  #s-9fc51e76-818d-43c4-80b6-80def3883a68 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9fc51e76-818d-43c4-80b6-80def3883a68.shogun-image {
    
    
  }


.s-9fc51e76-818d-43c4-80b6-80def3883a68 .shogun-image-content {
  
    align-items: center;
  
}

.s-9fc51e76-818d-43c4-80b6-80def3883a68.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9fc51e76-818d-43c4-80b6-80def3883a68.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9fc51e76-818d-43c4-80b6-80def3883a68.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9fc51e76-818d-43c4-80b6-80def3883a68 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-9fc51e76-818d-43c4-80b6-80def3883a68.shogun-image-container {
      position: relative;
    }

    .s-9fc51e76-818d-43c4-80b6-80def3883a68.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9fc51e76-818d-43c4-80b6-80def3883a68.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9fc51e76-818d-43c4-80b6-80def3883a68 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-a69695c6-cd3b-40e8-b621-4cb6a6a5c1f0 {
  margin-left: 20%;
}

#s-fb3816b5-2e62-4703-a6de-3340c98142c5 {
  min-height: 50px;
}








#s-fb3816b5-2e62-4703-a6de-3340c98142c5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fb3816b5-2e62-4703-a6de-3340c98142c5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-44447e8c-3a65-43ec-99af-26633989ccbe {
  margin-left: 10%;
margin-right: 10%;
padding-top: 10px;
padding-bottom: 10px;
max-width: 1200px;
}

#s-44447e8c-3a65-43ec-99af-26633989ccbe .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-44447e8c-3a65-43ec-99af-26633989ccbe .shg-sld-nav-button.shg-sld-left,
#s-44447e8c-3a65-43ec-99af-26633989ccbe .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b {
  max-width: 3460px;
aspect-ratio: 3460/2307;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b .shg-image-content-wrapper {
      aspect-ratio: 3460/2307;
      min-width: 100%;
      height: auto;
    }

    #s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b .shogun-image-link {
      aspect-ratio: 3460/2307;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b {
    width: 100%;
    height: auto;
  }

  #s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shogun-image {
    
    
  }


.s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b .shogun-image-content {
  
    align-items: center;
  
}

.s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b {
      --shg-aspect-ratio: calc(3460/2307); 
    }

    .s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shogun-image-container {
      position: relative;
    }

    .s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b .shg-image-content-wrapper {
      aspect-ratio: 3460/2307;
      min-width: 100%;
      height: auto;
    }

    #s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b .shogun-image-link {
      aspect-ratio: 3460/2307;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b {
    width: 100%;
    height: auto;
  }

  #s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shogun-image {
    
    
  }


.s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b .shogun-image-content {
  
    align-items: center;
  
}

.s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b {
      --shg-aspect-ratio: calc(3460/2307); 
    }

    .s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shogun-image-container {
      position: relative;
    }

    .s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b .shg-image-content-wrapper {
      aspect-ratio: 3460/2307;
      min-width: 100%;
      height: auto;
    }

    #s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b .shogun-image-link {
      aspect-ratio: 3460/2307;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b {
    width: 100%;
    height: auto;
  }

  #s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shogun-image {
    
    
  }


.s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b .shogun-image-content {
  
    align-items: center;
  
}

.s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b {
      --shg-aspect-ratio: calc(3460/2307); 
    }

    .s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shogun-image-container {
      position: relative;
    }

    .s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b .shg-image-content-wrapper {
      aspect-ratio: 3460/2307;
      min-width: 100%;
      height: auto;
    }

    #s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b .shogun-image-link {
      aspect-ratio: 3460/2307;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b {
    width: 100%;
    height: auto;
  }

  #s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shogun-image {
    
    
  }


.s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b .shogun-image-content {
  
    align-items: center;
  
}

.s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b {
      --shg-aspect-ratio: calc(3460/2307); 
    }

    .s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shogun-image-container {
      position: relative;
    }

    .s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b .shg-image-content-wrapper {
      aspect-ratio: 3460/2307;
      min-width: 100%;
      height: auto;
    }

    #s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b .shogun-image-link {
      aspect-ratio: 3460/2307;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b {
    width: 100%;
    height: auto;
  }

  #s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shogun-image {
    
    
  }


.s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b .shogun-image-content {
  
    align-items: center;
  
}

.s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b {
      --shg-aspect-ratio: calc(3460/2307); 
    }

    .s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shogun-image-container {
      position: relative;
    }

    .s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-aa420e8b-507c-4c4c-a2fe-156e7c800c9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-99acd2d8-4762-473a-91e1-e276148b2490 {
  max-width: 3224px;
aspect-ratio: 3224/2161;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-99acd2d8-4762-473a-91e1-e276148b2490 .shg-image-content-wrapper {
      aspect-ratio: 3224/2161;
      min-width: 100%;
      height: auto;
    }

    #s-99acd2d8-4762-473a-91e1-e276148b2490 .shogun-image-link {
      aspect-ratio: 3224/2161;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-99acd2d8-4762-473a-91e1-e276148b2490 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-99acd2d8-4762-473a-91e1-e276148b2490 {
    width: 100%;
    height: auto;
  }

  #s-99acd2d8-4762-473a-91e1-e276148b2490 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-99acd2d8-4762-473a-91e1-e276148b2490.shogun-image {
    
    
  }


.s-99acd2d8-4762-473a-91e1-e276148b2490 .shogun-image-content {
  
    align-items: center;
  
}

.s-99acd2d8-4762-473a-91e1-e276148b2490.shg-align-container {
  display: flex;
  justify-content: center
}

.s-99acd2d8-4762-473a-91e1-e276148b2490.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99acd2d8-4762-473a-91e1-e276148b2490.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-99acd2d8-4762-473a-91e1-e276148b2490 {
      --shg-aspect-ratio: calc(3224/2161); 
    }

    .s-99acd2d8-4762-473a-91e1-e276148b2490.shogun-image-container {
      position: relative;
    }

    .s-99acd2d8-4762-473a-91e1-e276148b2490.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-99acd2d8-4762-473a-91e1-e276148b2490.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-99acd2d8-4762-473a-91e1-e276148b2490 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-99acd2d8-4762-473a-91e1-e276148b2490 .shg-image-content-wrapper {
      aspect-ratio: 3224/2161;
      min-width: 100%;
      height: auto;
    }

    #s-99acd2d8-4762-473a-91e1-e276148b2490 .shogun-image-link {
      aspect-ratio: 3224/2161;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-99acd2d8-4762-473a-91e1-e276148b2490 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-99acd2d8-4762-473a-91e1-e276148b2490 {
    width: 100%;
    height: auto;
  }

  #s-99acd2d8-4762-473a-91e1-e276148b2490 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-99acd2d8-4762-473a-91e1-e276148b2490.shogun-image {
    
    
  }


.s-99acd2d8-4762-473a-91e1-e276148b2490 .shogun-image-content {
  
    align-items: center;
  
}

.s-99acd2d8-4762-473a-91e1-e276148b2490.shg-align-container {
  display: flex;
  justify-content: center
}

.s-99acd2d8-4762-473a-91e1-e276148b2490.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99acd2d8-4762-473a-91e1-e276148b2490.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-99acd2d8-4762-473a-91e1-e276148b2490 {
      --shg-aspect-ratio: calc(3224/2161); 
    }

    .s-99acd2d8-4762-473a-91e1-e276148b2490.shogun-image-container {
      position: relative;
    }

    .s-99acd2d8-4762-473a-91e1-e276148b2490.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-99acd2d8-4762-473a-91e1-e276148b2490.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-99acd2d8-4762-473a-91e1-e276148b2490 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-99acd2d8-4762-473a-91e1-e276148b2490 .shg-image-content-wrapper {
      aspect-ratio: 3224/2161;
      min-width: 100%;
      height: auto;
    }

    #s-99acd2d8-4762-473a-91e1-e276148b2490 .shogun-image-link {
      aspect-ratio: 3224/2161;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-99acd2d8-4762-473a-91e1-e276148b2490 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-99acd2d8-4762-473a-91e1-e276148b2490 {
    width: 100%;
    height: auto;
  }

  #s-99acd2d8-4762-473a-91e1-e276148b2490 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-99acd2d8-4762-473a-91e1-e276148b2490.shogun-image {
    
    
  }


.s-99acd2d8-4762-473a-91e1-e276148b2490 .shogun-image-content {
  
    align-items: center;
  
}

.s-99acd2d8-4762-473a-91e1-e276148b2490.shg-align-container {
  display: flex;
  justify-content: center
}

.s-99acd2d8-4762-473a-91e1-e276148b2490.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99acd2d8-4762-473a-91e1-e276148b2490.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-99acd2d8-4762-473a-91e1-e276148b2490 {
      --shg-aspect-ratio: calc(3224/2161); 
    }

    .s-99acd2d8-4762-473a-91e1-e276148b2490.shogun-image-container {
      position: relative;
    }

    .s-99acd2d8-4762-473a-91e1-e276148b2490.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-99acd2d8-4762-473a-91e1-e276148b2490.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-99acd2d8-4762-473a-91e1-e276148b2490 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-99acd2d8-4762-473a-91e1-e276148b2490 .shg-image-content-wrapper {
      aspect-ratio: 3224/2161;
      min-width: 100%;
      height: auto;
    }

    #s-99acd2d8-4762-473a-91e1-e276148b2490 .shogun-image-link {
      aspect-ratio: 3224/2161;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-99acd2d8-4762-473a-91e1-e276148b2490 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-99acd2d8-4762-473a-91e1-e276148b2490 {
    width: 100%;
    height: auto;
  }

  #s-99acd2d8-4762-473a-91e1-e276148b2490 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-99acd2d8-4762-473a-91e1-e276148b2490.shogun-image {
    
    
  }


.s-99acd2d8-4762-473a-91e1-e276148b2490 .shogun-image-content {
  
    align-items: center;
  
}

.s-99acd2d8-4762-473a-91e1-e276148b2490.shg-align-container {
  display: flex;
  justify-content: center
}

.s-99acd2d8-4762-473a-91e1-e276148b2490.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99acd2d8-4762-473a-91e1-e276148b2490.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-99acd2d8-4762-473a-91e1-e276148b2490 {
      --shg-aspect-ratio: calc(3224/2161); 
    }

    .s-99acd2d8-4762-473a-91e1-e276148b2490.shogun-image-container {
      position: relative;
    }

    .s-99acd2d8-4762-473a-91e1-e276148b2490.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-99acd2d8-4762-473a-91e1-e276148b2490.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-99acd2d8-4762-473a-91e1-e276148b2490 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-99acd2d8-4762-473a-91e1-e276148b2490 .shg-image-content-wrapper {
      aspect-ratio: 3224/2161;
      min-width: 100%;
      height: auto;
    }

    #s-99acd2d8-4762-473a-91e1-e276148b2490 .shogun-image-link {
      aspect-ratio: 3224/2161;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-99acd2d8-4762-473a-91e1-e276148b2490 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-99acd2d8-4762-473a-91e1-e276148b2490 {
    width: 100%;
    height: auto;
  }

  #s-99acd2d8-4762-473a-91e1-e276148b2490 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-99acd2d8-4762-473a-91e1-e276148b2490.shogun-image {
    
    
  }


.s-99acd2d8-4762-473a-91e1-e276148b2490 .shogun-image-content {
  
    align-items: center;
  
}

.s-99acd2d8-4762-473a-91e1-e276148b2490.shg-align-container {
  display: flex;
  justify-content: center
}

.s-99acd2d8-4762-473a-91e1-e276148b2490.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99acd2d8-4762-473a-91e1-e276148b2490.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-99acd2d8-4762-473a-91e1-e276148b2490 {
      --shg-aspect-ratio: calc(3224/2161); 
    }

    .s-99acd2d8-4762-473a-91e1-e276148b2490.shogun-image-container {
      position: relative;
    }

    .s-99acd2d8-4762-473a-91e1-e276148b2490.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-99acd2d8-4762-473a-91e1-e276148b2490.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-99acd2d8-4762-473a-91e1-e276148b2490 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-734d1f15-aaa1-45e7-a341-d836cb0cb66b {
  max-width: 3355px;
aspect-ratio: 3355/2162;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-734d1f15-aaa1-45e7-a341-d836cb0cb66b .shg-image-content-wrapper {
      aspect-ratio: 3355/2162;
      min-width: 100%;
      height: auto;
    }

    #s-734d1f15-aaa1-45e7-a341-d836cb0cb66b .shogun-image-link {
      aspect-ratio: 3355/2162;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-734d1f15-aaa1-45e7-a341-d836cb0cb66b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-734d1f15-aaa1-45e7-a341-d836cb0cb66b {
    width: 100%;
    height: auto;
  }

  #s-734d1f15-aaa1-45e7-a341-d836cb0cb66b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shogun-image {
    
    
  }


.s-734d1f15-aaa1-45e7-a341-d836cb0cb66b .shogun-image-content {
  
    align-items: center;
  
}

.s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-734d1f15-aaa1-45e7-a341-d836cb0cb66b {
      --shg-aspect-ratio: calc(3355/2162); 
    }

    .s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shogun-image-container {
      position: relative;
    }

    .s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-734d1f15-aaa1-45e7-a341-d836cb0cb66b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-734d1f15-aaa1-45e7-a341-d836cb0cb66b .shg-image-content-wrapper {
      aspect-ratio: 3355/2162;
      min-width: 100%;
      height: auto;
    }

    #s-734d1f15-aaa1-45e7-a341-d836cb0cb66b .shogun-image-link {
      aspect-ratio: 3355/2162;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-734d1f15-aaa1-45e7-a341-d836cb0cb66b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-734d1f15-aaa1-45e7-a341-d836cb0cb66b {
    width: 100%;
    height: auto;
  }

  #s-734d1f15-aaa1-45e7-a341-d836cb0cb66b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shogun-image {
    
    
  }


.s-734d1f15-aaa1-45e7-a341-d836cb0cb66b .shogun-image-content {
  
    align-items: center;
  
}

.s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-734d1f15-aaa1-45e7-a341-d836cb0cb66b {
      --shg-aspect-ratio: calc(3355/2162); 
    }

    .s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shogun-image-container {
      position: relative;
    }

    .s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-734d1f15-aaa1-45e7-a341-d836cb0cb66b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-734d1f15-aaa1-45e7-a341-d836cb0cb66b .shg-image-content-wrapper {
      aspect-ratio: 3355/2162;
      min-width: 100%;
      height: auto;
    }

    #s-734d1f15-aaa1-45e7-a341-d836cb0cb66b .shogun-image-link {
      aspect-ratio: 3355/2162;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-734d1f15-aaa1-45e7-a341-d836cb0cb66b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-734d1f15-aaa1-45e7-a341-d836cb0cb66b {
    width: 100%;
    height: auto;
  }

  #s-734d1f15-aaa1-45e7-a341-d836cb0cb66b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shogun-image {
    
    
  }


.s-734d1f15-aaa1-45e7-a341-d836cb0cb66b .shogun-image-content {
  
    align-items: center;
  
}

.s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-734d1f15-aaa1-45e7-a341-d836cb0cb66b {
      --shg-aspect-ratio: calc(3355/2162); 
    }

    .s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shogun-image-container {
      position: relative;
    }

    .s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-734d1f15-aaa1-45e7-a341-d836cb0cb66b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-734d1f15-aaa1-45e7-a341-d836cb0cb66b .shg-image-content-wrapper {
      aspect-ratio: 3355/2162;
      min-width: 100%;
      height: auto;
    }

    #s-734d1f15-aaa1-45e7-a341-d836cb0cb66b .shogun-image-link {
      aspect-ratio: 3355/2162;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-734d1f15-aaa1-45e7-a341-d836cb0cb66b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-734d1f15-aaa1-45e7-a341-d836cb0cb66b {
    width: 100%;
    height: auto;
  }

  #s-734d1f15-aaa1-45e7-a341-d836cb0cb66b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shogun-image {
    
    
  }


.s-734d1f15-aaa1-45e7-a341-d836cb0cb66b .shogun-image-content {
  
    align-items: center;
  
}

.s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-734d1f15-aaa1-45e7-a341-d836cb0cb66b {
      --shg-aspect-ratio: calc(3355/2162); 
    }

    .s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shogun-image-container {
      position: relative;
    }

    .s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-734d1f15-aaa1-45e7-a341-d836cb0cb66b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-734d1f15-aaa1-45e7-a341-d836cb0cb66b .shg-image-content-wrapper {
      aspect-ratio: 3355/2162;
      min-width: 100%;
      height: auto;
    }

    #s-734d1f15-aaa1-45e7-a341-d836cb0cb66b .shogun-image-link {
      aspect-ratio: 3355/2162;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-734d1f15-aaa1-45e7-a341-d836cb0cb66b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-734d1f15-aaa1-45e7-a341-d836cb0cb66b {
    width: 100%;
    height: auto;
  }

  #s-734d1f15-aaa1-45e7-a341-d836cb0cb66b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shogun-image {
    
    
  }


.s-734d1f15-aaa1-45e7-a341-d836cb0cb66b .shogun-image-content {
  
    align-items: center;
  
}

.s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-734d1f15-aaa1-45e7-a341-d836cb0cb66b {
      --shg-aspect-ratio: calc(3355/2162); 
    }

    .s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shogun-image-container {
      position: relative;
    }

    .s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-734d1f15-aaa1-45e7-a341-d836cb0cb66b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-734d1f15-aaa1-45e7-a341-d836cb0cb66b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 {
  max-width: 1200px;
aspect-ratio: 3090/2060;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 .shg-image-content-wrapper {
      aspect-ratio: 3090/2060;
      min-width: 100%;
      height: auto;
    }

    #s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 .shogun-image-link {
      aspect-ratio: 3090/2060;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 {
    width: 100%;
    height: auto;
  }

  #s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shogun-image {
    
    
  }


.s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 .shogun-image-content {
  
    align-items: center;
  
}

.s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 {
      --shg-aspect-ratio: calc(3090/2060); 
    }

    .s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shogun-image-container {
      position: relative;
    }

    .s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 .shg-image-content-wrapper {
      aspect-ratio: 3090/2060;
      min-width: 100%;
      height: auto;
    }

    #s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 .shogun-image-link {
      aspect-ratio: 3090/2060;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 {
    width: 100%;
    height: auto;
  }

  #s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shogun-image {
    
    
  }


.s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 .shogun-image-content {
  
    align-items: center;
  
}

.s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 {
      --shg-aspect-ratio: calc(3090/2060); 
    }

    .s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shogun-image-container {
      position: relative;
    }

    .s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 .shg-image-content-wrapper {
      aspect-ratio: 3090/2060;
      min-width: 100%;
      height: auto;
    }

    #s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 .shogun-image-link {
      aspect-ratio: 3090/2060;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 {
    width: 100%;
    height: auto;
  }

  #s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shogun-image {
    
    
  }


.s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 .shogun-image-content {
  
    align-items: center;
  
}

.s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 {
      --shg-aspect-ratio: calc(3090/2060); 
    }

    .s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shogun-image-container {
      position: relative;
    }

    .s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 .shg-image-content-wrapper {
      aspect-ratio: 3090/2060;
      min-width: 100%;
      height: auto;
    }

    #s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 .shogun-image-link {
      aspect-ratio: 3090/2060;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 {
    width: 100%;
    height: auto;
  }

  #s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shogun-image {
    
    
  }


.s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 .shogun-image-content {
  
    align-items: center;
  
}

.s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 {
      --shg-aspect-ratio: calc(3090/2060); 
    }

    .s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shogun-image-container {
      position: relative;
    }

    .s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 .shg-image-content-wrapper {
      aspect-ratio: 3090/2060;
      min-width: 100%;
      height: auto;
    }

    #s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 .shogun-image-link {
      aspect-ratio: 3090/2060;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 {
    width: 100%;
    height: auto;
  }

  #s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shogun-image {
    
    
  }


.s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 .shogun-image-content {
  
    align-items: center;
  
}

.s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 {
      --shg-aspect-ratio: calc(3090/2060); 
    }

    .s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shogun-image-container {
      position: relative;
    }

    .s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-788f7a80-5c0b-4dd6-9811-71c6ec4beec5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 {
  max-width: 3224px;
aspect-ratio: 3224/2161;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 .shg-image-content-wrapper {
      aspect-ratio: 3224/2161;
      min-width: 100%;
      height: auto;
    }

    #s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 .shogun-image-link {
      aspect-ratio: 3224/2161;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 {
    width: 100%;
    height: auto;
  }

  #s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shogun-image {
    
    
  }


.s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 .shogun-image-content {
  
    align-items: center;
  
}

.s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 {
      --shg-aspect-ratio: calc(3224/2161); 
    }

    .s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shogun-image-container {
      position: relative;
    }

    .s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 .shg-image-content-wrapper {
      aspect-ratio: 3224/2161;
      min-width: 100%;
      height: auto;
    }

    #s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 .shogun-image-link {
      aspect-ratio: 3224/2161;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 {
    width: 100%;
    height: auto;
  }

  #s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shogun-image {
    
    
  }


.s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 .shogun-image-content {
  
    align-items: center;
  
}

.s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 {
      --shg-aspect-ratio: calc(3224/2161); 
    }

    .s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shogun-image-container {
      position: relative;
    }

    .s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 .shg-image-content-wrapper {
      aspect-ratio: 3224/2161;
      min-width: 100%;
      height: auto;
    }

    #s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 .shogun-image-link {
      aspect-ratio: 3224/2161;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 {
    width: 100%;
    height: auto;
  }

  #s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shogun-image {
    
    
  }


.s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 .shogun-image-content {
  
    align-items: center;
  
}

.s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 {
      --shg-aspect-ratio: calc(3224/2161); 
    }

    .s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shogun-image-container {
      position: relative;
    }

    .s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 .shg-image-content-wrapper {
      aspect-ratio: 3224/2161;
      min-width: 100%;
      height: auto;
    }

    #s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 .shogun-image-link {
      aspect-ratio: 3224/2161;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 {
    width: 100%;
    height: auto;
  }

  #s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shogun-image {
    
    
  }


.s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 .shogun-image-content {
  
    align-items: center;
  
}

.s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 {
      --shg-aspect-ratio: calc(3224/2161); 
    }

    .s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shogun-image-container {
      position: relative;
    }

    .s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 .shg-image-content-wrapper {
      aspect-ratio: 3224/2161;
      min-width: 100%;
      height: auto;
    }

    #s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 .shogun-image-link {
      aspect-ratio: 3224/2161;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 {
    width: 100%;
    height: auto;
  }

  #s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shogun-image {
    
    
  }


.s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 .shogun-image-content {
  
    align-items: center;
  
}

.s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 {
      --shg-aspect-ratio: calc(3224/2161); 
    }

    .s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shogun-image-container {
      position: relative;
    }

    .s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83295894-85a0-47e8-8c4f-6f4fdec7afc3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83295894-85a0-47e8-8c4f-6f4fdec7afc3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-d5358279-17e7-4233-9b04-c2a483c6ddea {
  max-width: 2000px;
aspect-ratio: 3224/2161;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-d5358279-17e7-4233-9b04-c2a483c6ddea .shg-image-content-wrapper {
      aspect-ratio: 3224/2161;
      min-width: 100%;
      height: auto;
    }

    #s-d5358279-17e7-4233-9b04-c2a483c6ddea .shogun-image-link {
      aspect-ratio: 3224/2161;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d5358279-17e7-4233-9b04-c2a483c6ddea .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-d5358279-17e7-4233-9b04-c2a483c6ddea {
    width: 100%;
    height: auto;
  }

  #s-d5358279-17e7-4233-9b04-c2a483c6ddea img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d5358279-17e7-4233-9b04-c2a483c6ddea.shogun-image {
    
    
  }


.s-d5358279-17e7-4233-9b04-c2a483c6ddea .shogun-image-content {
  
    align-items: center;
  
}

.s-d5358279-17e7-4233-9b04-c2a483c6ddea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d5358279-17e7-4233-9b04-c2a483c6ddea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d5358279-17e7-4233-9b04-c2a483c6ddea.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d5358279-17e7-4233-9b04-c2a483c6ddea {
      --shg-aspect-ratio: calc(3224/2161); 
    }

    .s-d5358279-17e7-4233-9b04-c2a483c6ddea.shogun-image-container {
      position: relative;
    }

    .s-d5358279-17e7-4233-9b04-c2a483c6ddea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d5358279-17e7-4233-9b04-c2a483c6ddea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d5358279-17e7-4233-9b04-c2a483c6ddea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-d5358279-17e7-4233-9b04-c2a483c6ddea .shg-image-content-wrapper {
      aspect-ratio: 3224/2161;
      min-width: 100%;
      height: auto;
    }

    #s-d5358279-17e7-4233-9b04-c2a483c6ddea .shogun-image-link {
      aspect-ratio: 3224/2161;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d5358279-17e7-4233-9b04-c2a483c6ddea .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-d5358279-17e7-4233-9b04-c2a483c6ddea {
    width: 100%;
    height: auto;
  }

  #s-d5358279-17e7-4233-9b04-c2a483c6ddea img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d5358279-17e7-4233-9b04-c2a483c6ddea.shogun-image {
    
    
  }


.s-d5358279-17e7-4233-9b04-c2a483c6ddea .shogun-image-content {
  
    align-items: center;
  
}

.s-d5358279-17e7-4233-9b04-c2a483c6ddea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d5358279-17e7-4233-9b04-c2a483c6ddea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d5358279-17e7-4233-9b04-c2a483c6ddea.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d5358279-17e7-4233-9b04-c2a483c6ddea {
      --shg-aspect-ratio: calc(3224/2161); 
    }

    .s-d5358279-17e7-4233-9b04-c2a483c6ddea.shogun-image-container {
      position: relative;
    }

    .s-d5358279-17e7-4233-9b04-c2a483c6ddea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d5358279-17e7-4233-9b04-c2a483c6ddea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d5358279-17e7-4233-9b04-c2a483c6ddea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-d5358279-17e7-4233-9b04-c2a483c6ddea .shg-image-content-wrapper {
      aspect-ratio: 3224/2161;
      min-width: 100%;
      height: auto;
    }

    #s-d5358279-17e7-4233-9b04-c2a483c6ddea .shogun-image-link {
      aspect-ratio: 3224/2161;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d5358279-17e7-4233-9b04-c2a483c6ddea .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-d5358279-17e7-4233-9b04-c2a483c6ddea {
    width: 100%;
    height: auto;
  }

  #s-d5358279-17e7-4233-9b04-c2a483c6ddea img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d5358279-17e7-4233-9b04-c2a483c6ddea.shogun-image {
    
    
  }


.s-d5358279-17e7-4233-9b04-c2a483c6ddea .shogun-image-content {
  
    align-items: center;
  
}

.s-d5358279-17e7-4233-9b04-c2a483c6ddea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d5358279-17e7-4233-9b04-c2a483c6ddea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d5358279-17e7-4233-9b04-c2a483c6ddea.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d5358279-17e7-4233-9b04-c2a483c6ddea {
      --shg-aspect-ratio: calc(3224/2161); 
    }

    .s-d5358279-17e7-4233-9b04-c2a483c6ddea.shogun-image-container {
      position: relative;
    }

    .s-d5358279-17e7-4233-9b04-c2a483c6ddea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d5358279-17e7-4233-9b04-c2a483c6ddea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d5358279-17e7-4233-9b04-c2a483c6ddea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-d5358279-17e7-4233-9b04-c2a483c6ddea .shg-image-content-wrapper {
      aspect-ratio: 3224/2161;
      min-width: 100%;
      height: auto;
    }

    #s-d5358279-17e7-4233-9b04-c2a483c6ddea .shogun-image-link {
      aspect-ratio: 3224/2161;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d5358279-17e7-4233-9b04-c2a483c6ddea .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-d5358279-17e7-4233-9b04-c2a483c6ddea {
    width: 100%;
    height: auto;
  }

  #s-d5358279-17e7-4233-9b04-c2a483c6ddea img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d5358279-17e7-4233-9b04-c2a483c6ddea.shogun-image {
    
    
  }


.s-d5358279-17e7-4233-9b04-c2a483c6ddea .shogun-image-content {
  
    align-items: center;
  
}

.s-d5358279-17e7-4233-9b04-c2a483c6ddea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d5358279-17e7-4233-9b04-c2a483c6ddea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d5358279-17e7-4233-9b04-c2a483c6ddea.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d5358279-17e7-4233-9b04-c2a483c6ddea {
      --shg-aspect-ratio: calc(3224/2161); 
    }

    .s-d5358279-17e7-4233-9b04-c2a483c6ddea.shogun-image-container {
      position: relative;
    }

    .s-d5358279-17e7-4233-9b04-c2a483c6ddea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d5358279-17e7-4233-9b04-c2a483c6ddea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d5358279-17e7-4233-9b04-c2a483c6ddea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-d5358279-17e7-4233-9b04-c2a483c6ddea .shg-image-content-wrapper {
      aspect-ratio: 3224/2161;
      min-width: 100%;
      height: auto;
    }

    #s-d5358279-17e7-4233-9b04-c2a483c6ddea .shogun-image-link {
      aspect-ratio: 3224/2161;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d5358279-17e7-4233-9b04-c2a483c6ddea .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-d5358279-17e7-4233-9b04-c2a483c6ddea {
    width: 100%;
    height: auto;
  }

  #s-d5358279-17e7-4233-9b04-c2a483c6ddea img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d5358279-17e7-4233-9b04-c2a483c6ddea.shogun-image {
    
    
  }


.s-d5358279-17e7-4233-9b04-c2a483c6ddea .shogun-image-content {
  
    align-items: center;
  
}

.s-d5358279-17e7-4233-9b04-c2a483c6ddea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d5358279-17e7-4233-9b04-c2a483c6ddea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d5358279-17e7-4233-9b04-c2a483c6ddea.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d5358279-17e7-4233-9b04-c2a483c6ddea {
      --shg-aspect-ratio: calc(3224/2161); 
    }

    .s-d5358279-17e7-4233-9b04-c2a483c6ddea.shogun-image-container {
      position: relative;
    }

    .s-d5358279-17e7-4233-9b04-c2a483c6ddea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d5358279-17e7-4233-9b04-c2a483c6ddea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d5358279-17e7-4233-9b04-c2a483c6ddea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-83c4c16b-6613-4f6e-a799-72217e43ef66 hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

#s-9df119ed-0261-4d18-a4af-aabce87e3de5 {
  min-height: 50px;
}








#s-9df119ed-0261-4d18-a4af-aabce87e3de5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9df119ed-0261-4d18-a4af-aabce87e3de5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2f6ae02a-7dc6-4037-8b66-1dd6c9b6a1a3 {
  min-height: 50px;
}








#s-2f6ae02a-7dc6-4037-8b66-1dd6c9b6a1a3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2f6ae02a-7dc6-4037-8b66-1dd6c9b6a1a3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-45363b7c-14f4-46c0-b67b-b109dece6d2c {
  margin-left: 10%;
margin-right: 10%;
}

@media (min-width: 0px) {
[id="s-45363b7c-14f4-46c0-b67b-b109dece6d2c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-45363b7c-14f4-46c0-b67b-b109dece6d2c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-45363b7c-14f4-46c0-b67b-b109dece6d2c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-45363b7c-14f4-46c0-b67b-b109dece6d2c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-e7973e14-56ca-4fb0-a031-5e10abb6493e {
  max-width: 200px;
aspect-ratio: 2/3;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-e7973e14-56ca-4fb0-a031-5e10abb6493e .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-e7973e14-56ca-4fb0-a031-5e10abb6493e .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e7973e14-56ca-4fb0-a031-5e10abb6493e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e7973e14-56ca-4fb0-a031-5e10abb6493e {
    width: 100%;
    height: auto;
  }

  #s-e7973e14-56ca-4fb0-a031-5e10abb6493e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shogun-image {
    
    
  }


.s-e7973e14-56ca-4fb0-a031-5e10abb6493e .shogun-image-content {
  
    align-items: center;
  
}

.s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e7973e14-56ca-4fb0-a031-5e10abb6493e {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shogun-image-container {
      position: relative;
    }

    .s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e7973e14-56ca-4fb0-a031-5e10abb6493e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-e7973e14-56ca-4fb0-a031-5e10abb6493e .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-e7973e14-56ca-4fb0-a031-5e10abb6493e .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e7973e14-56ca-4fb0-a031-5e10abb6493e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e7973e14-56ca-4fb0-a031-5e10abb6493e {
    width: 100%;
    height: auto;
  }

  #s-e7973e14-56ca-4fb0-a031-5e10abb6493e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shogun-image {
    
    
  }


.s-e7973e14-56ca-4fb0-a031-5e10abb6493e .shogun-image-content {
  
    align-items: center;
  
}

.s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e7973e14-56ca-4fb0-a031-5e10abb6493e {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shogun-image-container {
      position: relative;
    }

    .s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e7973e14-56ca-4fb0-a031-5e10abb6493e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-e7973e14-56ca-4fb0-a031-5e10abb6493e .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-e7973e14-56ca-4fb0-a031-5e10abb6493e .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e7973e14-56ca-4fb0-a031-5e10abb6493e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e7973e14-56ca-4fb0-a031-5e10abb6493e {
    width: 100%;
    height: auto;
  }

  #s-e7973e14-56ca-4fb0-a031-5e10abb6493e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shogun-image {
    
    
  }


.s-e7973e14-56ca-4fb0-a031-5e10abb6493e .shogun-image-content {
  
    align-items: center;
  
}

.s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e7973e14-56ca-4fb0-a031-5e10abb6493e {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shogun-image-container {
      position: relative;
    }

    .s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e7973e14-56ca-4fb0-a031-5e10abb6493e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-e7973e14-56ca-4fb0-a031-5e10abb6493e .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-e7973e14-56ca-4fb0-a031-5e10abb6493e .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e7973e14-56ca-4fb0-a031-5e10abb6493e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e7973e14-56ca-4fb0-a031-5e10abb6493e {
    width: 100%;
    height: auto;
  }

  #s-e7973e14-56ca-4fb0-a031-5e10abb6493e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shogun-image {
    
    
  }


.s-e7973e14-56ca-4fb0-a031-5e10abb6493e .shogun-image-content {
  
    align-items: center;
  
}

.s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e7973e14-56ca-4fb0-a031-5e10abb6493e {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shogun-image-container {
      position: relative;
    }

    .s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e7973e14-56ca-4fb0-a031-5e10abb6493e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-e7973e14-56ca-4fb0-a031-5e10abb6493e .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-e7973e14-56ca-4fb0-a031-5e10abb6493e .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e7973e14-56ca-4fb0-a031-5e10abb6493e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e7973e14-56ca-4fb0-a031-5e10abb6493e {
    width: 100%;
    height: auto;
  }

  #s-e7973e14-56ca-4fb0-a031-5e10abb6493e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shogun-image {
    
    
  }


.s-e7973e14-56ca-4fb0-a031-5e10abb6493e .shogun-image-content {
  
    align-items: center;
  
}

.s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e7973e14-56ca-4fb0-a031-5e10abb6493e {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shogun-image-container {
      position: relative;
    }

    .s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e7973e14-56ca-4fb0-a031-5e10abb6493e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e7973e14-56ca-4fb0-a031-5e10abb6493e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-8c74b37e-2bac-4286-b4f4-afc0bfd401ac {
  margin-left: 20%;
}

#s-d0939815-bfd4-4434-919b-2e5b791a978b {
  min-height: 50px;
max-width: 1200px;
}








#s-d0939815-bfd4-4434-919b-2e5b791a978b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d0939815-bfd4-4434-919b-2e5b791a978b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bdaa1a5d-a889-4639-9fb4-9e7715939f53 {
  margin-left: 10%;
margin-right: 10%;
padding-top: 10px;
padding-bottom: 10px;
}

#s-bdaa1a5d-a889-4639-9fb4-9e7715939f53 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-bdaa1a5d-a889-4639-9fb4-9e7715939f53 .shg-sld-nav-button.shg-sld-left,
#s-bdaa1a5d-a889-4639-9fb4-9e7715939f53 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-f1132c92-5586-4e61-b2e4-8afcee952594 {
  max-width: 2000px;
aspect-ratio: 2000/1341;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-f1132c92-5586-4e61-b2e4-8afcee952594 .shg-image-content-wrapper {
      aspect-ratio: 2000/1341;
      min-width: 100%;
      height: auto;
    }

    #s-f1132c92-5586-4e61-b2e4-8afcee952594 .shogun-image-link {
      aspect-ratio: 2000/1341;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f1132c92-5586-4e61-b2e4-8afcee952594 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f1132c92-5586-4e61-b2e4-8afcee952594 {
    width: 100%;
    height: auto;
  }

  #s-f1132c92-5586-4e61-b2e4-8afcee952594 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f1132c92-5586-4e61-b2e4-8afcee952594.shogun-image {
    
    
  }


.s-f1132c92-5586-4e61-b2e4-8afcee952594 .shogun-image-content {
  
    align-items: center;
  
}

.s-f1132c92-5586-4e61-b2e4-8afcee952594.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f1132c92-5586-4e61-b2e4-8afcee952594.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f1132c92-5586-4e61-b2e4-8afcee952594.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f1132c92-5586-4e61-b2e4-8afcee952594 {
      --shg-aspect-ratio: calc(2000/1341); 
    }

    .s-f1132c92-5586-4e61-b2e4-8afcee952594.shogun-image-container {
      position: relative;
    }

    .s-f1132c92-5586-4e61-b2e4-8afcee952594.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f1132c92-5586-4e61-b2e4-8afcee952594.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f1132c92-5586-4e61-b2e4-8afcee952594 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-f1132c92-5586-4e61-b2e4-8afcee952594 .shg-image-content-wrapper {
      aspect-ratio: 2000/1341;
      min-width: 100%;
      height: auto;
    }

    #s-f1132c92-5586-4e61-b2e4-8afcee952594 .shogun-image-link {
      aspect-ratio: 2000/1341;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f1132c92-5586-4e61-b2e4-8afcee952594 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f1132c92-5586-4e61-b2e4-8afcee952594 {
    width: 100%;
    height: auto;
  }

  #s-f1132c92-5586-4e61-b2e4-8afcee952594 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f1132c92-5586-4e61-b2e4-8afcee952594.shogun-image {
    
    
  }


.s-f1132c92-5586-4e61-b2e4-8afcee952594 .shogun-image-content {
  
    align-items: center;
  
}

.s-f1132c92-5586-4e61-b2e4-8afcee952594.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f1132c92-5586-4e61-b2e4-8afcee952594.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f1132c92-5586-4e61-b2e4-8afcee952594.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f1132c92-5586-4e61-b2e4-8afcee952594 {
      --shg-aspect-ratio: calc(2000/1341); 
    }

    .s-f1132c92-5586-4e61-b2e4-8afcee952594.shogun-image-container {
      position: relative;
    }

    .s-f1132c92-5586-4e61-b2e4-8afcee952594.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f1132c92-5586-4e61-b2e4-8afcee952594.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f1132c92-5586-4e61-b2e4-8afcee952594 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-f1132c92-5586-4e61-b2e4-8afcee952594 .shg-image-content-wrapper {
      aspect-ratio: 2000/1341;
      min-width: 100%;
      height: auto;
    }

    #s-f1132c92-5586-4e61-b2e4-8afcee952594 .shogun-image-link {
      aspect-ratio: 2000/1341;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f1132c92-5586-4e61-b2e4-8afcee952594 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f1132c92-5586-4e61-b2e4-8afcee952594 {
    width: 100%;
    height: auto;
  }

  #s-f1132c92-5586-4e61-b2e4-8afcee952594 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f1132c92-5586-4e61-b2e4-8afcee952594.shogun-image {
    
    
  }


.s-f1132c92-5586-4e61-b2e4-8afcee952594 .shogun-image-content {
  
    align-items: center;
  
}

.s-f1132c92-5586-4e61-b2e4-8afcee952594.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f1132c92-5586-4e61-b2e4-8afcee952594.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f1132c92-5586-4e61-b2e4-8afcee952594.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f1132c92-5586-4e61-b2e4-8afcee952594 {
      --shg-aspect-ratio: calc(2000/1341); 
    }

    .s-f1132c92-5586-4e61-b2e4-8afcee952594.shogun-image-container {
      position: relative;
    }

    .s-f1132c92-5586-4e61-b2e4-8afcee952594.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f1132c92-5586-4e61-b2e4-8afcee952594.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f1132c92-5586-4e61-b2e4-8afcee952594 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-f1132c92-5586-4e61-b2e4-8afcee952594 .shg-image-content-wrapper {
      aspect-ratio: 2000/1341;
      min-width: 100%;
      height: auto;
    }

    #s-f1132c92-5586-4e61-b2e4-8afcee952594 .shogun-image-link {
      aspect-ratio: 2000/1341;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f1132c92-5586-4e61-b2e4-8afcee952594 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f1132c92-5586-4e61-b2e4-8afcee952594 {
    width: 100%;
    height: auto;
  }

  #s-f1132c92-5586-4e61-b2e4-8afcee952594 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f1132c92-5586-4e61-b2e4-8afcee952594.shogun-image {
    
    
  }


.s-f1132c92-5586-4e61-b2e4-8afcee952594 .shogun-image-content {
  
    align-items: center;
  
}

.s-f1132c92-5586-4e61-b2e4-8afcee952594.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f1132c92-5586-4e61-b2e4-8afcee952594.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f1132c92-5586-4e61-b2e4-8afcee952594.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f1132c92-5586-4e61-b2e4-8afcee952594 {
      --shg-aspect-ratio: calc(2000/1341); 
    }

    .s-f1132c92-5586-4e61-b2e4-8afcee952594.shogun-image-container {
      position: relative;
    }

    .s-f1132c92-5586-4e61-b2e4-8afcee952594.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f1132c92-5586-4e61-b2e4-8afcee952594.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f1132c92-5586-4e61-b2e4-8afcee952594 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-f1132c92-5586-4e61-b2e4-8afcee952594 .shg-image-content-wrapper {
      aspect-ratio: 2000/1341;
      min-width: 100%;
      height: auto;
    }

    #s-f1132c92-5586-4e61-b2e4-8afcee952594 .shogun-image-link {
      aspect-ratio: 2000/1341;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f1132c92-5586-4e61-b2e4-8afcee952594 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f1132c92-5586-4e61-b2e4-8afcee952594 {
    width: 100%;
    height: auto;
  }

  #s-f1132c92-5586-4e61-b2e4-8afcee952594 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f1132c92-5586-4e61-b2e4-8afcee952594.shogun-image {
    
    
  }


.s-f1132c92-5586-4e61-b2e4-8afcee952594 .shogun-image-content {
  
    align-items: center;
  
}

.s-f1132c92-5586-4e61-b2e4-8afcee952594.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f1132c92-5586-4e61-b2e4-8afcee952594.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f1132c92-5586-4e61-b2e4-8afcee952594.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f1132c92-5586-4e61-b2e4-8afcee952594 {
      --shg-aspect-ratio: calc(2000/1341); 
    }

    .s-f1132c92-5586-4e61-b2e4-8afcee952594.shogun-image-container {
      position: relative;
    }

    .s-f1132c92-5586-4e61-b2e4-8afcee952594.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f1132c92-5586-4e61-b2e4-8afcee952594.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f1132c92-5586-4e61-b2e4-8afcee952594 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 {
  max-width: 2000px;
aspect-ratio: 2000/1341;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 .shg-image-content-wrapper {
      aspect-ratio: 2000/1341;
      min-width: 100%;
      height: auto;
    }

    #s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 .shogun-image-link {
      aspect-ratio: 2000/1341;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 {
    width: 100%;
    height: auto;
  }

  #s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shogun-image {
    
    
  }


.s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 .shogun-image-content {
  
    align-items: center;
  
}

.s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 {
      --shg-aspect-ratio: calc(2000/1341); 
    }

    .s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shogun-image-container {
      position: relative;
    }

    .s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 .shg-image-content-wrapper {
      aspect-ratio: 2000/1341;
      min-width: 100%;
      height: auto;
    }

    #s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 .shogun-image-link {
      aspect-ratio: 2000/1341;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 {
    width: 100%;
    height: auto;
  }

  #s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shogun-image {
    
    
  }


.s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 .shogun-image-content {
  
    align-items: center;
  
}

.s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 {
      --shg-aspect-ratio: calc(2000/1341); 
    }

    .s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shogun-image-container {
      position: relative;
    }

    .s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 .shg-image-content-wrapper {
      aspect-ratio: 2000/1341;
      min-width: 100%;
      height: auto;
    }

    #s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 .shogun-image-link {
      aspect-ratio: 2000/1341;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 {
    width: 100%;
    height: auto;
  }

  #s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shogun-image {
    
    
  }


.s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 .shogun-image-content {
  
    align-items: center;
  
}

.s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 {
      --shg-aspect-ratio: calc(2000/1341); 
    }

    .s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shogun-image-container {
      position: relative;
    }

    .s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 .shg-image-content-wrapper {
      aspect-ratio: 2000/1341;
      min-width: 100%;
      height: auto;
    }

    #s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 .shogun-image-link {
      aspect-ratio: 2000/1341;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 {
    width: 100%;
    height: auto;
  }

  #s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shogun-image {
    
    
  }


.s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 .shogun-image-content {
  
    align-items: center;
  
}

.s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 {
      --shg-aspect-ratio: calc(2000/1341); 
    }

    .s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shogun-image-container {
      position: relative;
    }

    .s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 .shg-image-content-wrapper {
      aspect-ratio: 2000/1341;
      min-width: 100%;
      height: auto;
    }

    #s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 .shogun-image-link {
      aspect-ratio: 2000/1341;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 {
    width: 100%;
    height: auto;
  }

  #s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shogun-image {
    
    
  }


.s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 .shogun-image-content {
  
    align-items: center;
  
}

.s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 {
      --shg-aspect-ratio: calc(2000/1341); 
    }

    .s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shogun-image-container {
      position: relative;
    }

    .s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b7f9f751-cc8c-4373-a9c5-efb4b84f6e63 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-77c5b658-6a94-4656-afec-44b48de0ca15 {
  max-width: 2000px;
aspect-ratio: 2000/1340;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-77c5b658-6a94-4656-afec-44b48de0ca15 .shg-image-content-wrapper {
      aspect-ratio: 2000/1340;
      min-width: 100%;
      height: auto;
    }

    #s-77c5b658-6a94-4656-afec-44b48de0ca15 .shogun-image-link {
      aspect-ratio: 2000/1340;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-77c5b658-6a94-4656-afec-44b48de0ca15 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-77c5b658-6a94-4656-afec-44b48de0ca15 {
    width: 100%;
    height: auto;
  }

  #s-77c5b658-6a94-4656-afec-44b48de0ca15 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-77c5b658-6a94-4656-afec-44b48de0ca15.shogun-image {
    
    
  }


.s-77c5b658-6a94-4656-afec-44b48de0ca15 .shogun-image-content {
  
    align-items: center;
  
}

.s-77c5b658-6a94-4656-afec-44b48de0ca15.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77c5b658-6a94-4656-afec-44b48de0ca15.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77c5b658-6a94-4656-afec-44b48de0ca15.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77c5b658-6a94-4656-afec-44b48de0ca15 {
      --shg-aspect-ratio: calc(2000/1340); 
    }

    .s-77c5b658-6a94-4656-afec-44b48de0ca15.shogun-image-container {
      position: relative;
    }

    .s-77c5b658-6a94-4656-afec-44b48de0ca15.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77c5b658-6a94-4656-afec-44b48de0ca15.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77c5b658-6a94-4656-afec-44b48de0ca15 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-77c5b658-6a94-4656-afec-44b48de0ca15 .shg-image-content-wrapper {
      aspect-ratio: 2000/1340;
      min-width: 100%;
      height: auto;
    }

    #s-77c5b658-6a94-4656-afec-44b48de0ca15 .shogun-image-link {
      aspect-ratio: 2000/1340;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-77c5b658-6a94-4656-afec-44b48de0ca15 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-77c5b658-6a94-4656-afec-44b48de0ca15 {
    width: 100%;
    height: auto;
  }

  #s-77c5b658-6a94-4656-afec-44b48de0ca15 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-77c5b658-6a94-4656-afec-44b48de0ca15.shogun-image {
    
    
  }


.s-77c5b658-6a94-4656-afec-44b48de0ca15 .shogun-image-content {
  
    align-items: center;
  
}

.s-77c5b658-6a94-4656-afec-44b48de0ca15.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77c5b658-6a94-4656-afec-44b48de0ca15.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77c5b658-6a94-4656-afec-44b48de0ca15.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77c5b658-6a94-4656-afec-44b48de0ca15 {
      --shg-aspect-ratio: calc(2000/1340); 
    }

    .s-77c5b658-6a94-4656-afec-44b48de0ca15.shogun-image-container {
      position: relative;
    }

    .s-77c5b658-6a94-4656-afec-44b48de0ca15.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77c5b658-6a94-4656-afec-44b48de0ca15.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77c5b658-6a94-4656-afec-44b48de0ca15 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-77c5b658-6a94-4656-afec-44b48de0ca15 .shg-image-content-wrapper {
      aspect-ratio: 2000/1340;
      min-width: 100%;
      height: auto;
    }

    #s-77c5b658-6a94-4656-afec-44b48de0ca15 .shogun-image-link {
      aspect-ratio: 2000/1340;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-77c5b658-6a94-4656-afec-44b48de0ca15 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-77c5b658-6a94-4656-afec-44b48de0ca15 {
    width: 100%;
    height: auto;
  }

  #s-77c5b658-6a94-4656-afec-44b48de0ca15 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-77c5b658-6a94-4656-afec-44b48de0ca15.shogun-image {
    
    
  }


.s-77c5b658-6a94-4656-afec-44b48de0ca15 .shogun-image-content {
  
    align-items: center;
  
}

.s-77c5b658-6a94-4656-afec-44b48de0ca15.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77c5b658-6a94-4656-afec-44b48de0ca15.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77c5b658-6a94-4656-afec-44b48de0ca15.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77c5b658-6a94-4656-afec-44b48de0ca15 {
      --shg-aspect-ratio: calc(2000/1340); 
    }

    .s-77c5b658-6a94-4656-afec-44b48de0ca15.shogun-image-container {
      position: relative;
    }

    .s-77c5b658-6a94-4656-afec-44b48de0ca15.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77c5b658-6a94-4656-afec-44b48de0ca15.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77c5b658-6a94-4656-afec-44b48de0ca15 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-77c5b658-6a94-4656-afec-44b48de0ca15 .shg-image-content-wrapper {
      aspect-ratio: 2000/1340;
      min-width: 100%;
      height: auto;
    }

    #s-77c5b658-6a94-4656-afec-44b48de0ca15 .shogun-image-link {
      aspect-ratio: 2000/1340;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-77c5b658-6a94-4656-afec-44b48de0ca15 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-77c5b658-6a94-4656-afec-44b48de0ca15 {
    width: 100%;
    height: auto;
  }

  #s-77c5b658-6a94-4656-afec-44b48de0ca15 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-77c5b658-6a94-4656-afec-44b48de0ca15.shogun-image {
    
    
  }


.s-77c5b658-6a94-4656-afec-44b48de0ca15 .shogun-image-content {
  
    align-items: center;
  
}

.s-77c5b658-6a94-4656-afec-44b48de0ca15.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77c5b658-6a94-4656-afec-44b48de0ca15.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77c5b658-6a94-4656-afec-44b48de0ca15.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77c5b658-6a94-4656-afec-44b48de0ca15 {
      --shg-aspect-ratio: calc(2000/1340); 
    }

    .s-77c5b658-6a94-4656-afec-44b48de0ca15.shogun-image-container {
      position: relative;
    }

    .s-77c5b658-6a94-4656-afec-44b48de0ca15.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77c5b658-6a94-4656-afec-44b48de0ca15.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77c5b658-6a94-4656-afec-44b48de0ca15 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-77c5b658-6a94-4656-afec-44b48de0ca15 .shg-image-content-wrapper {
      aspect-ratio: 2000/1340;
      min-width: 100%;
      height: auto;
    }

    #s-77c5b658-6a94-4656-afec-44b48de0ca15 .shogun-image-link {
      aspect-ratio: 2000/1340;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-77c5b658-6a94-4656-afec-44b48de0ca15 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-77c5b658-6a94-4656-afec-44b48de0ca15 {
    width: 100%;
    height: auto;
  }

  #s-77c5b658-6a94-4656-afec-44b48de0ca15 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-77c5b658-6a94-4656-afec-44b48de0ca15.shogun-image {
    
    
  }


.s-77c5b658-6a94-4656-afec-44b48de0ca15 .shogun-image-content {
  
    align-items: center;
  
}

.s-77c5b658-6a94-4656-afec-44b48de0ca15.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77c5b658-6a94-4656-afec-44b48de0ca15.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77c5b658-6a94-4656-afec-44b48de0ca15.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77c5b658-6a94-4656-afec-44b48de0ca15 {
      --shg-aspect-ratio: calc(2000/1340); 
    }

    .s-77c5b658-6a94-4656-afec-44b48de0ca15.shogun-image-container {
      position: relative;
    }

    .s-77c5b658-6a94-4656-afec-44b48de0ca15.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77c5b658-6a94-4656-afec-44b48de0ca15.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77c5b658-6a94-4656-afec-44b48de0ca15 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-bae4c989-4a50-4167-b903-bf86bdace21c {
  max-width: 2000px;
aspect-ratio: 2000/1340;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-bae4c989-4a50-4167-b903-bf86bdace21c .shg-image-content-wrapper {
      aspect-ratio: 2000/1340;
      min-width: 100%;
      height: auto;
    }

    #s-bae4c989-4a50-4167-b903-bf86bdace21c .shogun-image-link {
      aspect-ratio: 2000/1340;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bae4c989-4a50-4167-b903-bf86bdace21c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-bae4c989-4a50-4167-b903-bf86bdace21c {
    width: 100%;
    height: auto;
  }

  #s-bae4c989-4a50-4167-b903-bf86bdace21c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bae4c989-4a50-4167-b903-bf86bdace21c.shogun-image {
    
    
  }


.s-bae4c989-4a50-4167-b903-bf86bdace21c .shogun-image-content {
  
    align-items: center;
  
}

.s-bae4c989-4a50-4167-b903-bf86bdace21c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bae4c989-4a50-4167-b903-bf86bdace21c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bae4c989-4a50-4167-b903-bf86bdace21c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bae4c989-4a50-4167-b903-bf86bdace21c {
      --shg-aspect-ratio: calc(2000/1340); 
    }

    .s-bae4c989-4a50-4167-b903-bf86bdace21c.shogun-image-container {
      position: relative;
    }

    .s-bae4c989-4a50-4167-b903-bf86bdace21c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bae4c989-4a50-4167-b903-bf86bdace21c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bae4c989-4a50-4167-b903-bf86bdace21c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-bae4c989-4a50-4167-b903-bf86bdace21c .shg-image-content-wrapper {
      aspect-ratio: 2000/1340;
      min-width: 100%;
      height: auto;
    }

    #s-bae4c989-4a50-4167-b903-bf86bdace21c .shogun-image-link {
      aspect-ratio: 2000/1340;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bae4c989-4a50-4167-b903-bf86bdace21c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-bae4c989-4a50-4167-b903-bf86bdace21c {
    width: 100%;
    height: auto;
  }

  #s-bae4c989-4a50-4167-b903-bf86bdace21c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bae4c989-4a50-4167-b903-bf86bdace21c.shogun-image {
    
    
  }


.s-bae4c989-4a50-4167-b903-bf86bdace21c .shogun-image-content {
  
    align-items: center;
  
}

.s-bae4c989-4a50-4167-b903-bf86bdace21c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bae4c989-4a50-4167-b903-bf86bdace21c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bae4c989-4a50-4167-b903-bf86bdace21c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bae4c989-4a50-4167-b903-bf86bdace21c {
      --shg-aspect-ratio: calc(2000/1340); 
    }

    .s-bae4c989-4a50-4167-b903-bf86bdace21c.shogun-image-container {
      position: relative;
    }

    .s-bae4c989-4a50-4167-b903-bf86bdace21c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bae4c989-4a50-4167-b903-bf86bdace21c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bae4c989-4a50-4167-b903-bf86bdace21c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-bae4c989-4a50-4167-b903-bf86bdace21c .shg-image-content-wrapper {
      aspect-ratio: 2000/1340;
      min-width: 100%;
      height: auto;
    }

    #s-bae4c989-4a50-4167-b903-bf86bdace21c .shogun-image-link {
      aspect-ratio: 2000/1340;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bae4c989-4a50-4167-b903-bf86bdace21c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-bae4c989-4a50-4167-b903-bf86bdace21c {
    width: 100%;
    height: auto;
  }

  #s-bae4c989-4a50-4167-b903-bf86bdace21c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bae4c989-4a50-4167-b903-bf86bdace21c.shogun-image {
    
    
  }


.s-bae4c989-4a50-4167-b903-bf86bdace21c .shogun-image-content {
  
    align-items: center;
  
}

.s-bae4c989-4a50-4167-b903-bf86bdace21c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bae4c989-4a50-4167-b903-bf86bdace21c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bae4c989-4a50-4167-b903-bf86bdace21c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bae4c989-4a50-4167-b903-bf86bdace21c {
      --shg-aspect-ratio: calc(2000/1340); 
    }

    .s-bae4c989-4a50-4167-b903-bf86bdace21c.shogun-image-container {
      position: relative;
    }

    .s-bae4c989-4a50-4167-b903-bf86bdace21c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bae4c989-4a50-4167-b903-bf86bdace21c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bae4c989-4a50-4167-b903-bf86bdace21c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-bae4c989-4a50-4167-b903-bf86bdace21c .shg-image-content-wrapper {
      aspect-ratio: 2000/1340;
      min-width: 100%;
      height: auto;
    }

    #s-bae4c989-4a50-4167-b903-bf86bdace21c .shogun-image-link {
      aspect-ratio: 2000/1340;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bae4c989-4a50-4167-b903-bf86bdace21c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-bae4c989-4a50-4167-b903-bf86bdace21c {
    width: 100%;
    height: auto;
  }

  #s-bae4c989-4a50-4167-b903-bf86bdace21c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bae4c989-4a50-4167-b903-bf86bdace21c.shogun-image {
    
    
  }


.s-bae4c989-4a50-4167-b903-bf86bdace21c .shogun-image-content {
  
    align-items: center;
  
}

.s-bae4c989-4a50-4167-b903-bf86bdace21c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bae4c989-4a50-4167-b903-bf86bdace21c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bae4c989-4a50-4167-b903-bf86bdace21c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bae4c989-4a50-4167-b903-bf86bdace21c {
      --shg-aspect-ratio: calc(2000/1340); 
    }

    .s-bae4c989-4a50-4167-b903-bf86bdace21c.shogun-image-container {
      position: relative;
    }

    .s-bae4c989-4a50-4167-b903-bf86bdace21c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bae4c989-4a50-4167-b903-bf86bdace21c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bae4c989-4a50-4167-b903-bf86bdace21c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-bae4c989-4a50-4167-b903-bf86bdace21c .shg-image-content-wrapper {
      aspect-ratio: 2000/1340;
      min-width: 100%;
      height: auto;
    }

    #s-bae4c989-4a50-4167-b903-bf86bdace21c .shogun-image-link {
      aspect-ratio: 2000/1340;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bae4c989-4a50-4167-b903-bf86bdace21c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-bae4c989-4a50-4167-b903-bf86bdace21c {
    width: 100%;
    height: auto;
  }

  #s-bae4c989-4a50-4167-b903-bf86bdace21c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bae4c989-4a50-4167-b903-bf86bdace21c.shogun-image {
    
    
  }


.s-bae4c989-4a50-4167-b903-bf86bdace21c .shogun-image-content {
  
    align-items: center;
  
}

.s-bae4c989-4a50-4167-b903-bf86bdace21c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bae4c989-4a50-4167-b903-bf86bdace21c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bae4c989-4a50-4167-b903-bf86bdace21c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bae4c989-4a50-4167-b903-bf86bdace21c {
      --shg-aspect-ratio: calc(2000/1340); 
    }

    .s-bae4c989-4a50-4167-b903-bf86bdace21c.shogun-image-container {
      position: relative;
    }

    .s-bae4c989-4a50-4167-b903-bf86bdace21c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bae4c989-4a50-4167-b903-bf86bdace21c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bae4c989-4a50-4167-b903-bf86bdace21c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-bd5380e8-47f9-4367-b06b-de3e1565bc7d {
  max-width: 2000px;
aspect-ratio: 2000/1341;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-bd5380e8-47f9-4367-b06b-de3e1565bc7d .shg-image-content-wrapper {
      aspect-ratio: 2000/1341;
      min-width: 100%;
      height: auto;
    }

    #s-bd5380e8-47f9-4367-b06b-de3e1565bc7d .shogun-image-link {
      aspect-ratio: 2000/1341;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bd5380e8-47f9-4367-b06b-de3e1565bc7d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-bd5380e8-47f9-4367-b06b-de3e1565bc7d {
    width: 100%;
    height: auto;
  }

  #s-bd5380e8-47f9-4367-b06b-de3e1565bc7d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shogun-image {
    
    
  }


.s-bd5380e8-47f9-4367-b06b-de3e1565bc7d .shogun-image-content {
  
    align-items: center;
  
}

.s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bd5380e8-47f9-4367-b06b-de3e1565bc7d {
      --shg-aspect-ratio: calc(2000/1341); 
    }

    .s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shogun-image-container {
      position: relative;
    }

    .s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bd5380e8-47f9-4367-b06b-de3e1565bc7d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-bd5380e8-47f9-4367-b06b-de3e1565bc7d .shg-image-content-wrapper {
      aspect-ratio: 2000/1341;
      min-width: 100%;
      height: auto;
    }

    #s-bd5380e8-47f9-4367-b06b-de3e1565bc7d .shogun-image-link {
      aspect-ratio: 2000/1341;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bd5380e8-47f9-4367-b06b-de3e1565bc7d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-bd5380e8-47f9-4367-b06b-de3e1565bc7d {
    width: 100%;
    height: auto;
  }

  #s-bd5380e8-47f9-4367-b06b-de3e1565bc7d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shogun-image {
    
    
  }


.s-bd5380e8-47f9-4367-b06b-de3e1565bc7d .shogun-image-content {
  
    align-items: center;
  
}

.s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bd5380e8-47f9-4367-b06b-de3e1565bc7d {
      --shg-aspect-ratio: calc(2000/1341); 
    }

    .s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shogun-image-container {
      position: relative;
    }

    .s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bd5380e8-47f9-4367-b06b-de3e1565bc7d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-bd5380e8-47f9-4367-b06b-de3e1565bc7d .shg-image-content-wrapper {
      aspect-ratio: 2000/1341;
      min-width: 100%;
      height: auto;
    }

    #s-bd5380e8-47f9-4367-b06b-de3e1565bc7d .shogun-image-link {
      aspect-ratio: 2000/1341;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bd5380e8-47f9-4367-b06b-de3e1565bc7d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-bd5380e8-47f9-4367-b06b-de3e1565bc7d {
    width: 100%;
    height: auto;
  }

  #s-bd5380e8-47f9-4367-b06b-de3e1565bc7d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shogun-image {
    
    
  }


.s-bd5380e8-47f9-4367-b06b-de3e1565bc7d .shogun-image-content {
  
    align-items: center;
  
}

.s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bd5380e8-47f9-4367-b06b-de3e1565bc7d {
      --shg-aspect-ratio: calc(2000/1341); 
    }

    .s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shogun-image-container {
      position: relative;
    }

    .s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bd5380e8-47f9-4367-b06b-de3e1565bc7d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-bd5380e8-47f9-4367-b06b-de3e1565bc7d .shg-image-content-wrapper {
      aspect-ratio: 2000/1341;
      min-width: 100%;
      height: auto;
    }

    #s-bd5380e8-47f9-4367-b06b-de3e1565bc7d .shogun-image-link {
      aspect-ratio: 2000/1341;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bd5380e8-47f9-4367-b06b-de3e1565bc7d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-bd5380e8-47f9-4367-b06b-de3e1565bc7d {
    width: 100%;
    height: auto;
  }

  #s-bd5380e8-47f9-4367-b06b-de3e1565bc7d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shogun-image {
    
    
  }


.s-bd5380e8-47f9-4367-b06b-de3e1565bc7d .shogun-image-content {
  
    align-items: center;
  
}

.s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bd5380e8-47f9-4367-b06b-de3e1565bc7d {
      --shg-aspect-ratio: calc(2000/1341); 
    }

    .s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shogun-image-container {
      position: relative;
    }

    .s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bd5380e8-47f9-4367-b06b-de3e1565bc7d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-bd5380e8-47f9-4367-b06b-de3e1565bc7d .shg-image-content-wrapper {
      aspect-ratio: 2000/1341;
      min-width: 100%;
      height: auto;
    }

    #s-bd5380e8-47f9-4367-b06b-de3e1565bc7d .shogun-image-link {
      aspect-ratio: 2000/1341;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bd5380e8-47f9-4367-b06b-de3e1565bc7d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-bd5380e8-47f9-4367-b06b-de3e1565bc7d {
    width: 100%;
    height: auto;
  }

  #s-bd5380e8-47f9-4367-b06b-de3e1565bc7d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shogun-image {
    
    
  }


.s-bd5380e8-47f9-4367-b06b-de3e1565bc7d .shogun-image-content {
  
    align-items: center;
  
}

.s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bd5380e8-47f9-4367-b06b-de3e1565bc7d {
      --shg-aspect-ratio: calc(2000/1341); 
    }

    .s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shogun-image-container {
      position: relative;
    }

    .s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bd5380e8-47f9-4367-b06b-de3e1565bc7d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bd5380e8-47f9-4367-b06b-de3e1565bc7d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad {
  margin-left: 1%;
margin-right: 1%;
max-width: 1200px;
aspect-ratio: 2000/1298;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad .shg-image-content-wrapper {
      aspect-ratio: 2000/1298;
      min-width: 100%;
      height: auto;
    }

    #s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad .shogun-image-link {
      aspect-ratio: 2000/1298;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad {
    width: 100%;
    height: auto;
  }

  #s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shogun-image {
    
    
  }


.s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad .shogun-image-content {
  
    align-items: center;
  
}

.s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad {
      --shg-aspect-ratio: calc(2000/1298); 
    }

    .s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shogun-image-container {
      position: relative;
    }

    .s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad .shg-image-content-wrapper {
      aspect-ratio: 2000/1298;
      min-width: 100%;
      height: auto;
    }

    #s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad .shogun-image-link {
      aspect-ratio: 2000/1298;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad {
    width: 100%;
    height: auto;
  }

  #s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shogun-image {
    
    
  }


.s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad .shogun-image-content {
  
    align-items: center;
  
}

.s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad {
      --shg-aspect-ratio: calc(2000/1298); 
    }

    .s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shogun-image-container {
      position: relative;
    }

    .s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad .shg-image-content-wrapper {
      aspect-ratio: 2000/1298;
      min-width: 100%;
      height: auto;
    }

    #s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad .shogun-image-link {
      aspect-ratio: 2000/1298;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad {
    width: 100%;
    height: auto;
  }

  #s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shogun-image {
    
    
  }


.s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad .shogun-image-content {
  
    align-items: center;
  
}

.s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad {
      --shg-aspect-ratio: calc(2000/1298); 
    }

    .s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shogun-image-container {
      position: relative;
    }

    .s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad .shg-image-content-wrapper {
      aspect-ratio: 2000/1298;
      min-width: 100%;
      height: auto;
    }

    #s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad .shogun-image-link {
      aspect-ratio: 2000/1298;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad {
    width: 100%;
    height: auto;
  }

  #s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shogun-image {
    
    
  }


.s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad .shogun-image-content {
  
    align-items: center;
  
}

.s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad {
      --shg-aspect-ratio: calc(2000/1298); 
    }

    .s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shogun-image-container {
      position: relative;
    }

    .s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad .shg-image-content-wrapper {
      aspect-ratio: 2000/1298;
      min-width: 100%;
      height: auto;
    }

    #s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad .shogun-image-link {
      aspect-ratio: 2000/1298;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad {
    width: 100%;
    height: auto;
  }

  #s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shogun-image {
    
    
  }


.s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad .shogun-image-content {
  
    align-items: center;
  
}

.s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad {
      --shg-aspect-ratio: calc(2000/1298); 
    }

    .s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shogun-image-container {
      position: relative;
    }

    .s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d1b3c652-62e8-4e72-b07b-4c977ec2d9ad img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-602a98e5-aedf-410f-a7b1-e729600adbb0 hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

#s-b244a0dd-7ad5-4a73-9f57-aed280d746ff {
  min-height: 50px;
}








#s-b244a0dd-7ad5-4a73-9f57-aed280d746ff > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b244a0dd-7ad5-4a73-9f57-aed280d746ff.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-06f6baa2-b301-491f-be01-d2a4a8a3cede {
  max-width: 480px;
aspect-ratio: 1280/853;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-06f6baa2-b301-491f-be01-d2a4a8a3cede .shg-image-content-wrapper {
      aspect-ratio: 1280/853;
      min-width: 100%;
      height: auto;
    }

    #s-06f6baa2-b301-491f-be01-d2a4a8a3cede .shogun-image-link {
      aspect-ratio: 1280/853;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-06f6baa2-b301-491f-be01-d2a4a8a3cede .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-06f6baa2-b301-491f-be01-d2a4a8a3cede {
    width: 100%;
    height: auto;
  }

  #s-06f6baa2-b301-491f-be01-d2a4a8a3cede img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shogun-image {
    
    
  }


.s-06f6baa2-b301-491f-be01-d2a4a8a3cede .shogun-image-content {
  
    align-items: center;
  
}

.s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shg-align-container {
  display: flex;
  justify-content: center
}

.s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-06f6baa2-b301-491f-be01-d2a4a8a3cede {
      --shg-aspect-ratio: calc(1280/853); 
    }

    .s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shogun-image-container {
      position: relative;
    }

    .s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-06f6baa2-b301-491f-be01-d2a4a8a3cede img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-06f6baa2-b301-491f-be01-d2a4a8a3cede .shg-image-content-wrapper {
      aspect-ratio: 1280/853;
      min-width: 100%;
      height: auto;
    }

    #s-06f6baa2-b301-491f-be01-d2a4a8a3cede .shogun-image-link {
      aspect-ratio: 1280/853;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-06f6baa2-b301-491f-be01-d2a4a8a3cede .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-06f6baa2-b301-491f-be01-d2a4a8a3cede {
    width: 100%;
    height: auto;
  }

  #s-06f6baa2-b301-491f-be01-d2a4a8a3cede img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shogun-image {
    
    
  }


.s-06f6baa2-b301-491f-be01-d2a4a8a3cede .shogun-image-content {
  
    align-items: center;
  
}

.s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shg-align-container {
  display: flex;
  justify-content: center
}

.s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-06f6baa2-b301-491f-be01-d2a4a8a3cede {
      --shg-aspect-ratio: calc(1280/853); 
    }

    .s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shogun-image-container {
      position: relative;
    }

    .s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-06f6baa2-b301-491f-be01-d2a4a8a3cede img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-06f6baa2-b301-491f-be01-d2a4a8a3cede .shg-image-content-wrapper {
      aspect-ratio: 1280/853;
      min-width: 100%;
      height: auto;
    }

    #s-06f6baa2-b301-491f-be01-d2a4a8a3cede .shogun-image-link {
      aspect-ratio: 1280/853;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-06f6baa2-b301-491f-be01-d2a4a8a3cede .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-06f6baa2-b301-491f-be01-d2a4a8a3cede {
    width: 100%;
    height: auto;
  }

  #s-06f6baa2-b301-491f-be01-d2a4a8a3cede img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shogun-image {
    
    
  }


.s-06f6baa2-b301-491f-be01-d2a4a8a3cede .shogun-image-content {
  
    align-items: center;
  
}

.s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shg-align-container {
  display: flex;
  justify-content: center
}

.s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-06f6baa2-b301-491f-be01-d2a4a8a3cede {
      --shg-aspect-ratio: calc(1280/853); 
    }

    .s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shogun-image-container {
      position: relative;
    }

    .s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-06f6baa2-b301-491f-be01-d2a4a8a3cede img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-06f6baa2-b301-491f-be01-d2a4a8a3cede .shg-image-content-wrapper {
      aspect-ratio: 1280/853;
      min-width: 100%;
      height: auto;
    }

    #s-06f6baa2-b301-491f-be01-d2a4a8a3cede .shogun-image-link {
      aspect-ratio: 1280/853;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-06f6baa2-b301-491f-be01-d2a4a8a3cede .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-06f6baa2-b301-491f-be01-d2a4a8a3cede {
    width: 100%;
    height: auto;
  }

  #s-06f6baa2-b301-491f-be01-d2a4a8a3cede img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shogun-image {
    
    
  }


.s-06f6baa2-b301-491f-be01-d2a4a8a3cede .shogun-image-content {
  
    align-items: center;
  
}

.s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shg-align-container {
  display: flex;
  justify-content: center
}

.s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-06f6baa2-b301-491f-be01-d2a4a8a3cede {
      --shg-aspect-ratio: calc(1280/853); 
    }

    .s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shogun-image-container {
      position: relative;
    }

    .s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-06f6baa2-b301-491f-be01-d2a4a8a3cede img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-06f6baa2-b301-491f-be01-d2a4a8a3cede .shg-image-content-wrapper {
      aspect-ratio: 1280/853;
      min-width: 100%;
      height: auto;
    }

    #s-06f6baa2-b301-491f-be01-d2a4a8a3cede .shogun-image-link {
      aspect-ratio: 1280/853;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-06f6baa2-b301-491f-be01-d2a4a8a3cede .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-06f6baa2-b301-491f-be01-d2a4a8a3cede {
    width: 100%;
    height: auto;
  }

  #s-06f6baa2-b301-491f-be01-d2a4a8a3cede img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shogun-image {
    
    
  }


.s-06f6baa2-b301-491f-be01-d2a4a8a3cede .shogun-image-content {
  
    align-items: center;
  
}

.s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shg-align-container {
  display: flex;
  justify-content: center
}

.s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-06f6baa2-b301-491f-be01-d2a4a8a3cede {
      --shg-aspect-ratio: calc(1280/853); 
    }

    .s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shogun-image-container {
      position: relative;
    }

    .s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-06f6baa2-b301-491f-be01-d2a4a8a3cede.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-06f6baa2-b301-491f-be01-d2a4a8a3cede img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-84878d9a-7b45-48b3-8057-f73fe693182e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-84878d9a-7b45-48b3-8057-f73fe693182e .shogun-heading-component h1 {
  color: ;
  font-weight:  600 ;
  font-family: "Inter";
  font-style:  normal ;
  
  
  
  
}



#s-d9999450-c27a-430a-94ad-e006e5f9b6ac {
  min-height: 50px;
}








#s-d9999450-c27a-430a-94ad-e006e5f9b6ac > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d9999450-c27a-430a-94ad-e006e5f9b6ac.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-689b5e7f-4ed9-42ac-a3e3-942150f911bc {
  margin-left: 10%;
margin-right: 10%;
}

/*
  $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}
