.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-bca7f348-ed9d-430d-97a4-bbc23e9f56ec {
  min-height: 50px;
}








#s-bca7f348-ed9d-430d-97a4-bbc23e9f56ec > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bca7f348-ed9d-430d-97a4-bbc23e9f56ec.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-bb236814-e556-4a94-8b70-5ab1c77289d3 {
  max-width: 1080px;
aspect-ratio: 1080/1920;
text-align: center;
}





  #s-bb236814-e556-4a94-8b70-5ab1c77289d3 img.shogun-image,
  #s-bb236814-e556-4a94-8b70-5ab1c77289d3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-bb236814-e556-4a94-8b70-5ab1c77289d3 {
    width: 100%;
    height: auto;
  }

  #s-bb236814-e556-4a94-8b70-5ab1c77289d3 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bb236814-e556-4a94-8b70-5ab1c77289d3.shogun-image {
    
    
  }


.s-bb236814-e556-4a94-8b70-5ab1c77289d3 .shogun-image-content {
  
    align-items: center;
  
}

.s-bb236814-e556-4a94-8b70-5ab1c77289d3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bb236814-e556-4a94-8b70-5ab1c77289d3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bb236814-e556-4a94-8b70-5ab1c77289d3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bb236814-e556-4a94-8b70-5ab1c77289d3 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-bb236814-e556-4a94-8b70-5ab1c77289d3.shogun-image-container {
      position: relative;
    }

    .s-bb236814-e556-4a94-8b70-5ab1c77289d3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bb236814-e556-4a94-8b70-5ab1c77289d3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bb236814-e556-4a94-8b70-5ab1c77289d3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-bb236814-e556-4a94-8b70-5ab1c77289d3 img.shogun-image,
  #s-bb236814-e556-4a94-8b70-5ab1c77289d3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-bb236814-e556-4a94-8b70-5ab1c77289d3 {
    width: 100%;
    height: auto;
  }

  #s-bb236814-e556-4a94-8b70-5ab1c77289d3 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bb236814-e556-4a94-8b70-5ab1c77289d3.shogun-image {
    
    
  }


.s-bb236814-e556-4a94-8b70-5ab1c77289d3 .shogun-image-content {
  
    align-items: center;
  
}

.s-bb236814-e556-4a94-8b70-5ab1c77289d3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bb236814-e556-4a94-8b70-5ab1c77289d3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bb236814-e556-4a94-8b70-5ab1c77289d3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bb236814-e556-4a94-8b70-5ab1c77289d3 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-bb236814-e556-4a94-8b70-5ab1c77289d3.shogun-image-container {
      position: relative;
    }

    .s-bb236814-e556-4a94-8b70-5ab1c77289d3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bb236814-e556-4a94-8b70-5ab1c77289d3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bb236814-e556-4a94-8b70-5ab1c77289d3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-bb236814-e556-4a94-8b70-5ab1c77289d3 img.shogun-image,
  #s-bb236814-e556-4a94-8b70-5ab1c77289d3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-bb236814-e556-4a94-8b70-5ab1c77289d3 {
    width: 100%;
    height: auto;
  }

  #s-bb236814-e556-4a94-8b70-5ab1c77289d3 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bb236814-e556-4a94-8b70-5ab1c77289d3.shogun-image {
    
    
  }


.s-bb236814-e556-4a94-8b70-5ab1c77289d3 .shogun-image-content {
  
    align-items: center;
  
}

.s-bb236814-e556-4a94-8b70-5ab1c77289d3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bb236814-e556-4a94-8b70-5ab1c77289d3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bb236814-e556-4a94-8b70-5ab1c77289d3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bb236814-e556-4a94-8b70-5ab1c77289d3 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-bb236814-e556-4a94-8b70-5ab1c77289d3.shogun-image-container {
      position: relative;
    }

    .s-bb236814-e556-4a94-8b70-5ab1c77289d3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bb236814-e556-4a94-8b70-5ab1c77289d3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bb236814-e556-4a94-8b70-5ab1c77289d3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-bb236814-e556-4a94-8b70-5ab1c77289d3 img.shogun-image,
  #s-bb236814-e556-4a94-8b70-5ab1c77289d3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-bb236814-e556-4a94-8b70-5ab1c77289d3 {
    width: 100%;
    height: auto;
  }

  #s-bb236814-e556-4a94-8b70-5ab1c77289d3 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bb236814-e556-4a94-8b70-5ab1c77289d3.shogun-image {
    
    
  }


.s-bb236814-e556-4a94-8b70-5ab1c77289d3 .shogun-image-content {
  
    align-items: center;
  
}

.s-bb236814-e556-4a94-8b70-5ab1c77289d3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bb236814-e556-4a94-8b70-5ab1c77289d3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bb236814-e556-4a94-8b70-5ab1c77289d3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bb236814-e556-4a94-8b70-5ab1c77289d3 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-bb236814-e556-4a94-8b70-5ab1c77289d3.shogun-image-container {
      position: relative;
    }

    .s-bb236814-e556-4a94-8b70-5ab1c77289d3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bb236814-e556-4a94-8b70-5ab1c77289d3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bb236814-e556-4a94-8b70-5ab1c77289d3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-bb236814-e556-4a94-8b70-5ab1c77289d3 img.shogun-image,
  #s-bb236814-e556-4a94-8b70-5ab1c77289d3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-bb236814-e556-4a94-8b70-5ab1c77289d3 {
    width: 100%;
    height: auto;
  }

  #s-bb236814-e556-4a94-8b70-5ab1c77289d3 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bb236814-e556-4a94-8b70-5ab1c77289d3.shogun-image {
    
    
  }


.s-bb236814-e556-4a94-8b70-5ab1c77289d3 .shogun-image-content {
  
    align-items: center;
  
}

.s-bb236814-e556-4a94-8b70-5ab1c77289d3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bb236814-e556-4a94-8b70-5ab1c77289d3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bb236814-e556-4a94-8b70-5ab1c77289d3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bb236814-e556-4a94-8b70-5ab1c77289d3 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-bb236814-e556-4a94-8b70-5ab1c77289d3.shogun-image-container {
      position: relative;
    }

    .s-bb236814-e556-4a94-8b70-5ab1c77289d3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bb236814-e556-4a94-8b70-5ab1c77289d3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bb236814-e556-4a94-8b70-5ab1c77289d3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-be22ce78-62e0-4de5-9cab-0cd94c71e44f {
  min-height: 50px;
}








#s-be22ce78-62e0-4de5-9cab-0cd94c71e44f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-be22ce78-62e0-4de5-9cab-0cd94c71e44f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f {
  max-width: 1080px;
aspect-ratio: 1080/1920;
text-align: center;
}





  #s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f img.shogun-image,
  #s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f {
    width: 100%;
    height: auto;
  }

  #s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shogun-image {
    
    
  }


.s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f .shogun-image-content {
  
    align-items: center;
  
}

.s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shogun-image-container {
      position: relative;
    }

    .s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f img.shogun-image,
  #s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f {
    width: 100%;
    height: auto;
  }

  #s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shogun-image {
    
    
  }


.s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f .shogun-image-content {
  
    align-items: center;
  
}

.s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shogun-image-container {
      position: relative;
    }

    .s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f img.shogun-image,
  #s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f {
    width: 100%;
    height: auto;
  }

  #s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shogun-image {
    
    
  }


.s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f .shogun-image-content {
  
    align-items: center;
  
}

.s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shogun-image-container {
      position: relative;
    }

    .s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f img.shogun-image,
  #s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f {
    width: 100%;
    height: auto;
  }

  #s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shogun-image {
    
    
  }


.s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f .shogun-image-content {
  
    align-items: center;
  
}

.s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shogun-image-container {
      position: relative;
    }

    .s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f img.shogun-image,
  #s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f {
    width: 100%;
    height: auto;
  }

  #s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shogun-image {
    
    
  }


.s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f .shogun-image-content {
  
    align-items: center;
  
}

.s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shogun-image-container {
      position: relative;
    }

    .s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3c837c64-89be-4ee7-a9f4-d9d43d1db95f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-f112a946-9c97-4b48-bfa1-f7b94b9f2fe5 {
  min-height: 50px;
}








#s-f112a946-9c97-4b48-bfa1-f7b94b9f2fe5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f112a946-9c97-4b48-bfa1-f7b94b9f2fe5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c01853cc-7373-4f33-8777-06bdac57eea0 {
  max-width: 1080px;
aspect-ratio: 1080/1920;
text-align: center;
}





  #s-c01853cc-7373-4f33-8777-06bdac57eea0 img.shogun-image,
  #s-c01853cc-7373-4f33-8777-06bdac57eea0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c01853cc-7373-4f33-8777-06bdac57eea0 {
    width: 100%;
    height: auto;
  }

  #s-c01853cc-7373-4f33-8777-06bdac57eea0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c01853cc-7373-4f33-8777-06bdac57eea0.shogun-image {
    
    
  }


.s-c01853cc-7373-4f33-8777-06bdac57eea0 .shogun-image-content {
  
    align-items: center;
  
}

.s-c01853cc-7373-4f33-8777-06bdac57eea0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c01853cc-7373-4f33-8777-06bdac57eea0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c01853cc-7373-4f33-8777-06bdac57eea0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c01853cc-7373-4f33-8777-06bdac57eea0 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-c01853cc-7373-4f33-8777-06bdac57eea0.shogun-image-container {
      position: relative;
    }

    .s-c01853cc-7373-4f33-8777-06bdac57eea0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c01853cc-7373-4f33-8777-06bdac57eea0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c01853cc-7373-4f33-8777-06bdac57eea0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-c01853cc-7373-4f33-8777-06bdac57eea0 img.shogun-image,
  #s-c01853cc-7373-4f33-8777-06bdac57eea0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c01853cc-7373-4f33-8777-06bdac57eea0 {
    width: 100%;
    height: auto;
  }

  #s-c01853cc-7373-4f33-8777-06bdac57eea0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c01853cc-7373-4f33-8777-06bdac57eea0.shogun-image {
    
    
  }


.s-c01853cc-7373-4f33-8777-06bdac57eea0 .shogun-image-content {
  
    align-items: center;
  
}

.s-c01853cc-7373-4f33-8777-06bdac57eea0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c01853cc-7373-4f33-8777-06bdac57eea0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c01853cc-7373-4f33-8777-06bdac57eea0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c01853cc-7373-4f33-8777-06bdac57eea0 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-c01853cc-7373-4f33-8777-06bdac57eea0.shogun-image-container {
      position: relative;
    }

    .s-c01853cc-7373-4f33-8777-06bdac57eea0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c01853cc-7373-4f33-8777-06bdac57eea0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c01853cc-7373-4f33-8777-06bdac57eea0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-c01853cc-7373-4f33-8777-06bdac57eea0 img.shogun-image,
  #s-c01853cc-7373-4f33-8777-06bdac57eea0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c01853cc-7373-4f33-8777-06bdac57eea0 {
    width: 100%;
    height: auto;
  }

  #s-c01853cc-7373-4f33-8777-06bdac57eea0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c01853cc-7373-4f33-8777-06bdac57eea0.shogun-image {
    
    
  }


.s-c01853cc-7373-4f33-8777-06bdac57eea0 .shogun-image-content {
  
    align-items: center;
  
}

.s-c01853cc-7373-4f33-8777-06bdac57eea0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c01853cc-7373-4f33-8777-06bdac57eea0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c01853cc-7373-4f33-8777-06bdac57eea0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c01853cc-7373-4f33-8777-06bdac57eea0 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-c01853cc-7373-4f33-8777-06bdac57eea0.shogun-image-container {
      position: relative;
    }

    .s-c01853cc-7373-4f33-8777-06bdac57eea0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c01853cc-7373-4f33-8777-06bdac57eea0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c01853cc-7373-4f33-8777-06bdac57eea0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-c01853cc-7373-4f33-8777-06bdac57eea0 img.shogun-image,
  #s-c01853cc-7373-4f33-8777-06bdac57eea0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c01853cc-7373-4f33-8777-06bdac57eea0 {
    width: 100%;
    height: auto;
  }

  #s-c01853cc-7373-4f33-8777-06bdac57eea0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c01853cc-7373-4f33-8777-06bdac57eea0.shogun-image {
    
    
  }


.s-c01853cc-7373-4f33-8777-06bdac57eea0 .shogun-image-content {
  
    align-items: center;
  
}

.s-c01853cc-7373-4f33-8777-06bdac57eea0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c01853cc-7373-4f33-8777-06bdac57eea0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c01853cc-7373-4f33-8777-06bdac57eea0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c01853cc-7373-4f33-8777-06bdac57eea0 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-c01853cc-7373-4f33-8777-06bdac57eea0.shogun-image-container {
      position: relative;
    }

    .s-c01853cc-7373-4f33-8777-06bdac57eea0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c01853cc-7373-4f33-8777-06bdac57eea0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c01853cc-7373-4f33-8777-06bdac57eea0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-c01853cc-7373-4f33-8777-06bdac57eea0 img.shogun-image,
  #s-c01853cc-7373-4f33-8777-06bdac57eea0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c01853cc-7373-4f33-8777-06bdac57eea0 {
    width: 100%;
    height: auto;
  }

  #s-c01853cc-7373-4f33-8777-06bdac57eea0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c01853cc-7373-4f33-8777-06bdac57eea0.shogun-image {
    
    
  }


.s-c01853cc-7373-4f33-8777-06bdac57eea0 .shogun-image-content {
  
    align-items: center;
  
}

.s-c01853cc-7373-4f33-8777-06bdac57eea0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c01853cc-7373-4f33-8777-06bdac57eea0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c01853cc-7373-4f33-8777-06bdac57eea0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c01853cc-7373-4f33-8777-06bdac57eea0 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-c01853cc-7373-4f33-8777-06bdac57eea0.shogun-image-container {
      position: relative;
    }

    .s-c01853cc-7373-4f33-8777-06bdac57eea0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c01853cc-7373-4f33-8777-06bdac57eea0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c01853cc-7373-4f33-8777-06bdac57eea0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-0c2fc8ed-a1a4-448a-9511-018c9f4fff29 {
  min-height: 50px;
}








#s-0c2fc8ed-a1a4-448a-9511-018c9f4fff29 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0c2fc8ed-a1a4-448a-9511-018c9f4fff29.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 {
  max-width: 1080px;
aspect-ratio: 1080/1920;
text-align: center;
}





  #s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 img.shogun-image,
  #s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 {
    width: 100%;
    height: auto;
  }

  #s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shogun-image {
    
    
  }


.s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 .shogun-image-content {
  
    align-items: center;
  
}

.s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shogun-image-container {
      position: relative;
    }

    .s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 img.shogun-image,
  #s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 {
    width: 100%;
    height: auto;
  }

  #s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shogun-image {
    
    
  }


.s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 .shogun-image-content {
  
    align-items: center;
  
}

.s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shogun-image-container {
      position: relative;
    }

    .s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 img.shogun-image,
  #s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 {
    width: 100%;
    height: auto;
  }

  #s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shogun-image {
    
    
  }


.s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 .shogun-image-content {
  
    align-items: center;
  
}

.s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shogun-image-container {
      position: relative;
    }

    .s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 img.shogun-image,
  #s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 {
    width: 100%;
    height: auto;
  }

  #s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shogun-image {
    
    
  }


.s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 .shogun-image-content {
  
    align-items: center;
  
}

.s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shogun-image-container {
      position: relative;
    }

    .s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 img.shogun-image,
  #s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 {
    width: 100%;
    height: auto;
  }

  #s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shogun-image {
    
    
  }


.s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 .shogun-image-content {
  
    align-items: center;
  
}

.s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shogun-image-container {
      position: relative;
    }

    .s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4164d92b-9fcd-4c1f-a75d-5be5a887c711.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4164d92b-9fcd-4c1f-a75d-5be5a887c711 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-af1cd97b-1d56-4791-abe3-6edba1e4f542 {
  min-height: 50px;
}








#s-af1cd97b-1d56-4791-abe3-6edba1e4f542 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-af1cd97b-1d56-4791-abe3-6edba1e4f542.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee {
  max-width: 1080px;
aspect-ratio: 1080/1920;
text-align: center;
}





  #s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee img.shogun-image,
  #s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee {
    width: 100%;
    height: auto;
  }

  #s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shogun-image {
    
    
  }


.s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee .shogun-image-content {
  
    align-items: center;
  
}

.s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shogun-image-container {
      position: relative;
    }

    .s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee img.shogun-image,
  #s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee {
    width: 100%;
    height: auto;
  }

  #s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shogun-image {
    
    
  }


.s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee .shogun-image-content {
  
    align-items: center;
  
}

.s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shogun-image-container {
      position: relative;
    }

    .s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee img.shogun-image,
  #s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee {
    width: 100%;
    height: auto;
  }

  #s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shogun-image {
    
    
  }


.s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee .shogun-image-content {
  
    align-items: center;
  
}

.s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shogun-image-container {
      position: relative;
    }

    .s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee img.shogun-image,
  #s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee {
    width: 100%;
    height: auto;
  }

  #s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shogun-image {
    
    
  }


.s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee .shogun-image-content {
  
    align-items: center;
  
}

.s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shogun-image-container {
      position: relative;
    }

    .s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee img.shogun-image,
  #s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee {
    width: 100%;
    height: auto;
  }

  #s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shogun-image {
    
    
  }


.s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee .shogun-image-content {
  
    align-items: center;
  
}

.s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shogun-image-container {
      position: relative;
    }

    .s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3fd3ce41-f3b8-4e63-8d7d-3938563385ee img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-8d8e8351-34ef-4fcb-9d63-8cf661ca75f4 {
  min-height: 50px;
}








#s-8d8e8351-34ef-4fcb-9d63-8cf661ca75f4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8d8e8351-34ef-4fcb-9d63-8cf661ca75f4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-879a68a2-abc6-4b39-89ed-8990f8972e21 {
  min-height: 50px;
}








#s-879a68a2-abc6-4b39-89ed-8990f8972e21 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-879a68a2-abc6-4b39-89ed-8990f8972e21.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: ;
  font-family: ;
  font-weight: ;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-c19a5fda-6984-45ba-a51e-8b3c2b93cf3d {
  margin-left: 10%;
margin-right: 10%;
padding-left: 10%;
padding-right: 10%;
}

.shogun-accordion-wrapper .shogun-accordion {
  margin-bottom: 0;
  border-radius: 4px;
}

.shogun-accordion {
  margin-bottom: 20px;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.shogun-accordion-wrapper .shogun-accordion + .shogun-accordion {
  margin-top: 5px;
}

.shogun-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.shogun-accordion-heading {
  color: #333;
  border-bottom: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  cursor: pointer;
}

.shogun-accordion-title {
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer;
  text-decoration: none;
  flex: 1;
  user-select: none;
}

.shogun-accordion-body {
  display: none;
  opacity: 0;
  transition: opacity 0.5s linear;
}

.shogun-accordion-body.shogun-accordion-active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.shogun-accordion-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1.2em;
}

.shogun-accordion-icon > span {
  transition: 0.3s transform;
  position: absolute;
  right: 0;
  font-size: 1.2em;
}

.shogun-accordion-icon.shogun-icon-chevron > span::after {
  content: "▸";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-chevron
  > span {
  transform: rotate(90deg);
}

.shogun-accordion-icon.shogun-icon-plus > span::after {
  content: "＋";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-plus
  > span {
  transform: rotate(-225deg);
}

#s-663f46aa-d524-498f-8f93-8c701f3dbd27 {
  margin-left: 5%;
margin-right: 5%;
padding-top: 10px;
padding-left: 5%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-663f46aa-d524-498f-8f93-8c701f3dbd27 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-663f46aa-d524-498f-8f93-8c701f3dbd27 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(240, 202, 38, 1);
  padding: 10px;
}

#s-663f46aa-d524-498f-8f93-8c701f3dbd27 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(10, 76, 141, 1);
}

#s-663f46aa-d524-498f-8f93-8c701f3dbd27 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-663f46aa-d524-498f-8f93-8c701f3dbd27 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(10, 76, 141, 1);
  text-align: center;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 24px;
}

#s-663f46aa-d524-498f-8f93-8c701f3dbd27 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 24px;
}
#s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 img.shogun-image,
  #s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 {
    width: 100%;
    height: auto;
  }

  #s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shogun-image {
    
    
  }


.s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 .shogun-image-content {
  
    align-items: center;
  
}

.s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shg-align-container {
  display: flex;
  justify-content: center
}

.s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shogun-image-container {
      position: relative;
    }

    .s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 img.shogun-image,
  #s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 {
    width: 100%;
    height: auto;
  }

  #s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shogun-image {
    
    
  }


.s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 .shogun-image-content {
  
    align-items: center;
  
}

.s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shg-align-container {
  display: flex;
  justify-content: center
}

.s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shogun-image-container {
      position: relative;
    }

    .s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 img.shogun-image,
  #s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 {
    width: 100%;
    height: auto;
  }

  #s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shogun-image {
    
    
  }


.s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 .shogun-image-content {
  
    align-items: center;
  
}

.s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shg-align-container {
  display: flex;
  justify-content: center
}

.s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shogun-image-container {
      position: relative;
    }

    .s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 img.shogun-image,
  #s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 {
    width: 100%;
    height: auto;
  }

  #s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shogun-image {
    
    
  }


.s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 .shogun-image-content {
  
    align-items: center;
  
}

.s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shg-align-container {
  display: flex;
  justify-content: center
}

.s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shogun-image-container {
      position: relative;
    }

    .s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 img.shogun-image,
  #s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 {
    width: 100%;
    height: auto;
  }

  #s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shogun-image {
    
    
  }


.s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 .shogun-image-content {
  
    align-items: center;
  
}

.s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shg-align-container {
  display: flex;
  justify-content: center
}

.s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shogun-image-container {
      position: relative;
    }

    .s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-92fdcbc4-8b79-491c-8cd2-a72d41cf6e35 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf {
  max-width: 512px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf img.shogun-image,
  #s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf {
    width: 100%;
    height: auto;
  }

  #s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shogun-image {
    
    
  }


.s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf .shogun-image-content {
  
    align-items: center;
  
}

.s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shogun-image-container {
      position: relative;
    }

    .s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf img.shogun-image,
  #s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf {
    width: 100%;
    height: auto;
  }

  #s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shogun-image {
    
    
  }


.s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf .shogun-image-content {
  
    align-items: center;
  
}

.s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shogun-image-container {
      position: relative;
    }

    .s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf img.shogun-image,
  #s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf {
    width: 100%;
    height: auto;
  }

  #s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shogun-image {
    
    
  }


.s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf .shogun-image-content {
  
    align-items: center;
  
}

.s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shogun-image-container {
      position: relative;
    }

    .s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf img.shogun-image,
  #s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf {
    width: 100%;
    height: auto;
  }

  #s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shogun-image {
    
    
  }


.s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf .shogun-image-content {
  
    align-items: center;
  
}

.s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shogun-image-container {
      position: relative;
    }

    .s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf img.shogun-image,
  #s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf {
    width: 100%;
    height: auto;
  }

  #s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shogun-image {
    
    
  }


.s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf .shogun-image-content {
  
    align-items: center;
  
}

.s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shogun-image-container {
      position: relative;
    }

    .s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9aa4b0f7-a43c-4364-9228-ccb5eff69acf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 {
  max-width: 1021px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 img.shogun-image,
  #s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 {
    width: 100%;
    height: auto;
  }

  #s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shogun-image {
    
    
  }


.s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 .shogun-image-content {
  
    align-items: center;
  
}

.s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shogun-image-container {
      position: relative;
    }

    .s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 img.shogun-image,
  #s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 {
    width: 100%;
    height: auto;
  }

  #s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shogun-image {
    
    
  }


.s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 .shogun-image-content {
  
    align-items: center;
  
}

.s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shogun-image-container {
      position: relative;
    }

    .s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 img.shogun-image,
  #s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 {
    width: 100%;
    height: auto;
  }

  #s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shogun-image {
    
    
  }


.s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 .shogun-image-content {
  
    align-items: center;
  
}

.s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shogun-image-container {
      position: relative;
    }

    .s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 img.shogun-image,
  #s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 {
    width: 100%;
    height: auto;
  }

  #s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shogun-image {
    
    
  }


.s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 .shogun-image-content {
  
    align-items: center;
  
}

.s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shogun-image-container {
      position: relative;
    }

    .s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 img.shogun-image,
  #s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 {
    width: 100%;
    height: auto;
  }

  #s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shogun-image {
    
    
  }


.s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 .shogun-image-content {
  
    align-items: center;
  
}

.s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shogun-image-container {
      position: relative;
    }

    .s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6af7e7fa-a2d7-42de-b819-9aad3cd6fcc5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-6bb00e40-f169-477b-8006-21234168cdc4 {
  max-width: 679px;
aspect-ratio: 679/604;
text-align: center;
}





  #s-6bb00e40-f169-477b-8006-21234168cdc4 img.shogun-image,
  #s-6bb00e40-f169-477b-8006-21234168cdc4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6bb00e40-f169-477b-8006-21234168cdc4 {
    width: 100%;
    height: auto;
  }

  #s-6bb00e40-f169-477b-8006-21234168cdc4 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6bb00e40-f169-477b-8006-21234168cdc4.shogun-image {
    
    
  }


.s-6bb00e40-f169-477b-8006-21234168cdc4 .shogun-image-content {
  
    align-items: center;
  
}

.s-6bb00e40-f169-477b-8006-21234168cdc4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6bb00e40-f169-477b-8006-21234168cdc4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6bb00e40-f169-477b-8006-21234168cdc4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6bb00e40-f169-477b-8006-21234168cdc4 {
      --shg-aspect-ratio: calc(679/604); 
    }

    .s-6bb00e40-f169-477b-8006-21234168cdc4.shogun-image-container {
      position: relative;
    }

    .s-6bb00e40-f169-477b-8006-21234168cdc4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6bb00e40-f169-477b-8006-21234168cdc4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6bb00e40-f169-477b-8006-21234168cdc4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-6bb00e40-f169-477b-8006-21234168cdc4 img.shogun-image,
  #s-6bb00e40-f169-477b-8006-21234168cdc4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6bb00e40-f169-477b-8006-21234168cdc4 {
    width: 100%;
    height: auto;
  }

  #s-6bb00e40-f169-477b-8006-21234168cdc4 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6bb00e40-f169-477b-8006-21234168cdc4.shogun-image {
    
    
  }


.s-6bb00e40-f169-477b-8006-21234168cdc4 .shogun-image-content {
  
    align-items: center;
  
}

.s-6bb00e40-f169-477b-8006-21234168cdc4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6bb00e40-f169-477b-8006-21234168cdc4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6bb00e40-f169-477b-8006-21234168cdc4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6bb00e40-f169-477b-8006-21234168cdc4 {
      --shg-aspect-ratio: calc(679/604); 
    }

    .s-6bb00e40-f169-477b-8006-21234168cdc4.shogun-image-container {
      position: relative;
    }

    .s-6bb00e40-f169-477b-8006-21234168cdc4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6bb00e40-f169-477b-8006-21234168cdc4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6bb00e40-f169-477b-8006-21234168cdc4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-6bb00e40-f169-477b-8006-21234168cdc4 img.shogun-image,
  #s-6bb00e40-f169-477b-8006-21234168cdc4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6bb00e40-f169-477b-8006-21234168cdc4 {
    width: 100%;
    height: auto;
  }

  #s-6bb00e40-f169-477b-8006-21234168cdc4 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6bb00e40-f169-477b-8006-21234168cdc4.shogun-image {
    
    
  }


.s-6bb00e40-f169-477b-8006-21234168cdc4 .shogun-image-content {
  
    align-items: center;
  
}

.s-6bb00e40-f169-477b-8006-21234168cdc4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6bb00e40-f169-477b-8006-21234168cdc4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6bb00e40-f169-477b-8006-21234168cdc4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6bb00e40-f169-477b-8006-21234168cdc4 {
      --shg-aspect-ratio: calc(679/604); 
    }

    .s-6bb00e40-f169-477b-8006-21234168cdc4.shogun-image-container {
      position: relative;
    }

    .s-6bb00e40-f169-477b-8006-21234168cdc4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6bb00e40-f169-477b-8006-21234168cdc4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6bb00e40-f169-477b-8006-21234168cdc4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-6bb00e40-f169-477b-8006-21234168cdc4 img.shogun-image,
  #s-6bb00e40-f169-477b-8006-21234168cdc4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6bb00e40-f169-477b-8006-21234168cdc4 {
    width: 100%;
    height: auto;
  }

  #s-6bb00e40-f169-477b-8006-21234168cdc4 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6bb00e40-f169-477b-8006-21234168cdc4.shogun-image {
    
    
  }


.s-6bb00e40-f169-477b-8006-21234168cdc4 .shogun-image-content {
  
    align-items: center;
  
}

.s-6bb00e40-f169-477b-8006-21234168cdc4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6bb00e40-f169-477b-8006-21234168cdc4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6bb00e40-f169-477b-8006-21234168cdc4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6bb00e40-f169-477b-8006-21234168cdc4 {
      --shg-aspect-ratio: calc(679/604); 
    }

    .s-6bb00e40-f169-477b-8006-21234168cdc4.shogun-image-container {
      position: relative;
    }

    .s-6bb00e40-f169-477b-8006-21234168cdc4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6bb00e40-f169-477b-8006-21234168cdc4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6bb00e40-f169-477b-8006-21234168cdc4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-6bb00e40-f169-477b-8006-21234168cdc4 img.shogun-image,
  #s-6bb00e40-f169-477b-8006-21234168cdc4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6bb00e40-f169-477b-8006-21234168cdc4 {
    width: 100%;
    height: auto;
  }

  #s-6bb00e40-f169-477b-8006-21234168cdc4 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6bb00e40-f169-477b-8006-21234168cdc4.shogun-image {
    
    
  }


.s-6bb00e40-f169-477b-8006-21234168cdc4 .shogun-image-content {
  
    align-items: center;
  
}

.s-6bb00e40-f169-477b-8006-21234168cdc4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6bb00e40-f169-477b-8006-21234168cdc4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6bb00e40-f169-477b-8006-21234168cdc4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6bb00e40-f169-477b-8006-21234168cdc4 {
      --shg-aspect-ratio: calc(679/604); 
    }

    .s-6bb00e40-f169-477b-8006-21234168cdc4.shogun-image-container {
      position: relative;
    }

    .s-6bb00e40-f169-477b-8006-21234168cdc4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6bb00e40-f169-477b-8006-21234168cdc4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6bb00e40-f169-477b-8006-21234168cdc4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 {
  max-width: 717px;
aspect-ratio: 717/315;
text-align: center;
}





  #s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 img.shogun-image,
  #s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 {
    width: 100%;
    height: auto;
  }

  #s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shogun-image {
    
    
  }


.s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 .shogun-image-content {
  
    align-items: center;
  
}

.s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 {
      --shg-aspect-ratio: calc(717/315); 
    }

    .s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shogun-image-container {
      position: relative;
    }

    .s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 img.shogun-image,
  #s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 {
    width: 100%;
    height: auto;
  }

  #s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shogun-image {
    
    
  }


.s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 .shogun-image-content {
  
    align-items: center;
  
}

.s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 {
      --shg-aspect-ratio: calc(717/315); 
    }

    .s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shogun-image-container {
      position: relative;
    }

    .s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 img.shogun-image,
  #s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 {
    width: 100%;
    height: auto;
  }

  #s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shogun-image {
    
    
  }


.s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 .shogun-image-content {
  
    align-items: center;
  
}

.s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 {
      --shg-aspect-ratio: calc(717/315); 
    }

    .s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shogun-image-container {
      position: relative;
    }

    .s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 img.shogun-image,
  #s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 {
    width: 100%;
    height: auto;
  }

  #s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shogun-image {
    
    
  }


.s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 .shogun-image-content {
  
    align-items: center;
  
}

.s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 {
      --shg-aspect-ratio: calc(717/315); 
    }

    .s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shogun-image-container {
      position: relative;
    }

    .s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 img.shogun-image,
  #s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 {
    width: 100%;
    height: auto;
  }

  #s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shogun-image {
    
    
  }


.s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 .shogun-image-content {
  
    align-items: center;
  
}

.s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 {
      --shg-aspect-ratio: calc(717/315); 
    }

    .s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shogun-image-container {
      position: relative;
    }

    .s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5e3a4753-e65e-4b88-94c3-26cb5ff0a341 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-0a112b07-536d-42fc-99f0-b6cfe97f00ca {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-0a112b07-536d-42fc-99f0-b6cfe97f00ca img.shogun-image,
  #s-0a112b07-536d-42fc-99f0-b6cfe97f00ca .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0a112b07-536d-42fc-99f0-b6cfe97f00ca {
    width: 100%;
    height: auto;
  }

  #s-0a112b07-536d-42fc-99f0-b6cfe97f00ca img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shogun-image {
    
    
  }


.s-0a112b07-536d-42fc-99f0-b6cfe97f00ca .shogun-image-content {
  
    align-items: center;
  
}

.s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0a112b07-536d-42fc-99f0-b6cfe97f00ca {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shogun-image-container {
      position: relative;
    }

    .s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0a112b07-536d-42fc-99f0-b6cfe97f00ca img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-0a112b07-536d-42fc-99f0-b6cfe97f00ca img.shogun-image,
  #s-0a112b07-536d-42fc-99f0-b6cfe97f00ca .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0a112b07-536d-42fc-99f0-b6cfe97f00ca {
    width: 100%;
    height: auto;
  }

  #s-0a112b07-536d-42fc-99f0-b6cfe97f00ca img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shogun-image {
    
    
  }


.s-0a112b07-536d-42fc-99f0-b6cfe97f00ca .shogun-image-content {
  
    align-items: center;
  
}

.s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0a112b07-536d-42fc-99f0-b6cfe97f00ca {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shogun-image-container {
      position: relative;
    }

    .s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0a112b07-536d-42fc-99f0-b6cfe97f00ca img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-0a112b07-536d-42fc-99f0-b6cfe97f00ca img.shogun-image,
  #s-0a112b07-536d-42fc-99f0-b6cfe97f00ca .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0a112b07-536d-42fc-99f0-b6cfe97f00ca {
    width: 100%;
    height: auto;
  }

  #s-0a112b07-536d-42fc-99f0-b6cfe97f00ca img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shogun-image {
    
    
  }


.s-0a112b07-536d-42fc-99f0-b6cfe97f00ca .shogun-image-content {
  
    align-items: center;
  
}

.s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0a112b07-536d-42fc-99f0-b6cfe97f00ca {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shogun-image-container {
      position: relative;
    }

    .s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0a112b07-536d-42fc-99f0-b6cfe97f00ca img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-0a112b07-536d-42fc-99f0-b6cfe97f00ca img.shogun-image,
  #s-0a112b07-536d-42fc-99f0-b6cfe97f00ca .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0a112b07-536d-42fc-99f0-b6cfe97f00ca {
    width: 100%;
    height: auto;
  }

  #s-0a112b07-536d-42fc-99f0-b6cfe97f00ca img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shogun-image {
    
    
  }


.s-0a112b07-536d-42fc-99f0-b6cfe97f00ca .shogun-image-content {
  
    align-items: center;
  
}

.s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0a112b07-536d-42fc-99f0-b6cfe97f00ca {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shogun-image-container {
      position: relative;
    }

    .s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0a112b07-536d-42fc-99f0-b6cfe97f00ca img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-0a112b07-536d-42fc-99f0-b6cfe97f00ca img.shogun-image,
  #s-0a112b07-536d-42fc-99f0-b6cfe97f00ca .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0a112b07-536d-42fc-99f0-b6cfe97f00ca {
    width: 100%;
    height: auto;
  }

  #s-0a112b07-536d-42fc-99f0-b6cfe97f00ca img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shogun-image {
    
    
  }


.s-0a112b07-536d-42fc-99f0-b6cfe97f00ca .shogun-image-content {
  
    align-items: center;
  
}

.s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0a112b07-536d-42fc-99f0-b6cfe97f00ca {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shogun-image-container {
      position: relative;
    }

    .s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0a112b07-536d-42fc-99f0-b6cfe97f00ca.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0a112b07-536d-42fc-99f0-b6cfe97f00ca img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad {
  max-width: 1338px;
aspect-ratio: 1338/4226;
text-align: center;
}





  #s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad img.shogun-image,
  #s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad {
    width: 100%;
    height: auto;
  }

  #s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shogun-image {
    
    
  }


.s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad .shogun-image-content {
  
    align-items: center;
  
}

.s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad {
      --shg-aspect-ratio: calc(1338/4226); 
    }

    .s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shogun-image-container {
      position: relative;
    }

    .s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad img.shogun-image,
  #s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad {
    width: 100%;
    height: auto;
  }

  #s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shogun-image {
    
    
  }


.s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad .shogun-image-content {
  
    align-items: center;
  
}

.s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad {
      --shg-aspect-ratio: calc(1338/4226); 
    }

    .s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shogun-image-container {
      position: relative;
    }

    .s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad img.shogun-image,
  #s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad {
    width: 100%;
    height: auto;
  }

  #s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shogun-image {
    
    
  }


.s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad .shogun-image-content {
  
    align-items: center;
  
}

.s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad {
      --shg-aspect-ratio: calc(1338/4226); 
    }

    .s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shogun-image-container {
      position: relative;
    }

    .s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad img.shogun-image,
  #s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad {
    width: 100%;
    height: auto;
  }

  #s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shogun-image {
    
    
  }


.s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad .shogun-image-content {
  
    align-items: center;
  
}

.s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad {
      --shg-aspect-ratio: calc(1338/4226); 
    }

    .s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shogun-image-container {
      position: relative;
    }

    .s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad img.shogun-image,
  #s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad {
    width: 100%;
    height: auto;
  }

  #s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shogun-image {
    
    
  }


.s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad .shogun-image-content {
  
    align-items: center;
  
}

.s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad {
      --shg-aspect-ratio: calc(1338/4226); 
    }

    .s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shogun-image-container {
      position: relative;
    }

    .s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c2f0e2ac-f6c8-4138-8798-dd6f181618ad img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 {
  max-width: 426px;
aspect-ratio: 426/97;
text-align: center;
}





  #s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 img.shogun-image,
  #s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 {
    width: 100%;
    height: auto;
  }

  #s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shogun-image {
    
    
  }


.s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 .shogun-image-content {
  
    align-items: center;
  
}

.s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 {
      --shg-aspect-ratio: calc(426/97); 
    }

    .s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shogun-image-container {
      position: relative;
    }

    .s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 img.shogun-image,
  #s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 {
    width: 100%;
    height: auto;
  }

  #s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shogun-image {
    
    
  }


.s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 .shogun-image-content {
  
    align-items: center;
  
}

.s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 {
      --shg-aspect-ratio: calc(426/97); 
    }

    .s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shogun-image-container {
      position: relative;
    }

    .s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 img.shogun-image,
  #s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 {
    width: 100%;
    height: auto;
  }

  #s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shogun-image {
    
    
  }


.s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 .shogun-image-content {
  
    align-items: center;
  
}

.s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 {
      --shg-aspect-ratio: calc(426/97); 
    }

    .s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shogun-image-container {
      position: relative;
    }

    .s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 img.shogun-image,
  #s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 {
    width: 100%;
    height: auto;
  }

  #s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shogun-image {
    
    
  }


.s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 .shogun-image-content {
  
    align-items: center;
  
}

.s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 {
      --shg-aspect-ratio: calc(426/97); 
    }

    .s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shogun-image-container {
      position: relative;
    }

    .s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 img.shogun-image,
  #s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 {
    width: 100%;
    height: auto;
  }

  #s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shogun-image {
    
    
  }


.s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 .shogun-image-content {
  
    align-items: center;
  
}

.s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 {
      --shg-aspect-ratio: calc(426/97); 
    }

    .s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shogun-image-container {
      position: relative;
    }

    .s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-29c3dc56-9b05-40e4-8c29-240e4700c5d7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-29c3dc56-9b05-40e4-8c29-240e4700c5d7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
.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-7edd6574-6db5-4a52-9655-f2e98f1c708d {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-7edd6574-6db5-4a52-9655-f2e98f1c708d .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-7edd6574-6db5-4a52-9655-f2e98f1c708d .shg-sld-nav-button.shg-sld-left,
#s-7edd6574-6db5-4a52-9655-f2e98f1c708d .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-10dc3709-b8fa-41c7-82d4-633be7be57c1 {
  max-width: 2018px;
aspect-ratio: 2018/2297;
text-align: center;
}





  #s-10dc3709-b8fa-41c7-82d4-633be7be57c1 img.shogun-image,
  #s-10dc3709-b8fa-41c7-82d4-633be7be57c1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-10dc3709-b8fa-41c7-82d4-633be7be57c1 {
    width: 100%;
    height: auto;
  }

  #s-10dc3709-b8fa-41c7-82d4-633be7be57c1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shogun-image {
    
    
  }


.s-10dc3709-b8fa-41c7-82d4-633be7be57c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-10dc3709-b8fa-41c7-82d4-633be7be57c1 {
      --shg-aspect-ratio: calc(2018/2297); 
    }

    .s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shogun-image-container {
      position: relative;
    }

    .s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-10dc3709-b8fa-41c7-82d4-633be7be57c1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-10dc3709-b8fa-41c7-82d4-633be7be57c1 img.shogun-image,
  #s-10dc3709-b8fa-41c7-82d4-633be7be57c1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-10dc3709-b8fa-41c7-82d4-633be7be57c1 {
    width: 100%;
    height: auto;
  }

  #s-10dc3709-b8fa-41c7-82d4-633be7be57c1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shogun-image {
    
    
  }


.s-10dc3709-b8fa-41c7-82d4-633be7be57c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-10dc3709-b8fa-41c7-82d4-633be7be57c1 {
      --shg-aspect-ratio: calc(2018/2297); 
    }

    .s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shogun-image-container {
      position: relative;
    }

    .s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-10dc3709-b8fa-41c7-82d4-633be7be57c1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-10dc3709-b8fa-41c7-82d4-633be7be57c1 img.shogun-image,
  #s-10dc3709-b8fa-41c7-82d4-633be7be57c1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-10dc3709-b8fa-41c7-82d4-633be7be57c1 {
    width: 100%;
    height: auto;
  }

  #s-10dc3709-b8fa-41c7-82d4-633be7be57c1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shogun-image {
    
    
  }


.s-10dc3709-b8fa-41c7-82d4-633be7be57c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-10dc3709-b8fa-41c7-82d4-633be7be57c1 {
      --shg-aspect-ratio: calc(2018/2297); 
    }

    .s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shogun-image-container {
      position: relative;
    }

    .s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-10dc3709-b8fa-41c7-82d4-633be7be57c1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-10dc3709-b8fa-41c7-82d4-633be7be57c1 img.shogun-image,
  #s-10dc3709-b8fa-41c7-82d4-633be7be57c1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-10dc3709-b8fa-41c7-82d4-633be7be57c1 {
    width: 100%;
    height: auto;
  }

  #s-10dc3709-b8fa-41c7-82d4-633be7be57c1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shogun-image {
    
    
  }


.s-10dc3709-b8fa-41c7-82d4-633be7be57c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-10dc3709-b8fa-41c7-82d4-633be7be57c1 {
      --shg-aspect-ratio: calc(2018/2297); 
    }

    .s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shogun-image-container {
      position: relative;
    }

    .s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-10dc3709-b8fa-41c7-82d4-633be7be57c1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-10dc3709-b8fa-41c7-82d4-633be7be57c1 img.shogun-image,
  #s-10dc3709-b8fa-41c7-82d4-633be7be57c1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-10dc3709-b8fa-41c7-82d4-633be7be57c1 {
    width: 100%;
    height: auto;
  }

  #s-10dc3709-b8fa-41c7-82d4-633be7be57c1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shogun-image {
    
    
  }


.s-10dc3709-b8fa-41c7-82d4-633be7be57c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-10dc3709-b8fa-41c7-82d4-633be7be57c1 {
      --shg-aspect-ratio: calc(2018/2297); 
    }

    .s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shogun-image-container {
      position: relative;
    }

    .s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-10dc3709-b8fa-41c7-82d4-633be7be57c1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-10dc3709-b8fa-41c7-82d4-633be7be57c1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-de528e58-aea2-4a64-9c9e-81e1b06201fe {
  max-width: 2563px;
aspect-ratio: 2563/3704;
text-align: center;
}





  #s-de528e58-aea2-4a64-9c9e-81e1b06201fe img.shogun-image,
  #s-de528e58-aea2-4a64-9c9e-81e1b06201fe .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-de528e58-aea2-4a64-9c9e-81e1b06201fe {
    width: 100%;
    height: auto;
  }

  #s-de528e58-aea2-4a64-9c9e-81e1b06201fe img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shogun-image {
    
    
  }


.s-de528e58-aea2-4a64-9c9e-81e1b06201fe .shogun-image-content {
  
    align-items: center;
  
}

.s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-de528e58-aea2-4a64-9c9e-81e1b06201fe {
      --shg-aspect-ratio: calc(2563/3704); 
    }

    .s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shogun-image-container {
      position: relative;
    }

    .s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-de528e58-aea2-4a64-9c9e-81e1b06201fe img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-de528e58-aea2-4a64-9c9e-81e1b06201fe img.shogun-image,
  #s-de528e58-aea2-4a64-9c9e-81e1b06201fe .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-de528e58-aea2-4a64-9c9e-81e1b06201fe {
    width: 100%;
    height: auto;
  }

  #s-de528e58-aea2-4a64-9c9e-81e1b06201fe img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shogun-image {
    
    
  }


.s-de528e58-aea2-4a64-9c9e-81e1b06201fe .shogun-image-content {
  
    align-items: center;
  
}

.s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-de528e58-aea2-4a64-9c9e-81e1b06201fe {
      --shg-aspect-ratio: calc(2563/3704); 
    }

    .s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shogun-image-container {
      position: relative;
    }

    .s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-de528e58-aea2-4a64-9c9e-81e1b06201fe img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-de528e58-aea2-4a64-9c9e-81e1b06201fe img.shogun-image,
  #s-de528e58-aea2-4a64-9c9e-81e1b06201fe .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-de528e58-aea2-4a64-9c9e-81e1b06201fe {
    width: 100%;
    height: auto;
  }

  #s-de528e58-aea2-4a64-9c9e-81e1b06201fe img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shogun-image {
    
    
  }


.s-de528e58-aea2-4a64-9c9e-81e1b06201fe .shogun-image-content {
  
    align-items: center;
  
}

.s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-de528e58-aea2-4a64-9c9e-81e1b06201fe {
      --shg-aspect-ratio: calc(2563/3704); 
    }

    .s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shogun-image-container {
      position: relative;
    }

    .s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-de528e58-aea2-4a64-9c9e-81e1b06201fe img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-de528e58-aea2-4a64-9c9e-81e1b06201fe img.shogun-image,
  #s-de528e58-aea2-4a64-9c9e-81e1b06201fe .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-de528e58-aea2-4a64-9c9e-81e1b06201fe {
    width: 100%;
    height: auto;
  }

  #s-de528e58-aea2-4a64-9c9e-81e1b06201fe img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shogun-image {
    
    
  }


.s-de528e58-aea2-4a64-9c9e-81e1b06201fe .shogun-image-content {
  
    align-items: center;
  
}

.s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-de528e58-aea2-4a64-9c9e-81e1b06201fe {
      --shg-aspect-ratio: calc(2563/3704); 
    }

    .s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shogun-image-container {
      position: relative;
    }

    .s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-de528e58-aea2-4a64-9c9e-81e1b06201fe img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-de528e58-aea2-4a64-9c9e-81e1b06201fe img.shogun-image,
  #s-de528e58-aea2-4a64-9c9e-81e1b06201fe .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-de528e58-aea2-4a64-9c9e-81e1b06201fe {
    width: 100%;
    height: auto;
  }

  #s-de528e58-aea2-4a64-9c9e-81e1b06201fe img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shogun-image {
    
    
  }


.s-de528e58-aea2-4a64-9c9e-81e1b06201fe .shogun-image-content {
  
    align-items: center;
  
}

.s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-de528e58-aea2-4a64-9c9e-81e1b06201fe {
      --shg-aspect-ratio: calc(2563/3704); 
    }

    .s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shogun-image-container {
      position: relative;
    }

    .s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-de528e58-aea2-4a64-9c9e-81e1b06201fe.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-de528e58-aea2-4a64-9c9e-81e1b06201fe img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-b46852aa-812f-4816-b06c-f3d176e6819d {
  max-width: 2706px;
aspect-ratio: 2706/4802;
text-align: center;
}





  #s-b46852aa-812f-4816-b06c-f3d176e6819d img.shogun-image,
  #s-b46852aa-812f-4816-b06c-f3d176e6819d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b46852aa-812f-4816-b06c-f3d176e6819d {
    width: 100%;
    height: auto;
  }

  #s-b46852aa-812f-4816-b06c-f3d176e6819d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b46852aa-812f-4816-b06c-f3d176e6819d.shogun-image {
    
    
  }


.s-b46852aa-812f-4816-b06c-f3d176e6819d .shogun-image-content {
  
    align-items: center;
  
}

.s-b46852aa-812f-4816-b06c-f3d176e6819d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b46852aa-812f-4816-b06c-f3d176e6819d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b46852aa-812f-4816-b06c-f3d176e6819d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b46852aa-812f-4816-b06c-f3d176e6819d {
      --shg-aspect-ratio: calc(2706/4802); 
    }

    .s-b46852aa-812f-4816-b06c-f3d176e6819d.shogun-image-container {
      position: relative;
    }

    .s-b46852aa-812f-4816-b06c-f3d176e6819d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b46852aa-812f-4816-b06c-f3d176e6819d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b46852aa-812f-4816-b06c-f3d176e6819d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-b46852aa-812f-4816-b06c-f3d176e6819d img.shogun-image,
  #s-b46852aa-812f-4816-b06c-f3d176e6819d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b46852aa-812f-4816-b06c-f3d176e6819d {
    width: 100%;
    height: auto;
  }

  #s-b46852aa-812f-4816-b06c-f3d176e6819d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b46852aa-812f-4816-b06c-f3d176e6819d.shogun-image {
    
    
  }


.s-b46852aa-812f-4816-b06c-f3d176e6819d .shogun-image-content {
  
    align-items: center;
  
}

.s-b46852aa-812f-4816-b06c-f3d176e6819d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b46852aa-812f-4816-b06c-f3d176e6819d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b46852aa-812f-4816-b06c-f3d176e6819d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b46852aa-812f-4816-b06c-f3d176e6819d {
      --shg-aspect-ratio: calc(2706/4802); 
    }

    .s-b46852aa-812f-4816-b06c-f3d176e6819d.shogun-image-container {
      position: relative;
    }

    .s-b46852aa-812f-4816-b06c-f3d176e6819d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b46852aa-812f-4816-b06c-f3d176e6819d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b46852aa-812f-4816-b06c-f3d176e6819d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-b46852aa-812f-4816-b06c-f3d176e6819d img.shogun-image,
  #s-b46852aa-812f-4816-b06c-f3d176e6819d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b46852aa-812f-4816-b06c-f3d176e6819d {
    width: 100%;
    height: auto;
  }

  #s-b46852aa-812f-4816-b06c-f3d176e6819d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b46852aa-812f-4816-b06c-f3d176e6819d.shogun-image {
    
    
  }


.s-b46852aa-812f-4816-b06c-f3d176e6819d .shogun-image-content {
  
    align-items: center;
  
}

.s-b46852aa-812f-4816-b06c-f3d176e6819d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b46852aa-812f-4816-b06c-f3d176e6819d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b46852aa-812f-4816-b06c-f3d176e6819d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b46852aa-812f-4816-b06c-f3d176e6819d {
      --shg-aspect-ratio: calc(2706/4802); 
    }

    .s-b46852aa-812f-4816-b06c-f3d176e6819d.shogun-image-container {
      position: relative;
    }

    .s-b46852aa-812f-4816-b06c-f3d176e6819d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b46852aa-812f-4816-b06c-f3d176e6819d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b46852aa-812f-4816-b06c-f3d176e6819d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-b46852aa-812f-4816-b06c-f3d176e6819d img.shogun-image,
  #s-b46852aa-812f-4816-b06c-f3d176e6819d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b46852aa-812f-4816-b06c-f3d176e6819d {
    width: 100%;
    height: auto;
  }

  #s-b46852aa-812f-4816-b06c-f3d176e6819d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b46852aa-812f-4816-b06c-f3d176e6819d.shogun-image {
    
    
  }


.s-b46852aa-812f-4816-b06c-f3d176e6819d .shogun-image-content {
  
    align-items: center;
  
}

.s-b46852aa-812f-4816-b06c-f3d176e6819d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b46852aa-812f-4816-b06c-f3d176e6819d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b46852aa-812f-4816-b06c-f3d176e6819d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b46852aa-812f-4816-b06c-f3d176e6819d {
      --shg-aspect-ratio: calc(2706/4802); 
    }

    .s-b46852aa-812f-4816-b06c-f3d176e6819d.shogun-image-container {
      position: relative;
    }

    .s-b46852aa-812f-4816-b06c-f3d176e6819d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b46852aa-812f-4816-b06c-f3d176e6819d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b46852aa-812f-4816-b06c-f3d176e6819d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-b46852aa-812f-4816-b06c-f3d176e6819d img.shogun-image,
  #s-b46852aa-812f-4816-b06c-f3d176e6819d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b46852aa-812f-4816-b06c-f3d176e6819d {
    width: 100%;
    height: auto;
  }

  #s-b46852aa-812f-4816-b06c-f3d176e6819d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b46852aa-812f-4816-b06c-f3d176e6819d.shogun-image {
    
    
  }


.s-b46852aa-812f-4816-b06c-f3d176e6819d .shogun-image-content {
  
    align-items: center;
  
}

.s-b46852aa-812f-4816-b06c-f3d176e6819d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b46852aa-812f-4816-b06c-f3d176e6819d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b46852aa-812f-4816-b06c-f3d176e6819d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b46852aa-812f-4816-b06c-f3d176e6819d {
      --shg-aspect-ratio: calc(2706/4802); 
    }

    .s-b46852aa-812f-4816-b06c-f3d176e6819d.shogun-image-container {
      position: relative;
    }

    .s-b46852aa-812f-4816-b06c-f3d176e6819d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b46852aa-812f-4816-b06c-f3d176e6819d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b46852aa-812f-4816-b06c-f3d176e6819d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-8e2a899d-5cd3-48a6-bada-97522b3b12cc {
  max-width: 2557px;
aspect-ratio: 2557/7323;
text-align: center;
}





  #s-8e2a899d-5cd3-48a6-bada-97522b3b12cc img.shogun-image,
  #s-8e2a899d-5cd3-48a6-bada-97522b3b12cc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8e2a899d-5cd3-48a6-bada-97522b3b12cc {
    width: 100%;
    height: auto;
  }

  #s-8e2a899d-5cd3-48a6-bada-97522b3b12cc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shogun-image {
    
    
  }


.s-8e2a899d-5cd3-48a6-bada-97522b3b12cc .shogun-image-content {
  
    align-items: center;
  
}

.s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8e2a899d-5cd3-48a6-bada-97522b3b12cc {
      --shg-aspect-ratio: calc(2557/7323); 
    }

    .s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shogun-image-container {
      position: relative;
    }

    .s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8e2a899d-5cd3-48a6-bada-97522b3b12cc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-8e2a899d-5cd3-48a6-bada-97522b3b12cc img.shogun-image,
  #s-8e2a899d-5cd3-48a6-bada-97522b3b12cc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8e2a899d-5cd3-48a6-bada-97522b3b12cc {
    width: 100%;
    height: auto;
  }

  #s-8e2a899d-5cd3-48a6-bada-97522b3b12cc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shogun-image {
    
    
  }


.s-8e2a899d-5cd3-48a6-bada-97522b3b12cc .shogun-image-content {
  
    align-items: center;
  
}

.s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8e2a899d-5cd3-48a6-bada-97522b3b12cc {
      --shg-aspect-ratio: calc(2557/7323); 
    }

    .s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shogun-image-container {
      position: relative;
    }

    .s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8e2a899d-5cd3-48a6-bada-97522b3b12cc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-8e2a899d-5cd3-48a6-bada-97522b3b12cc img.shogun-image,
  #s-8e2a899d-5cd3-48a6-bada-97522b3b12cc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8e2a899d-5cd3-48a6-bada-97522b3b12cc {
    width: 100%;
    height: auto;
  }

  #s-8e2a899d-5cd3-48a6-bada-97522b3b12cc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shogun-image {
    
    
  }


.s-8e2a899d-5cd3-48a6-bada-97522b3b12cc .shogun-image-content {
  
    align-items: center;
  
}

.s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8e2a899d-5cd3-48a6-bada-97522b3b12cc {
      --shg-aspect-ratio: calc(2557/7323); 
    }

    .s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shogun-image-container {
      position: relative;
    }

    .s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8e2a899d-5cd3-48a6-bada-97522b3b12cc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-8e2a899d-5cd3-48a6-bada-97522b3b12cc img.shogun-image,
  #s-8e2a899d-5cd3-48a6-bada-97522b3b12cc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8e2a899d-5cd3-48a6-bada-97522b3b12cc {
    width: 100%;
    height: auto;
  }

  #s-8e2a899d-5cd3-48a6-bada-97522b3b12cc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shogun-image {
    
    
  }


.s-8e2a899d-5cd3-48a6-bada-97522b3b12cc .shogun-image-content {
  
    align-items: center;
  
}

.s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8e2a899d-5cd3-48a6-bada-97522b3b12cc {
      --shg-aspect-ratio: calc(2557/7323); 
    }

    .s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shogun-image-container {
      position: relative;
    }

    .s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8e2a899d-5cd3-48a6-bada-97522b3b12cc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-8e2a899d-5cd3-48a6-bada-97522b3b12cc img.shogun-image,
  #s-8e2a899d-5cd3-48a6-bada-97522b3b12cc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8e2a899d-5cd3-48a6-bada-97522b3b12cc {
    width: 100%;
    height: auto;
  }

  #s-8e2a899d-5cd3-48a6-bada-97522b3b12cc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shogun-image {
    
    
  }


.s-8e2a899d-5cd3-48a6-bada-97522b3b12cc .shogun-image-content {
  
    align-items: center;
  
}

.s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8e2a899d-5cd3-48a6-bada-97522b3b12cc {
      --shg-aspect-ratio: calc(2557/7323); 
    }

    .s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shogun-image-container {
      position: relative;
    }

    .s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8e2a899d-5cd3-48a6-bada-97522b3b12cc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8e2a899d-5cd3-48a6-bada-97522b3b12cc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-5d6969d1-e95f-4c68-b22f-9c070f9687ed {
  max-width: 2637px;
aspect-ratio: 2637/5517;
text-align: center;
}





  #s-5d6969d1-e95f-4c68-b22f-9c070f9687ed img.shogun-image,
  #s-5d6969d1-e95f-4c68-b22f-9c070f9687ed .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5d6969d1-e95f-4c68-b22f-9c070f9687ed {
    width: 100%;
    height: auto;
  }

  #s-5d6969d1-e95f-4c68-b22f-9c070f9687ed img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shogun-image {
    
    
  }


.s-5d6969d1-e95f-4c68-b22f-9c070f9687ed .shogun-image-content {
  
    align-items: center;
  
}

.s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5d6969d1-e95f-4c68-b22f-9c070f9687ed {
      --shg-aspect-ratio: calc(2637/5517); 
    }

    .s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shogun-image-container {
      position: relative;
    }

    .s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5d6969d1-e95f-4c68-b22f-9c070f9687ed img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-5d6969d1-e95f-4c68-b22f-9c070f9687ed img.shogun-image,
  #s-5d6969d1-e95f-4c68-b22f-9c070f9687ed .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5d6969d1-e95f-4c68-b22f-9c070f9687ed {
    width: 100%;
    height: auto;
  }

  #s-5d6969d1-e95f-4c68-b22f-9c070f9687ed img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shogun-image {
    
    
  }


.s-5d6969d1-e95f-4c68-b22f-9c070f9687ed .shogun-image-content {
  
    align-items: center;
  
}

.s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5d6969d1-e95f-4c68-b22f-9c070f9687ed {
      --shg-aspect-ratio: calc(2637/5517); 
    }

    .s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shogun-image-container {
      position: relative;
    }

    .s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5d6969d1-e95f-4c68-b22f-9c070f9687ed img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-5d6969d1-e95f-4c68-b22f-9c070f9687ed img.shogun-image,
  #s-5d6969d1-e95f-4c68-b22f-9c070f9687ed .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5d6969d1-e95f-4c68-b22f-9c070f9687ed {
    width: 100%;
    height: auto;
  }

  #s-5d6969d1-e95f-4c68-b22f-9c070f9687ed img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shogun-image {
    
    
  }


.s-5d6969d1-e95f-4c68-b22f-9c070f9687ed .shogun-image-content {
  
    align-items: center;
  
}

.s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5d6969d1-e95f-4c68-b22f-9c070f9687ed {
      --shg-aspect-ratio: calc(2637/5517); 
    }

    .s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shogun-image-container {
      position: relative;
    }

    .s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5d6969d1-e95f-4c68-b22f-9c070f9687ed img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-5d6969d1-e95f-4c68-b22f-9c070f9687ed img.shogun-image,
  #s-5d6969d1-e95f-4c68-b22f-9c070f9687ed .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5d6969d1-e95f-4c68-b22f-9c070f9687ed {
    width: 100%;
    height: auto;
  }

  #s-5d6969d1-e95f-4c68-b22f-9c070f9687ed img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shogun-image {
    
    
  }


.s-5d6969d1-e95f-4c68-b22f-9c070f9687ed .shogun-image-content {
  
    align-items: center;
  
}

.s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5d6969d1-e95f-4c68-b22f-9c070f9687ed {
      --shg-aspect-ratio: calc(2637/5517); 
    }

    .s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shogun-image-container {
      position: relative;
    }

    .s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5d6969d1-e95f-4c68-b22f-9c070f9687ed img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-5d6969d1-e95f-4c68-b22f-9c070f9687ed img.shogun-image,
  #s-5d6969d1-e95f-4c68-b22f-9c070f9687ed .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5d6969d1-e95f-4c68-b22f-9c070f9687ed {
    width: 100%;
    height: auto;
  }

  #s-5d6969d1-e95f-4c68-b22f-9c070f9687ed img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shogun-image {
    
    
  }


.s-5d6969d1-e95f-4c68-b22f-9c070f9687ed .shogun-image-content {
  
    align-items: center;
  
}

.s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5d6969d1-e95f-4c68-b22f-9c070f9687ed {
      --shg-aspect-ratio: calc(2637/5517); 
    }

    .s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shogun-image-container {
      position: relative;
    }

    .s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5d6969d1-e95f-4c68-b22f-9c070f9687ed.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5d6969d1-e95f-4c68-b22f-9c070f9687ed img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b {
  max-width: 2656px;
aspect-ratio: 2656/6087;
text-align: center;
}





  #s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b img.shogun-image,
  #s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b {
    width: 100%;
    height: auto;
  }

  #s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shogun-image {
    
    
  }


.s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b .shogun-image-content {
  
    align-items: center;
  
}

.s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b {
      --shg-aspect-ratio: calc(2656/6087); 
    }

    .s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shogun-image-container {
      position: relative;
    }

    .s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b img.shogun-image,
  #s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b {
    width: 100%;
    height: auto;
  }

  #s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shogun-image {
    
    
  }


.s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b .shogun-image-content {
  
    align-items: center;
  
}

.s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b {
      --shg-aspect-ratio: calc(2656/6087); 
    }

    .s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shogun-image-container {
      position: relative;
    }

    .s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b img.shogun-image,
  #s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b {
    width: 100%;
    height: auto;
  }

  #s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shogun-image {
    
    
  }


.s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b .shogun-image-content {
  
    align-items: center;
  
}

.s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b {
      --shg-aspect-ratio: calc(2656/6087); 
    }

    .s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shogun-image-container {
      position: relative;
    }

    .s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b img.shogun-image,
  #s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b {
    width: 100%;
    height: auto;
  }

  #s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shogun-image {
    
    
  }


.s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b .shogun-image-content {
  
    align-items: center;
  
}

.s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b {
      --shg-aspect-ratio: calc(2656/6087); 
    }

    .s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shogun-image-container {
      position: relative;
    }

    .s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b img.shogun-image,
  #s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b {
    width: 100%;
    height: auto;
  }

  #s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shogun-image {
    
    
  }


.s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b .shogun-image-content {
  
    align-items: center;
  
}

.s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b {
      --shg-aspect-ratio: calc(2656/6087); 
    }

    .s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shogun-image-container {
      position: relative;
    }

    .s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f2c5dcd4-a0d3-4d4f-9ac9-2f2c3013a82b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-0912858e-ce64-4423-b06b-9a6a3160e95b {
  max-width: 2642px;
aspect-ratio: 2642/3042;
text-align: center;
}





  #s-0912858e-ce64-4423-b06b-9a6a3160e95b img.shogun-image,
  #s-0912858e-ce64-4423-b06b-9a6a3160e95b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0912858e-ce64-4423-b06b-9a6a3160e95b {
    width: 100%;
    height: auto;
  }

  #s-0912858e-ce64-4423-b06b-9a6a3160e95b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0912858e-ce64-4423-b06b-9a6a3160e95b.shogun-image {
    
    
  }


.s-0912858e-ce64-4423-b06b-9a6a3160e95b .shogun-image-content {
  
    align-items: center;
  
}

.s-0912858e-ce64-4423-b06b-9a6a3160e95b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0912858e-ce64-4423-b06b-9a6a3160e95b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0912858e-ce64-4423-b06b-9a6a3160e95b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0912858e-ce64-4423-b06b-9a6a3160e95b {
      --shg-aspect-ratio: calc(2642/3042); 
    }

    .s-0912858e-ce64-4423-b06b-9a6a3160e95b.shogun-image-container {
      position: relative;
    }

    .s-0912858e-ce64-4423-b06b-9a6a3160e95b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0912858e-ce64-4423-b06b-9a6a3160e95b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0912858e-ce64-4423-b06b-9a6a3160e95b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-0912858e-ce64-4423-b06b-9a6a3160e95b img.shogun-image,
  #s-0912858e-ce64-4423-b06b-9a6a3160e95b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0912858e-ce64-4423-b06b-9a6a3160e95b {
    width: 100%;
    height: auto;
  }

  #s-0912858e-ce64-4423-b06b-9a6a3160e95b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0912858e-ce64-4423-b06b-9a6a3160e95b.shogun-image {
    
    
  }


.s-0912858e-ce64-4423-b06b-9a6a3160e95b .shogun-image-content {
  
    align-items: center;
  
}

.s-0912858e-ce64-4423-b06b-9a6a3160e95b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0912858e-ce64-4423-b06b-9a6a3160e95b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0912858e-ce64-4423-b06b-9a6a3160e95b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0912858e-ce64-4423-b06b-9a6a3160e95b {
      --shg-aspect-ratio: calc(2642/3042); 
    }

    .s-0912858e-ce64-4423-b06b-9a6a3160e95b.shogun-image-container {
      position: relative;
    }

    .s-0912858e-ce64-4423-b06b-9a6a3160e95b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0912858e-ce64-4423-b06b-9a6a3160e95b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0912858e-ce64-4423-b06b-9a6a3160e95b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-0912858e-ce64-4423-b06b-9a6a3160e95b img.shogun-image,
  #s-0912858e-ce64-4423-b06b-9a6a3160e95b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0912858e-ce64-4423-b06b-9a6a3160e95b {
    width: 100%;
    height: auto;
  }

  #s-0912858e-ce64-4423-b06b-9a6a3160e95b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0912858e-ce64-4423-b06b-9a6a3160e95b.shogun-image {
    
    
  }


.s-0912858e-ce64-4423-b06b-9a6a3160e95b .shogun-image-content {
  
    align-items: center;
  
}

.s-0912858e-ce64-4423-b06b-9a6a3160e95b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0912858e-ce64-4423-b06b-9a6a3160e95b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0912858e-ce64-4423-b06b-9a6a3160e95b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0912858e-ce64-4423-b06b-9a6a3160e95b {
      --shg-aspect-ratio: calc(2642/3042); 
    }

    .s-0912858e-ce64-4423-b06b-9a6a3160e95b.shogun-image-container {
      position: relative;
    }

    .s-0912858e-ce64-4423-b06b-9a6a3160e95b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0912858e-ce64-4423-b06b-9a6a3160e95b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0912858e-ce64-4423-b06b-9a6a3160e95b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-0912858e-ce64-4423-b06b-9a6a3160e95b img.shogun-image,
  #s-0912858e-ce64-4423-b06b-9a6a3160e95b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0912858e-ce64-4423-b06b-9a6a3160e95b {
    width: 100%;
    height: auto;
  }

  #s-0912858e-ce64-4423-b06b-9a6a3160e95b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0912858e-ce64-4423-b06b-9a6a3160e95b.shogun-image {
    
    
  }


.s-0912858e-ce64-4423-b06b-9a6a3160e95b .shogun-image-content {
  
    align-items: center;
  
}

.s-0912858e-ce64-4423-b06b-9a6a3160e95b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0912858e-ce64-4423-b06b-9a6a3160e95b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0912858e-ce64-4423-b06b-9a6a3160e95b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0912858e-ce64-4423-b06b-9a6a3160e95b {
      --shg-aspect-ratio: calc(2642/3042); 
    }

    .s-0912858e-ce64-4423-b06b-9a6a3160e95b.shogun-image-container {
      position: relative;
    }

    .s-0912858e-ce64-4423-b06b-9a6a3160e95b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0912858e-ce64-4423-b06b-9a6a3160e95b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0912858e-ce64-4423-b06b-9a6a3160e95b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-0912858e-ce64-4423-b06b-9a6a3160e95b img.shogun-image,
  #s-0912858e-ce64-4423-b06b-9a6a3160e95b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0912858e-ce64-4423-b06b-9a6a3160e95b {
    width: 100%;
    height: auto;
  }

  #s-0912858e-ce64-4423-b06b-9a6a3160e95b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0912858e-ce64-4423-b06b-9a6a3160e95b.shogun-image {
    
    
  }


.s-0912858e-ce64-4423-b06b-9a6a3160e95b .shogun-image-content {
  
    align-items: center;
  
}

.s-0912858e-ce64-4423-b06b-9a6a3160e95b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0912858e-ce64-4423-b06b-9a6a3160e95b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0912858e-ce64-4423-b06b-9a6a3160e95b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0912858e-ce64-4423-b06b-9a6a3160e95b {
      --shg-aspect-ratio: calc(2642/3042); 
    }

    .s-0912858e-ce64-4423-b06b-9a6a3160e95b.shogun-image-container {
      position: relative;
    }

    .s-0912858e-ce64-4423-b06b-9a6a3160e95b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0912858e-ce64-4423-b06b-9a6a3160e95b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0912858e-ce64-4423-b06b-9a6a3160e95b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-4116d53c-5af1-478d-9a35-ad112c6a43d5 {
  max-width: 2270px;
aspect-ratio: 2270/5197;
text-align: center;
}





  #s-4116d53c-5af1-478d-9a35-ad112c6a43d5 img.shogun-image,
  #s-4116d53c-5af1-478d-9a35-ad112c6a43d5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4116d53c-5af1-478d-9a35-ad112c6a43d5 {
    width: 100%;
    height: auto;
  }

  #s-4116d53c-5af1-478d-9a35-ad112c6a43d5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shogun-image {
    
    
  }


.s-4116d53c-5af1-478d-9a35-ad112c6a43d5 .shogun-image-content {
  
    align-items: center;
  
}

.s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4116d53c-5af1-478d-9a35-ad112c6a43d5 {
      --shg-aspect-ratio: calc(2270/5197); 
    }

    .s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shogun-image-container {
      position: relative;
    }

    .s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4116d53c-5af1-478d-9a35-ad112c6a43d5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-4116d53c-5af1-478d-9a35-ad112c6a43d5 img.shogun-image,
  #s-4116d53c-5af1-478d-9a35-ad112c6a43d5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4116d53c-5af1-478d-9a35-ad112c6a43d5 {
    width: 100%;
    height: auto;
  }

  #s-4116d53c-5af1-478d-9a35-ad112c6a43d5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shogun-image {
    
    
  }


.s-4116d53c-5af1-478d-9a35-ad112c6a43d5 .shogun-image-content {
  
    align-items: center;
  
}

.s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4116d53c-5af1-478d-9a35-ad112c6a43d5 {
      --shg-aspect-ratio: calc(2270/5197); 
    }

    .s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shogun-image-container {
      position: relative;
    }

    .s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4116d53c-5af1-478d-9a35-ad112c6a43d5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-4116d53c-5af1-478d-9a35-ad112c6a43d5 img.shogun-image,
  #s-4116d53c-5af1-478d-9a35-ad112c6a43d5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4116d53c-5af1-478d-9a35-ad112c6a43d5 {
    width: 100%;
    height: auto;
  }

  #s-4116d53c-5af1-478d-9a35-ad112c6a43d5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shogun-image {
    
    
  }


.s-4116d53c-5af1-478d-9a35-ad112c6a43d5 .shogun-image-content {
  
    align-items: center;
  
}

.s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4116d53c-5af1-478d-9a35-ad112c6a43d5 {
      --shg-aspect-ratio: calc(2270/5197); 
    }

    .s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shogun-image-container {
      position: relative;
    }

    .s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4116d53c-5af1-478d-9a35-ad112c6a43d5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-4116d53c-5af1-478d-9a35-ad112c6a43d5 img.shogun-image,
  #s-4116d53c-5af1-478d-9a35-ad112c6a43d5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4116d53c-5af1-478d-9a35-ad112c6a43d5 {
    width: 100%;
    height: auto;
  }

  #s-4116d53c-5af1-478d-9a35-ad112c6a43d5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shogun-image {
    
    
  }


.s-4116d53c-5af1-478d-9a35-ad112c6a43d5 .shogun-image-content {
  
    align-items: center;
  
}

.s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4116d53c-5af1-478d-9a35-ad112c6a43d5 {
      --shg-aspect-ratio: calc(2270/5197); 
    }

    .s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shogun-image-container {
      position: relative;
    }

    .s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4116d53c-5af1-478d-9a35-ad112c6a43d5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-4116d53c-5af1-478d-9a35-ad112c6a43d5 img.shogun-image,
  #s-4116d53c-5af1-478d-9a35-ad112c6a43d5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4116d53c-5af1-478d-9a35-ad112c6a43d5 {
    width: 100%;
    height: auto;
  }

  #s-4116d53c-5af1-478d-9a35-ad112c6a43d5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shogun-image {
    
    
  }


.s-4116d53c-5af1-478d-9a35-ad112c6a43d5 .shogun-image-content {
  
    align-items: center;
  
}

.s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4116d53c-5af1-478d-9a35-ad112c6a43d5 {
      --shg-aspect-ratio: calc(2270/5197); 
    }

    .s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shogun-image-container {
      position: relative;
    }

    .s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4116d53c-5af1-478d-9a35-ad112c6a43d5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4116d53c-5af1-478d-9a35-ad112c6a43d5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f {
  max-width: 441px;
aspect-ratio: 441/510;
text-align: center;
}





  #s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f img.shogun-image,
  #s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f {
    width: 100%;
    height: auto;
  }

  #s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shogun-image {
    
    
  }


.s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f .shogun-image-content {
  
    align-items: center;
  
}

.s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f {
      --shg-aspect-ratio: calc(441/510); 
    }

    .s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shogun-image-container {
      position: relative;
    }

    .s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f img.shogun-image,
  #s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f {
    width: 100%;
    height: auto;
  }

  #s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shogun-image {
    
    
  }


.s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f .shogun-image-content {
  
    align-items: center;
  
}

.s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f {
      --shg-aspect-ratio: calc(441/510); 
    }

    .s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shogun-image-container {
      position: relative;
    }

    .s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f img.shogun-image,
  #s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f {
    width: 100%;
    height: auto;
  }

  #s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shogun-image {
    
    
  }


.s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f .shogun-image-content {
  
    align-items: center;
  
}

.s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f {
      --shg-aspect-ratio: calc(441/510); 
    }

    .s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shogun-image-container {
      position: relative;
    }

    .s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f img.shogun-image,
  #s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f {
    width: 100%;
    height: auto;
  }

  #s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shogun-image {
    
    
  }


.s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f .shogun-image-content {
  
    align-items: center;
  
}

.s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f {
      --shg-aspect-ratio: calc(441/510); 
    }

    .s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shogun-image-container {
      position: relative;
    }

    .s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f img.shogun-image,
  #s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f {
    width: 100%;
    height: auto;
  }

  #s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shogun-image {
    
    
  }


.s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f .shogun-image-content {
  
    align-items: center;
  
}

.s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f {
      --shg-aspect-ratio: calc(441/510); 
    }

    .s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shogun-image-container {
      position: relative;
    }

    .s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e0a556bf-c78e-45cf-85b1-42eb7afbda5f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-deba359a-0fd8-4f93-a09a-75cfd0eedd70 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-deba359a-0fd8-4f93-a09a-75cfd0eedd70 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-deba359a-0fd8-4f93-a09a-75cfd0eedd70 .shg-sld-nav-button.shg-sld-left,
#s-deba359a-0fd8-4f93-a09a-75cfd0eedd70 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-153337be-8575-450b-a4f7-c6a19d2f5447 {
  max-width: 2471px;
aspect-ratio: 2471/6836;
text-align: center;
}





  #s-153337be-8575-450b-a4f7-c6a19d2f5447 img.shogun-image,
  #s-153337be-8575-450b-a4f7-c6a19d2f5447 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-153337be-8575-450b-a4f7-c6a19d2f5447 {
    width: 100%;
    height: auto;
  }

  #s-153337be-8575-450b-a4f7-c6a19d2f5447 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-153337be-8575-450b-a4f7-c6a19d2f5447.shogun-image {
    
    
  }


.s-153337be-8575-450b-a4f7-c6a19d2f5447 .shogun-image-content {
  
    align-items: center;
  
}

.s-153337be-8575-450b-a4f7-c6a19d2f5447.shg-align-container {
  display: flex;
  justify-content: center
}

.s-153337be-8575-450b-a4f7-c6a19d2f5447.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-153337be-8575-450b-a4f7-c6a19d2f5447.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-153337be-8575-450b-a4f7-c6a19d2f5447 {
      --shg-aspect-ratio: calc(2471/6836); 
    }

    .s-153337be-8575-450b-a4f7-c6a19d2f5447.shogun-image-container {
      position: relative;
    }

    .s-153337be-8575-450b-a4f7-c6a19d2f5447.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-153337be-8575-450b-a4f7-c6a19d2f5447.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-153337be-8575-450b-a4f7-c6a19d2f5447 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-153337be-8575-450b-a4f7-c6a19d2f5447 img.shogun-image,
  #s-153337be-8575-450b-a4f7-c6a19d2f5447 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-153337be-8575-450b-a4f7-c6a19d2f5447 {
    width: 100%;
    height: auto;
  }

  #s-153337be-8575-450b-a4f7-c6a19d2f5447 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-153337be-8575-450b-a4f7-c6a19d2f5447.shogun-image {
    
    
  }


.s-153337be-8575-450b-a4f7-c6a19d2f5447 .shogun-image-content {
  
    align-items: center;
  
}

.s-153337be-8575-450b-a4f7-c6a19d2f5447.shg-align-container {
  display: flex;
  justify-content: center
}

.s-153337be-8575-450b-a4f7-c6a19d2f5447.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-153337be-8575-450b-a4f7-c6a19d2f5447.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-153337be-8575-450b-a4f7-c6a19d2f5447 {
      --shg-aspect-ratio: calc(2471/6836); 
    }

    .s-153337be-8575-450b-a4f7-c6a19d2f5447.shogun-image-container {
      position: relative;
    }

    .s-153337be-8575-450b-a4f7-c6a19d2f5447.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-153337be-8575-450b-a4f7-c6a19d2f5447.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-153337be-8575-450b-a4f7-c6a19d2f5447 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-153337be-8575-450b-a4f7-c6a19d2f5447 img.shogun-image,
  #s-153337be-8575-450b-a4f7-c6a19d2f5447 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-153337be-8575-450b-a4f7-c6a19d2f5447 {
    width: 100%;
    height: auto;
  }

  #s-153337be-8575-450b-a4f7-c6a19d2f5447 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-153337be-8575-450b-a4f7-c6a19d2f5447.shogun-image {
    
    
  }


.s-153337be-8575-450b-a4f7-c6a19d2f5447 .shogun-image-content {
  
    align-items: center;
  
}

.s-153337be-8575-450b-a4f7-c6a19d2f5447.shg-align-container {
  display: flex;
  justify-content: center
}

.s-153337be-8575-450b-a4f7-c6a19d2f5447.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-153337be-8575-450b-a4f7-c6a19d2f5447.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-153337be-8575-450b-a4f7-c6a19d2f5447 {
      --shg-aspect-ratio: calc(2471/6836); 
    }

    .s-153337be-8575-450b-a4f7-c6a19d2f5447.shogun-image-container {
      position: relative;
    }

    .s-153337be-8575-450b-a4f7-c6a19d2f5447.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-153337be-8575-450b-a4f7-c6a19d2f5447.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-153337be-8575-450b-a4f7-c6a19d2f5447 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-153337be-8575-450b-a4f7-c6a19d2f5447 img.shogun-image,
  #s-153337be-8575-450b-a4f7-c6a19d2f5447 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-153337be-8575-450b-a4f7-c6a19d2f5447 {
    width: 100%;
    height: auto;
  }

  #s-153337be-8575-450b-a4f7-c6a19d2f5447 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-153337be-8575-450b-a4f7-c6a19d2f5447.shogun-image {
    
    
  }


.s-153337be-8575-450b-a4f7-c6a19d2f5447 .shogun-image-content {
  
    align-items: center;
  
}

.s-153337be-8575-450b-a4f7-c6a19d2f5447.shg-align-container {
  display: flex;
  justify-content: center
}

.s-153337be-8575-450b-a4f7-c6a19d2f5447.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-153337be-8575-450b-a4f7-c6a19d2f5447.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-153337be-8575-450b-a4f7-c6a19d2f5447 {
      --shg-aspect-ratio: calc(2471/6836); 
    }

    .s-153337be-8575-450b-a4f7-c6a19d2f5447.shogun-image-container {
      position: relative;
    }

    .s-153337be-8575-450b-a4f7-c6a19d2f5447.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-153337be-8575-450b-a4f7-c6a19d2f5447.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-153337be-8575-450b-a4f7-c6a19d2f5447 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-153337be-8575-450b-a4f7-c6a19d2f5447 img.shogun-image,
  #s-153337be-8575-450b-a4f7-c6a19d2f5447 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-153337be-8575-450b-a4f7-c6a19d2f5447 {
    width: 100%;
    height: auto;
  }

  #s-153337be-8575-450b-a4f7-c6a19d2f5447 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-153337be-8575-450b-a4f7-c6a19d2f5447.shogun-image {
    
    
  }


.s-153337be-8575-450b-a4f7-c6a19d2f5447 .shogun-image-content {
  
    align-items: center;
  
}

.s-153337be-8575-450b-a4f7-c6a19d2f5447.shg-align-container {
  display: flex;
  justify-content: center
}

.s-153337be-8575-450b-a4f7-c6a19d2f5447.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-153337be-8575-450b-a4f7-c6a19d2f5447.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-153337be-8575-450b-a4f7-c6a19d2f5447 {
      --shg-aspect-ratio: calc(2471/6836); 
    }

    .s-153337be-8575-450b-a4f7-c6a19d2f5447.shogun-image-container {
      position: relative;
    }

    .s-153337be-8575-450b-a4f7-c6a19d2f5447.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-153337be-8575-450b-a4f7-c6a19d2f5447.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-153337be-8575-450b-a4f7-c6a19d2f5447 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-1065d3d1-afac-42d7-9ee1-91834145b815 {
  max-width: 2658px;
aspect-ratio: 2658/6559;
text-align: center;
}





  #s-1065d3d1-afac-42d7-9ee1-91834145b815 img.shogun-image,
  #s-1065d3d1-afac-42d7-9ee1-91834145b815 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1065d3d1-afac-42d7-9ee1-91834145b815 {
    width: 100%;
    height: auto;
  }

  #s-1065d3d1-afac-42d7-9ee1-91834145b815 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1065d3d1-afac-42d7-9ee1-91834145b815.shogun-image {
    
    
  }


.s-1065d3d1-afac-42d7-9ee1-91834145b815 .shogun-image-content {
  
    align-items: center;
  
}

.s-1065d3d1-afac-42d7-9ee1-91834145b815.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1065d3d1-afac-42d7-9ee1-91834145b815.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1065d3d1-afac-42d7-9ee1-91834145b815.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1065d3d1-afac-42d7-9ee1-91834145b815 {
      --shg-aspect-ratio: calc(2658/6559); 
    }

    .s-1065d3d1-afac-42d7-9ee1-91834145b815.shogun-image-container {
      position: relative;
    }

    .s-1065d3d1-afac-42d7-9ee1-91834145b815.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1065d3d1-afac-42d7-9ee1-91834145b815.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1065d3d1-afac-42d7-9ee1-91834145b815 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-1065d3d1-afac-42d7-9ee1-91834145b815 img.shogun-image,
  #s-1065d3d1-afac-42d7-9ee1-91834145b815 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1065d3d1-afac-42d7-9ee1-91834145b815 {
    width: 100%;
    height: auto;
  }

  #s-1065d3d1-afac-42d7-9ee1-91834145b815 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1065d3d1-afac-42d7-9ee1-91834145b815.shogun-image {
    
    
  }


.s-1065d3d1-afac-42d7-9ee1-91834145b815 .shogun-image-content {
  
    align-items: center;
  
}

.s-1065d3d1-afac-42d7-9ee1-91834145b815.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1065d3d1-afac-42d7-9ee1-91834145b815.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1065d3d1-afac-42d7-9ee1-91834145b815.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1065d3d1-afac-42d7-9ee1-91834145b815 {
      --shg-aspect-ratio: calc(2658/6559); 
    }

    .s-1065d3d1-afac-42d7-9ee1-91834145b815.shogun-image-container {
      position: relative;
    }

    .s-1065d3d1-afac-42d7-9ee1-91834145b815.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1065d3d1-afac-42d7-9ee1-91834145b815.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1065d3d1-afac-42d7-9ee1-91834145b815 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-1065d3d1-afac-42d7-9ee1-91834145b815 img.shogun-image,
  #s-1065d3d1-afac-42d7-9ee1-91834145b815 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1065d3d1-afac-42d7-9ee1-91834145b815 {
    width: 100%;
    height: auto;
  }

  #s-1065d3d1-afac-42d7-9ee1-91834145b815 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1065d3d1-afac-42d7-9ee1-91834145b815.shogun-image {
    
    
  }


.s-1065d3d1-afac-42d7-9ee1-91834145b815 .shogun-image-content {
  
    align-items: center;
  
}

.s-1065d3d1-afac-42d7-9ee1-91834145b815.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1065d3d1-afac-42d7-9ee1-91834145b815.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1065d3d1-afac-42d7-9ee1-91834145b815.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1065d3d1-afac-42d7-9ee1-91834145b815 {
      --shg-aspect-ratio: calc(2658/6559); 
    }

    .s-1065d3d1-afac-42d7-9ee1-91834145b815.shogun-image-container {
      position: relative;
    }

    .s-1065d3d1-afac-42d7-9ee1-91834145b815.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1065d3d1-afac-42d7-9ee1-91834145b815.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1065d3d1-afac-42d7-9ee1-91834145b815 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-1065d3d1-afac-42d7-9ee1-91834145b815 img.shogun-image,
  #s-1065d3d1-afac-42d7-9ee1-91834145b815 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1065d3d1-afac-42d7-9ee1-91834145b815 {
    width: 100%;
    height: auto;
  }

  #s-1065d3d1-afac-42d7-9ee1-91834145b815 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1065d3d1-afac-42d7-9ee1-91834145b815.shogun-image {
    
    
  }


.s-1065d3d1-afac-42d7-9ee1-91834145b815 .shogun-image-content {
  
    align-items: center;
  
}

.s-1065d3d1-afac-42d7-9ee1-91834145b815.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1065d3d1-afac-42d7-9ee1-91834145b815.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1065d3d1-afac-42d7-9ee1-91834145b815.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1065d3d1-afac-42d7-9ee1-91834145b815 {
      --shg-aspect-ratio: calc(2658/6559); 
    }

    .s-1065d3d1-afac-42d7-9ee1-91834145b815.shogun-image-container {
      position: relative;
    }

    .s-1065d3d1-afac-42d7-9ee1-91834145b815.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1065d3d1-afac-42d7-9ee1-91834145b815.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1065d3d1-afac-42d7-9ee1-91834145b815 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-1065d3d1-afac-42d7-9ee1-91834145b815 img.shogun-image,
  #s-1065d3d1-afac-42d7-9ee1-91834145b815 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1065d3d1-afac-42d7-9ee1-91834145b815 {
    width: 100%;
    height: auto;
  }

  #s-1065d3d1-afac-42d7-9ee1-91834145b815 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1065d3d1-afac-42d7-9ee1-91834145b815.shogun-image {
    
    
  }


.s-1065d3d1-afac-42d7-9ee1-91834145b815 .shogun-image-content {
  
    align-items: center;
  
}

.s-1065d3d1-afac-42d7-9ee1-91834145b815.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1065d3d1-afac-42d7-9ee1-91834145b815.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1065d3d1-afac-42d7-9ee1-91834145b815.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1065d3d1-afac-42d7-9ee1-91834145b815 {
      --shg-aspect-ratio: calc(2658/6559); 
    }

    .s-1065d3d1-afac-42d7-9ee1-91834145b815.shogun-image-container {
      position: relative;
    }

    .s-1065d3d1-afac-42d7-9ee1-91834145b815.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1065d3d1-afac-42d7-9ee1-91834145b815.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1065d3d1-afac-42d7-9ee1-91834145b815 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-eab103b7-2296-4c8b-9b71-37534ba7264f {
  max-width: 1646px;
aspect-ratio: 1646/2575;
text-align: center;
}





  #s-eab103b7-2296-4c8b-9b71-37534ba7264f img.shogun-image,
  #s-eab103b7-2296-4c8b-9b71-37534ba7264f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-eab103b7-2296-4c8b-9b71-37534ba7264f {
    width: 100%;
    height: auto;
  }

  #s-eab103b7-2296-4c8b-9b71-37534ba7264f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-eab103b7-2296-4c8b-9b71-37534ba7264f.shogun-image {
    
    
  }


.s-eab103b7-2296-4c8b-9b71-37534ba7264f .shogun-image-content {
  
    align-items: center;
  
}

.s-eab103b7-2296-4c8b-9b71-37534ba7264f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eab103b7-2296-4c8b-9b71-37534ba7264f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eab103b7-2296-4c8b-9b71-37534ba7264f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-eab103b7-2296-4c8b-9b71-37534ba7264f {
      --shg-aspect-ratio: calc(1646/2575); 
    }

    .s-eab103b7-2296-4c8b-9b71-37534ba7264f.shogun-image-container {
      position: relative;
    }

    .s-eab103b7-2296-4c8b-9b71-37534ba7264f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eab103b7-2296-4c8b-9b71-37534ba7264f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eab103b7-2296-4c8b-9b71-37534ba7264f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-eab103b7-2296-4c8b-9b71-37534ba7264f img.shogun-image,
  #s-eab103b7-2296-4c8b-9b71-37534ba7264f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-eab103b7-2296-4c8b-9b71-37534ba7264f {
    width: 100%;
    height: auto;
  }

  #s-eab103b7-2296-4c8b-9b71-37534ba7264f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-eab103b7-2296-4c8b-9b71-37534ba7264f.shogun-image {
    
    
  }


.s-eab103b7-2296-4c8b-9b71-37534ba7264f .shogun-image-content {
  
    align-items: center;
  
}

.s-eab103b7-2296-4c8b-9b71-37534ba7264f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eab103b7-2296-4c8b-9b71-37534ba7264f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eab103b7-2296-4c8b-9b71-37534ba7264f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-eab103b7-2296-4c8b-9b71-37534ba7264f {
      --shg-aspect-ratio: calc(1646/2575); 
    }

    .s-eab103b7-2296-4c8b-9b71-37534ba7264f.shogun-image-container {
      position: relative;
    }

    .s-eab103b7-2296-4c8b-9b71-37534ba7264f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eab103b7-2296-4c8b-9b71-37534ba7264f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eab103b7-2296-4c8b-9b71-37534ba7264f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-eab103b7-2296-4c8b-9b71-37534ba7264f img.shogun-image,
  #s-eab103b7-2296-4c8b-9b71-37534ba7264f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-eab103b7-2296-4c8b-9b71-37534ba7264f {
    width: 100%;
    height: auto;
  }

  #s-eab103b7-2296-4c8b-9b71-37534ba7264f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-eab103b7-2296-4c8b-9b71-37534ba7264f.shogun-image {
    
    
  }


.s-eab103b7-2296-4c8b-9b71-37534ba7264f .shogun-image-content {
  
    align-items: center;
  
}

.s-eab103b7-2296-4c8b-9b71-37534ba7264f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eab103b7-2296-4c8b-9b71-37534ba7264f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eab103b7-2296-4c8b-9b71-37534ba7264f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-eab103b7-2296-4c8b-9b71-37534ba7264f {
      --shg-aspect-ratio: calc(1646/2575); 
    }

    .s-eab103b7-2296-4c8b-9b71-37534ba7264f.shogun-image-container {
      position: relative;
    }

    .s-eab103b7-2296-4c8b-9b71-37534ba7264f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eab103b7-2296-4c8b-9b71-37534ba7264f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eab103b7-2296-4c8b-9b71-37534ba7264f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-eab103b7-2296-4c8b-9b71-37534ba7264f img.shogun-image,
  #s-eab103b7-2296-4c8b-9b71-37534ba7264f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-eab103b7-2296-4c8b-9b71-37534ba7264f {
    width: 100%;
    height: auto;
  }

  #s-eab103b7-2296-4c8b-9b71-37534ba7264f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-eab103b7-2296-4c8b-9b71-37534ba7264f.shogun-image {
    
    
  }


.s-eab103b7-2296-4c8b-9b71-37534ba7264f .shogun-image-content {
  
    align-items: center;
  
}

.s-eab103b7-2296-4c8b-9b71-37534ba7264f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eab103b7-2296-4c8b-9b71-37534ba7264f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eab103b7-2296-4c8b-9b71-37534ba7264f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-eab103b7-2296-4c8b-9b71-37534ba7264f {
      --shg-aspect-ratio: calc(1646/2575); 
    }

    .s-eab103b7-2296-4c8b-9b71-37534ba7264f.shogun-image-container {
      position: relative;
    }

    .s-eab103b7-2296-4c8b-9b71-37534ba7264f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eab103b7-2296-4c8b-9b71-37534ba7264f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eab103b7-2296-4c8b-9b71-37534ba7264f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-eab103b7-2296-4c8b-9b71-37534ba7264f img.shogun-image,
  #s-eab103b7-2296-4c8b-9b71-37534ba7264f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-eab103b7-2296-4c8b-9b71-37534ba7264f {
    width: 100%;
    height: auto;
  }

  #s-eab103b7-2296-4c8b-9b71-37534ba7264f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-eab103b7-2296-4c8b-9b71-37534ba7264f.shogun-image {
    
    
  }


.s-eab103b7-2296-4c8b-9b71-37534ba7264f .shogun-image-content {
  
    align-items: center;
  
}

.s-eab103b7-2296-4c8b-9b71-37534ba7264f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eab103b7-2296-4c8b-9b71-37534ba7264f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eab103b7-2296-4c8b-9b71-37534ba7264f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-eab103b7-2296-4c8b-9b71-37534ba7264f {
      --shg-aspect-ratio: calc(1646/2575); 
    }

    .s-eab103b7-2296-4c8b-9b71-37534ba7264f.shogun-image-container {
      position: relative;
    }

    .s-eab103b7-2296-4c8b-9b71-37534ba7264f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eab103b7-2296-4c8b-9b71-37534ba7264f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eab103b7-2296-4c8b-9b71-37534ba7264f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-af8e6270-c4b8-474e-93dd-b3218fae5262 {
  max-width: 2184px;
aspect-ratio: 2184/1606;
text-align: center;
}





  #s-af8e6270-c4b8-474e-93dd-b3218fae5262 img.shogun-image,
  #s-af8e6270-c4b8-474e-93dd-b3218fae5262 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-af8e6270-c4b8-474e-93dd-b3218fae5262 {
    width: 100%;
    height: auto;
  }

  #s-af8e6270-c4b8-474e-93dd-b3218fae5262 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-af8e6270-c4b8-474e-93dd-b3218fae5262.shogun-image {
    
    
  }


.s-af8e6270-c4b8-474e-93dd-b3218fae5262 .shogun-image-content {
  
    align-items: center;
  
}

.s-af8e6270-c4b8-474e-93dd-b3218fae5262.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af8e6270-c4b8-474e-93dd-b3218fae5262.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af8e6270-c4b8-474e-93dd-b3218fae5262.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-af8e6270-c4b8-474e-93dd-b3218fae5262 {
      --shg-aspect-ratio: calc(2184/1606); 
    }

    .s-af8e6270-c4b8-474e-93dd-b3218fae5262.shogun-image-container {
      position: relative;
    }

    .s-af8e6270-c4b8-474e-93dd-b3218fae5262.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-af8e6270-c4b8-474e-93dd-b3218fae5262.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-af8e6270-c4b8-474e-93dd-b3218fae5262 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-af8e6270-c4b8-474e-93dd-b3218fae5262 img.shogun-image,
  #s-af8e6270-c4b8-474e-93dd-b3218fae5262 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-af8e6270-c4b8-474e-93dd-b3218fae5262 {
    width: 100%;
    height: auto;
  }

  #s-af8e6270-c4b8-474e-93dd-b3218fae5262 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-af8e6270-c4b8-474e-93dd-b3218fae5262.shogun-image {
    
    
  }


.s-af8e6270-c4b8-474e-93dd-b3218fae5262 .shogun-image-content {
  
    align-items: center;
  
}

.s-af8e6270-c4b8-474e-93dd-b3218fae5262.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af8e6270-c4b8-474e-93dd-b3218fae5262.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af8e6270-c4b8-474e-93dd-b3218fae5262.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-af8e6270-c4b8-474e-93dd-b3218fae5262 {
      --shg-aspect-ratio: calc(2184/1606); 
    }

    .s-af8e6270-c4b8-474e-93dd-b3218fae5262.shogun-image-container {
      position: relative;
    }

    .s-af8e6270-c4b8-474e-93dd-b3218fae5262.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-af8e6270-c4b8-474e-93dd-b3218fae5262.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-af8e6270-c4b8-474e-93dd-b3218fae5262 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-af8e6270-c4b8-474e-93dd-b3218fae5262 img.shogun-image,
  #s-af8e6270-c4b8-474e-93dd-b3218fae5262 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-af8e6270-c4b8-474e-93dd-b3218fae5262 {
    width: 100%;
    height: auto;
  }

  #s-af8e6270-c4b8-474e-93dd-b3218fae5262 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-af8e6270-c4b8-474e-93dd-b3218fae5262.shogun-image {
    
    
  }


.s-af8e6270-c4b8-474e-93dd-b3218fae5262 .shogun-image-content {
  
    align-items: center;
  
}

.s-af8e6270-c4b8-474e-93dd-b3218fae5262.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af8e6270-c4b8-474e-93dd-b3218fae5262.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af8e6270-c4b8-474e-93dd-b3218fae5262.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-af8e6270-c4b8-474e-93dd-b3218fae5262 {
      --shg-aspect-ratio: calc(2184/1606); 
    }

    .s-af8e6270-c4b8-474e-93dd-b3218fae5262.shogun-image-container {
      position: relative;
    }

    .s-af8e6270-c4b8-474e-93dd-b3218fae5262.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-af8e6270-c4b8-474e-93dd-b3218fae5262.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-af8e6270-c4b8-474e-93dd-b3218fae5262 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-af8e6270-c4b8-474e-93dd-b3218fae5262 img.shogun-image,
  #s-af8e6270-c4b8-474e-93dd-b3218fae5262 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-af8e6270-c4b8-474e-93dd-b3218fae5262 {
    width: 100%;
    height: auto;
  }

  #s-af8e6270-c4b8-474e-93dd-b3218fae5262 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-af8e6270-c4b8-474e-93dd-b3218fae5262.shogun-image {
    
    
  }


.s-af8e6270-c4b8-474e-93dd-b3218fae5262 .shogun-image-content {
  
    align-items: center;
  
}

.s-af8e6270-c4b8-474e-93dd-b3218fae5262.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af8e6270-c4b8-474e-93dd-b3218fae5262.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af8e6270-c4b8-474e-93dd-b3218fae5262.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-af8e6270-c4b8-474e-93dd-b3218fae5262 {
      --shg-aspect-ratio: calc(2184/1606); 
    }

    .s-af8e6270-c4b8-474e-93dd-b3218fae5262.shogun-image-container {
      position: relative;
    }

    .s-af8e6270-c4b8-474e-93dd-b3218fae5262.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-af8e6270-c4b8-474e-93dd-b3218fae5262.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-af8e6270-c4b8-474e-93dd-b3218fae5262 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-af8e6270-c4b8-474e-93dd-b3218fae5262 img.shogun-image,
  #s-af8e6270-c4b8-474e-93dd-b3218fae5262 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-af8e6270-c4b8-474e-93dd-b3218fae5262 {
    width: 100%;
    height: auto;
  }

  #s-af8e6270-c4b8-474e-93dd-b3218fae5262 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-af8e6270-c4b8-474e-93dd-b3218fae5262.shogun-image {
    
    
  }


.s-af8e6270-c4b8-474e-93dd-b3218fae5262 .shogun-image-content {
  
    align-items: center;
  
}

.s-af8e6270-c4b8-474e-93dd-b3218fae5262.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af8e6270-c4b8-474e-93dd-b3218fae5262.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af8e6270-c4b8-474e-93dd-b3218fae5262.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-af8e6270-c4b8-474e-93dd-b3218fae5262 {
      --shg-aspect-ratio: calc(2184/1606); 
    }

    .s-af8e6270-c4b8-474e-93dd-b3218fae5262.shogun-image-container {
      position: relative;
    }

    .s-af8e6270-c4b8-474e-93dd-b3218fae5262.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-af8e6270-c4b8-474e-93dd-b3218fae5262.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-af8e6270-c4b8-474e-93dd-b3218fae5262 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-0dca4e43-fe46-487f-b61f-914f07317417 {
  max-width: 281px;
aspect-ratio: 281/178;
text-align: center;
}





  #s-0dca4e43-fe46-487f-b61f-914f07317417 img.shogun-image,
  #s-0dca4e43-fe46-487f-b61f-914f07317417 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0dca4e43-fe46-487f-b61f-914f07317417 {
    width: 100%;
    height: auto;
  }

  #s-0dca4e43-fe46-487f-b61f-914f07317417 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0dca4e43-fe46-487f-b61f-914f07317417.shogun-image {
    
    
  }


.s-0dca4e43-fe46-487f-b61f-914f07317417 .shogun-image-content {
  
    align-items: center;
  
}

.s-0dca4e43-fe46-487f-b61f-914f07317417.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0dca4e43-fe46-487f-b61f-914f07317417.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0dca4e43-fe46-487f-b61f-914f07317417.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0dca4e43-fe46-487f-b61f-914f07317417 {
      --shg-aspect-ratio: calc(281/178); 
    }

    .s-0dca4e43-fe46-487f-b61f-914f07317417.shogun-image-container {
      position: relative;
    }

    .s-0dca4e43-fe46-487f-b61f-914f07317417.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0dca4e43-fe46-487f-b61f-914f07317417.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0dca4e43-fe46-487f-b61f-914f07317417 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-0dca4e43-fe46-487f-b61f-914f07317417 img.shogun-image,
  #s-0dca4e43-fe46-487f-b61f-914f07317417 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0dca4e43-fe46-487f-b61f-914f07317417 {
    width: 100%;
    height: auto;
  }

  #s-0dca4e43-fe46-487f-b61f-914f07317417 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0dca4e43-fe46-487f-b61f-914f07317417.shogun-image {
    
    
  }


.s-0dca4e43-fe46-487f-b61f-914f07317417 .shogun-image-content {
  
    align-items: center;
  
}

.s-0dca4e43-fe46-487f-b61f-914f07317417.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0dca4e43-fe46-487f-b61f-914f07317417.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0dca4e43-fe46-487f-b61f-914f07317417.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0dca4e43-fe46-487f-b61f-914f07317417 {
      --shg-aspect-ratio: calc(281/178); 
    }

    .s-0dca4e43-fe46-487f-b61f-914f07317417.shogun-image-container {
      position: relative;
    }

    .s-0dca4e43-fe46-487f-b61f-914f07317417.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0dca4e43-fe46-487f-b61f-914f07317417.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0dca4e43-fe46-487f-b61f-914f07317417 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-0dca4e43-fe46-487f-b61f-914f07317417 img.shogun-image,
  #s-0dca4e43-fe46-487f-b61f-914f07317417 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0dca4e43-fe46-487f-b61f-914f07317417 {
    width: 100%;
    height: auto;
  }

  #s-0dca4e43-fe46-487f-b61f-914f07317417 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0dca4e43-fe46-487f-b61f-914f07317417.shogun-image {
    
    
  }


.s-0dca4e43-fe46-487f-b61f-914f07317417 .shogun-image-content {
  
    align-items: center;
  
}

.s-0dca4e43-fe46-487f-b61f-914f07317417.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0dca4e43-fe46-487f-b61f-914f07317417.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0dca4e43-fe46-487f-b61f-914f07317417.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0dca4e43-fe46-487f-b61f-914f07317417 {
      --shg-aspect-ratio: calc(281/178); 
    }

    .s-0dca4e43-fe46-487f-b61f-914f07317417.shogun-image-container {
      position: relative;
    }

    .s-0dca4e43-fe46-487f-b61f-914f07317417.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0dca4e43-fe46-487f-b61f-914f07317417.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0dca4e43-fe46-487f-b61f-914f07317417 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-0dca4e43-fe46-487f-b61f-914f07317417 img.shogun-image,
  #s-0dca4e43-fe46-487f-b61f-914f07317417 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0dca4e43-fe46-487f-b61f-914f07317417 {
    width: 100%;
    height: auto;
  }

  #s-0dca4e43-fe46-487f-b61f-914f07317417 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0dca4e43-fe46-487f-b61f-914f07317417.shogun-image {
    
    
  }


.s-0dca4e43-fe46-487f-b61f-914f07317417 .shogun-image-content {
  
    align-items: center;
  
}

.s-0dca4e43-fe46-487f-b61f-914f07317417.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0dca4e43-fe46-487f-b61f-914f07317417.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0dca4e43-fe46-487f-b61f-914f07317417.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0dca4e43-fe46-487f-b61f-914f07317417 {
      --shg-aspect-ratio: calc(281/178); 
    }

    .s-0dca4e43-fe46-487f-b61f-914f07317417.shogun-image-container {
      position: relative;
    }

    .s-0dca4e43-fe46-487f-b61f-914f07317417.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0dca4e43-fe46-487f-b61f-914f07317417.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0dca4e43-fe46-487f-b61f-914f07317417 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-0dca4e43-fe46-487f-b61f-914f07317417 img.shogun-image,
  #s-0dca4e43-fe46-487f-b61f-914f07317417 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0dca4e43-fe46-487f-b61f-914f07317417 {
    width: 100%;
    height: auto;
  }

  #s-0dca4e43-fe46-487f-b61f-914f07317417 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0dca4e43-fe46-487f-b61f-914f07317417.shogun-image {
    
    
  }


.s-0dca4e43-fe46-487f-b61f-914f07317417 .shogun-image-content {
  
    align-items: center;
  
}

.s-0dca4e43-fe46-487f-b61f-914f07317417.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0dca4e43-fe46-487f-b61f-914f07317417.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0dca4e43-fe46-487f-b61f-914f07317417.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0dca4e43-fe46-487f-b61f-914f07317417 {
      --shg-aspect-ratio: calc(281/178); 
    }

    .s-0dca4e43-fe46-487f-b61f-914f07317417.shogun-image-container {
      position: relative;
    }

    .s-0dca4e43-fe46-487f-b61f-914f07317417.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0dca4e43-fe46-487f-b61f-914f07317417.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0dca4e43-fe46-487f-b61f-914f07317417 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-baff7cc7-e27f-40a8-a1c4-31c69b140164 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-baff7cc7-e27f-40a8-a1c4-31c69b140164 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-baff7cc7-e27f-40a8-a1c4-31c69b140164 .shg-sld-nav-button.shg-sld-left,
#s-baff7cc7-e27f-40a8-a1c4-31c69b140164 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 {
  max-width: 2550px;
aspect-ratio: 2550/6303;
text-align: center;
}





  #s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 img.shogun-image,
  #s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 {
    width: 100%;
    height: auto;
  }

  #s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shogun-image {
    
    
  }


.s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 .shogun-image-content {
  
    align-items: center;
  
}

.s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 {
      --shg-aspect-ratio: calc(2550/6303); 
    }

    .s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shogun-image-container {
      position: relative;
    }

    .s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 img.shogun-image,
  #s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 {
    width: 100%;
    height: auto;
  }

  #s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shogun-image {
    
    
  }


.s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 .shogun-image-content {
  
    align-items: center;
  
}

.s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 {
      --shg-aspect-ratio: calc(2550/6303); 
    }

    .s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shogun-image-container {
      position: relative;
    }

    .s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 img.shogun-image,
  #s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 {
    width: 100%;
    height: auto;
  }

  #s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shogun-image {
    
    
  }


.s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 .shogun-image-content {
  
    align-items: center;
  
}

.s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 {
      --shg-aspect-ratio: calc(2550/6303); 
    }

    .s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shogun-image-container {
      position: relative;
    }

    .s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 img.shogun-image,
  #s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 {
    width: 100%;
    height: auto;
  }

  #s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shogun-image {
    
    
  }


.s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 .shogun-image-content {
  
    align-items: center;
  
}

.s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 {
      --shg-aspect-ratio: calc(2550/6303); 
    }

    .s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shogun-image-container {
      position: relative;
    }

    .s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 img.shogun-image,
  #s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 {
    width: 100%;
    height: auto;
  }

  #s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shogun-image {
    
    
  }


.s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 .shogun-image-content {
  
    align-items: center;
  
}

.s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 {
      --shg-aspect-ratio: calc(2550/6303); 
    }

    .s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shogun-image-container {
      position: relative;
    }

    .s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7e9e2621-df04-4d2d-83d5-d7f5d52b85c0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-327b2e2a-6516-420f-bcde-1120e5f97bcd {
  max-width: 1646px;
aspect-ratio: 1646/2198;
text-align: center;
}





  #s-327b2e2a-6516-420f-bcde-1120e5f97bcd img.shogun-image,
  #s-327b2e2a-6516-420f-bcde-1120e5f97bcd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-327b2e2a-6516-420f-bcde-1120e5f97bcd {
    width: 100%;
    height: auto;
  }

  #s-327b2e2a-6516-420f-bcde-1120e5f97bcd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shogun-image {
    
    
  }


.s-327b2e2a-6516-420f-bcde-1120e5f97bcd .shogun-image-content {
  
    align-items: center;
  
}

.s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-327b2e2a-6516-420f-bcde-1120e5f97bcd {
      --shg-aspect-ratio: calc(1646/2198); 
    }

    .s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shogun-image-container {
      position: relative;
    }

    .s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-327b2e2a-6516-420f-bcde-1120e5f97bcd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-327b2e2a-6516-420f-bcde-1120e5f97bcd img.shogun-image,
  #s-327b2e2a-6516-420f-bcde-1120e5f97bcd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-327b2e2a-6516-420f-bcde-1120e5f97bcd {
    width: 100%;
    height: auto;
  }

  #s-327b2e2a-6516-420f-bcde-1120e5f97bcd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shogun-image {
    
    
  }


.s-327b2e2a-6516-420f-bcde-1120e5f97bcd .shogun-image-content {
  
    align-items: center;
  
}

.s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-327b2e2a-6516-420f-bcde-1120e5f97bcd {
      --shg-aspect-ratio: calc(1646/2198); 
    }

    .s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shogun-image-container {
      position: relative;
    }

    .s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-327b2e2a-6516-420f-bcde-1120e5f97bcd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-327b2e2a-6516-420f-bcde-1120e5f97bcd img.shogun-image,
  #s-327b2e2a-6516-420f-bcde-1120e5f97bcd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-327b2e2a-6516-420f-bcde-1120e5f97bcd {
    width: 100%;
    height: auto;
  }

  #s-327b2e2a-6516-420f-bcde-1120e5f97bcd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shogun-image {
    
    
  }


.s-327b2e2a-6516-420f-bcde-1120e5f97bcd .shogun-image-content {
  
    align-items: center;
  
}

.s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-327b2e2a-6516-420f-bcde-1120e5f97bcd {
      --shg-aspect-ratio: calc(1646/2198); 
    }

    .s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shogun-image-container {
      position: relative;
    }

    .s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-327b2e2a-6516-420f-bcde-1120e5f97bcd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-327b2e2a-6516-420f-bcde-1120e5f97bcd img.shogun-image,
  #s-327b2e2a-6516-420f-bcde-1120e5f97bcd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-327b2e2a-6516-420f-bcde-1120e5f97bcd {
    width: 100%;
    height: auto;
  }

  #s-327b2e2a-6516-420f-bcde-1120e5f97bcd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shogun-image {
    
    
  }


.s-327b2e2a-6516-420f-bcde-1120e5f97bcd .shogun-image-content {
  
    align-items: center;
  
}

.s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-327b2e2a-6516-420f-bcde-1120e5f97bcd {
      --shg-aspect-ratio: calc(1646/2198); 
    }

    .s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shogun-image-container {
      position: relative;
    }

    .s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-327b2e2a-6516-420f-bcde-1120e5f97bcd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-327b2e2a-6516-420f-bcde-1120e5f97bcd img.shogun-image,
  #s-327b2e2a-6516-420f-bcde-1120e5f97bcd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-327b2e2a-6516-420f-bcde-1120e5f97bcd {
    width: 100%;
    height: auto;
  }

  #s-327b2e2a-6516-420f-bcde-1120e5f97bcd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shogun-image {
    
    
  }


.s-327b2e2a-6516-420f-bcde-1120e5f97bcd .shogun-image-content {
  
    align-items: center;
  
}

.s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-327b2e2a-6516-420f-bcde-1120e5f97bcd {
      --shg-aspect-ratio: calc(1646/2198); 
    }

    .s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shogun-image-container {
      position: relative;
    }

    .s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-327b2e2a-6516-420f-bcde-1120e5f97bcd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-327b2e2a-6516-420f-bcde-1120e5f97bcd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab {
  max-width: 290px;
aspect-ratio: 290/89;
text-align: center;
}





  #s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab img.shogun-image,
  #s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab {
    width: 100%;
    height: auto;
  }

  #s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shogun-image {
    
    
  }


.s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab .shogun-image-content {
  
    align-items: center;
  
}

.s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab {
      --shg-aspect-ratio: calc(290/89); 
    }

    .s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shogun-image-container {
      position: relative;
    }

    .s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab img.shogun-image,
  #s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab {
    width: 100%;
    height: auto;
  }

  #s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shogun-image {
    
    
  }


.s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab .shogun-image-content {
  
    align-items: center;
  
}

.s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab {
      --shg-aspect-ratio: calc(290/89); 
    }

    .s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shogun-image-container {
      position: relative;
    }

    .s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab img.shogun-image,
  #s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab {
    width: 100%;
    height: auto;
  }

  #s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shogun-image {
    
    
  }


.s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab .shogun-image-content {
  
    align-items: center;
  
}

.s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab {
      --shg-aspect-ratio: calc(290/89); 
    }

    .s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shogun-image-container {
      position: relative;
    }

    .s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab img.shogun-image,
  #s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab {
    width: 100%;
    height: auto;
  }

  #s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shogun-image {
    
    
  }


.s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab .shogun-image-content {
  
    align-items: center;
  
}

.s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab {
      --shg-aspect-ratio: calc(290/89); 
    }

    .s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shogun-image-container {
      position: relative;
    }

    .s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab img.shogun-image,
  #s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab {
    width: 100%;
    height: auto;
  }

  #s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shogun-image {
    
    
  }


.s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab .shogun-image-content {
  
    align-items: center;
  
}

.s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab {
      --shg-aspect-ratio: calc(290/89); 
    }

    .s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shogun-image-container {
      position: relative;
    }

    .s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-51fa99c8-b971-4239-8dfb-ed3e6ded22ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-3ad98d6d-c810-4213-9989-1771606e2b88 {
  max-width: 2382px;
aspect-ratio: 2382/3184;
text-align: center;
}





  #s-3ad98d6d-c810-4213-9989-1771606e2b88 img.shogun-image,
  #s-3ad98d6d-c810-4213-9989-1771606e2b88 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3ad98d6d-c810-4213-9989-1771606e2b88 {
    width: 100%;
    height: auto;
  }

  #s-3ad98d6d-c810-4213-9989-1771606e2b88 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3ad98d6d-c810-4213-9989-1771606e2b88.shogun-image {
    
    
  }


.s-3ad98d6d-c810-4213-9989-1771606e2b88 .shogun-image-content {
  
    align-items: center;
  
}

.s-3ad98d6d-c810-4213-9989-1771606e2b88.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3ad98d6d-c810-4213-9989-1771606e2b88.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3ad98d6d-c810-4213-9989-1771606e2b88.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3ad98d6d-c810-4213-9989-1771606e2b88 {
      --shg-aspect-ratio: calc(2382/3184); 
    }

    .s-3ad98d6d-c810-4213-9989-1771606e2b88.shogun-image-container {
      position: relative;
    }

    .s-3ad98d6d-c810-4213-9989-1771606e2b88.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3ad98d6d-c810-4213-9989-1771606e2b88.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3ad98d6d-c810-4213-9989-1771606e2b88 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-3ad98d6d-c810-4213-9989-1771606e2b88 img.shogun-image,
  #s-3ad98d6d-c810-4213-9989-1771606e2b88 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3ad98d6d-c810-4213-9989-1771606e2b88 {
    width: 100%;
    height: auto;
  }

  #s-3ad98d6d-c810-4213-9989-1771606e2b88 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3ad98d6d-c810-4213-9989-1771606e2b88.shogun-image {
    
    
  }


.s-3ad98d6d-c810-4213-9989-1771606e2b88 .shogun-image-content {
  
    align-items: center;
  
}

.s-3ad98d6d-c810-4213-9989-1771606e2b88.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3ad98d6d-c810-4213-9989-1771606e2b88.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3ad98d6d-c810-4213-9989-1771606e2b88.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3ad98d6d-c810-4213-9989-1771606e2b88 {
      --shg-aspect-ratio: calc(2382/3184); 
    }

    .s-3ad98d6d-c810-4213-9989-1771606e2b88.shogun-image-container {
      position: relative;
    }

    .s-3ad98d6d-c810-4213-9989-1771606e2b88.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3ad98d6d-c810-4213-9989-1771606e2b88.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3ad98d6d-c810-4213-9989-1771606e2b88 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-3ad98d6d-c810-4213-9989-1771606e2b88 img.shogun-image,
  #s-3ad98d6d-c810-4213-9989-1771606e2b88 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3ad98d6d-c810-4213-9989-1771606e2b88 {
    width: 100%;
    height: auto;
  }

  #s-3ad98d6d-c810-4213-9989-1771606e2b88 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3ad98d6d-c810-4213-9989-1771606e2b88.shogun-image {
    
    
  }


.s-3ad98d6d-c810-4213-9989-1771606e2b88 .shogun-image-content {
  
    align-items: center;
  
}

.s-3ad98d6d-c810-4213-9989-1771606e2b88.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3ad98d6d-c810-4213-9989-1771606e2b88.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3ad98d6d-c810-4213-9989-1771606e2b88.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3ad98d6d-c810-4213-9989-1771606e2b88 {
      --shg-aspect-ratio: calc(2382/3184); 
    }

    .s-3ad98d6d-c810-4213-9989-1771606e2b88.shogun-image-container {
      position: relative;
    }

    .s-3ad98d6d-c810-4213-9989-1771606e2b88.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3ad98d6d-c810-4213-9989-1771606e2b88.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3ad98d6d-c810-4213-9989-1771606e2b88 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-3ad98d6d-c810-4213-9989-1771606e2b88 img.shogun-image,
  #s-3ad98d6d-c810-4213-9989-1771606e2b88 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3ad98d6d-c810-4213-9989-1771606e2b88 {
    width: 100%;
    height: auto;
  }

  #s-3ad98d6d-c810-4213-9989-1771606e2b88 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3ad98d6d-c810-4213-9989-1771606e2b88.shogun-image {
    
    
  }


.s-3ad98d6d-c810-4213-9989-1771606e2b88 .shogun-image-content {
  
    align-items: center;
  
}

.s-3ad98d6d-c810-4213-9989-1771606e2b88.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3ad98d6d-c810-4213-9989-1771606e2b88.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3ad98d6d-c810-4213-9989-1771606e2b88.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3ad98d6d-c810-4213-9989-1771606e2b88 {
      --shg-aspect-ratio: calc(2382/3184); 
    }

    .s-3ad98d6d-c810-4213-9989-1771606e2b88.shogun-image-container {
      position: relative;
    }

    .s-3ad98d6d-c810-4213-9989-1771606e2b88.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3ad98d6d-c810-4213-9989-1771606e2b88.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3ad98d6d-c810-4213-9989-1771606e2b88 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-3ad98d6d-c810-4213-9989-1771606e2b88 img.shogun-image,
  #s-3ad98d6d-c810-4213-9989-1771606e2b88 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3ad98d6d-c810-4213-9989-1771606e2b88 {
    width: 100%;
    height: auto;
  }

  #s-3ad98d6d-c810-4213-9989-1771606e2b88 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3ad98d6d-c810-4213-9989-1771606e2b88.shogun-image {
    
    
  }


.s-3ad98d6d-c810-4213-9989-1771606e2b88 .shogun-image-content {
  
    align-items: center;
  
}

.s-3ad98d6d-c810-4213-9989-1771606e2b88.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3ad98d6d-c810-4213-9989-1771606e2b88.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3ad98d6d-c810-4213-9989-1771606e2b88.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3ad98d6d-c810-4213-9989-1771606e2b88 {
      --shg-aspect-ratio: calc(2382/3184); 
    }

    .s-3ad98d6d-c810-4213-9989-1771606e2b88.shogun-image-container {
      position: relative;
    }

    .s-3ad98d6d-c810-4213-9989-1771606e2b88.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3ad98d6d-c810-4213-9989-1771606e2b88.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3ad98d6d-c810-4213-9989-1771606e2b88 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab {
  max-width: 2451px;
aspect-ratio: 2451/4052;
text-align: center;
}





  #s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab img.shogun-image,
  #s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab {
    width: 100%;
    height: auto;
  }

  #s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shogun-image {
    
    
  }


.s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab .shogun-image-content {
  
    align-items: center;
  
}

.s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab {
      --shg-aspect-ratio: calc(2451/4052); 
    }

    .s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shogun-image-container {
      position: relative;
    }

    .s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab img.shogun-image,
  #s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab {
    width: 100%;
    height: auto;
  }

  #s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shogun-image {
    
    
  }


.s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab .shogun-image-content {
  
    align-items: center;
  
}

.s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab {
      --shg-aspect-ratio: calc(2451/4052); 
    }

    .s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shogun-image-container {
      position: relative;
    }

    .s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab img.shogun-image,
  #s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab {
    width: 100%;
    height: auto;
  }

  #s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shogun-image {
    
    
  }


.s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab .shogun-image-content {
  
    align-items: center;
  
}

.s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab {
      --shg-aspect-ratio: calc(2451/4052); 
    }

    .s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shogun-image-container {
      position: relative;
    }

    .s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab img.shogun-image,
  #s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab {
    width: 100%;
    height: auto;
  }

  #s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shogun-image {
    
    
  }


.s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab .shogun-image-content {
  
    align-items: center;
  
}

.s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab {
      --shg-aspect-ratio: calc(2451/4052); 
    }

    .s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shogun-image-container {
      position: relative;
    }

    .s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab img.shogun-image,
  #s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab {
    width: 100%;
    height: auto;
  }

  #s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shogun-image {
    
    
  }


.s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab .shogun-image-content {
  
    align-items: center;
  
}

.s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab {
      --shg-aspect-ratio: calc(2451/4052); 
    }

    .s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shogun-image-container {
      position: relative;
    }

    .s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b24ffd42-e46a-4f6d-acc2-4d10eb9631ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-156f10b4-af4d-419c-aa69-fefc94614cd1 {
  max-width: 1080px;
aspect-ratio: 1080/1920;
text-align: center;
}





  #s-156f10b4-af4d-419c-aa69-fefc94614cd1 img.shogun-image,
  #s-156f10b4-af4d-419c-aa69-fefc94614cd1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-156f10b4-af4d-419c-aa69-fefc94614cd1 {
    width: 100%;
    height: auto;
  }

  #s-156f10b4-af4d-419c-aa69-fefc94614cd1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-156f10b4-af4d-419c-aa69-fefc94614cd1.shogun-image {
    
    
  }


.s-156f10b4-af4d-419c-aa69-fefc94614cd1 .shogun-image-content {
  
    align-items: center;
  
}

.s-156f10b4-af4d-419c-aa69-fefc94614cd1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-156f10b4-af4d-419c-aa69-fefc94614cd1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-156f10b4-af4d-419c-aa69-fefc94614cd1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-156f10b4-af4d-419c-aa69-fefc94614cd1 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-156f10b4-af4d-419c-aa69-fefc94614cd1.shogun-image-container {
      position: relative;
    }

    .s-156f10b4-af4d-419c-aa69-fefc94614cd1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-156f10b4-af4d-419c-aa69-fefc94614cd1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-156f10b4-af4d-419c-aa69-fefc94614cd1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-156f10b4-af4d-419c-aa69-fefc94614cd1 img.shogun-image,
  #s-156f10b4-af4d-419c-aa69-fefc94614cd1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-156f10b4-af4d-419c-aa69-fefc94614cd1 {
    width: 100%;
    height: auto;
  }

  #s-156f10b4-af4d-419c-aa69-fefc94614cd1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-156f10b4-af4d-419c-aa69-fefc94614cd1.shogun-image {
    
    
  }


.s-156f10b4-af4d-419c-aa69-fefc94614cd1 .shogun-image-content {
  
    align-items: center;
  
}

.s-156f10b4-af4d-419c-aa69-fefc94614cd1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-156f10b4-af4d-419c-aa69-fefc94614cd1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-156f10b4-af4d-419c-aa69-fefc94614cd1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-156f10b4-af4d-419c-aa69-fefc94614cd1 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-156f10b4-af4d-419c-aa69-fefc94614cd1.shogun-image-container {
      position: relative;
    }

    .s-156f10b4-af4d-419c-aa69-fefc94614cd1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-156f10b4-af4d-419c-aa69-fefc94614cd1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-156f10b4-af4d-419c-aa69-fefc94614cd1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-156f10b4-af4d-419c-aa69-fefc94614cd1 img.shogun-image,
  #s-156f10b4-af4d-419c-aa69-fefc94614cd1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-156f10b4-af4d-419c-aa69-fefc94614cd1 {
    width: 100%;
    height: auto;
  }

  #s-156f10b4-af4d-419c-aa69-fefc94614cd1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-156f10b4-af4d-419c-aa69-fefc94614cd1.shogun-image {
    
    
  }


.s-156f10b4-af4d-419c-aa69-fefc94614cd1 .shogun-image-content {
  
    align-items: center;
  
}

.s-156f10b4-af4d-419c-aa69-fefc94614cd1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-156f10b4-af4d-419c-aa69-fefc94614cd1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-156f10b4-af4d-419c-aa69-fefc94614cd1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-156f10b4-af4d-419c-aa69-fefc94614cd1 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-156f10b4-af4d-419c-aa69-fefc94614cd1.shogun-image-container {
      position: relative;
    }

    .s-156f10b4-af4d-419c-aa69-fefc94614cd1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-156f10b4-af4d-419c-aa69-fefc94614cd1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-156f10b4-af4d-419c-aa69-fefc94614cd1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-156f10b4-af4d-419c-aa69-fefc94614cd1 img.shogun-image,
  #s-156f10b4-af4d-419c-aa69-fefc94614cd1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-156f10b4-af4d-419c-aa69-fefc94614cd1 {
    width: 100%;
    height: auto;
  }

  #s-156f10b4-af4d-419c-aa69-fefc94614cd1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-156f10b4-af4d-419c-aa69-fefc94614cd1.shogun-image {
    
    
  }


.s-156f10b4-af4d-419c-aa69-fefc94614cd1 .shogun-image-content {
  
    align-items: center;
  
}

.s-156f10b4-af4d-419c-aa69-fefc94614cd1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-156f10b4-af4d-419c-aa69-fefc94614cd1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-156f10b4-af4d-419c-aa69-fefc94614cd1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-156f10b4-af4d-419c-aa69-fefc94614cd1 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-156f10b4-af4d-419c-aa69-fefc94614cd1.shogun-image-container {
      position: relative;
    }

    .s-156f10b4-af4d-419c-aa69-fefc94614cd1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-156f10b4-af4d-419c-aa69-fefc94614cd1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-156f10b4-af4d-419c-aa69-fefc94614cd1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-156f10b4-af4d-419c-aa69-fefc94614cd1 img.shogun-image,
  #s-156f10b4-af4d-419c-aa69-fefc94614cd1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-156f10b4-af4d-419c-aa69-fefc94614cd1 {
    width: 100%;
    height: auto;
  }

  #s-156f10b4-af4d-419c-aa69-fefc94614cd1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-156f10b4-af4d-419c-aa69-fefc94614cd1.shogun-image {
    
    
  }


.s-156f10b4-af4d-419c-aa69-fefc94614cd1 .shogun-image-content {
  
    align-items: center;
  
}

.s-156f10b4-af4d-419c-aa69-fefc94614cd1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-156f10b4-af4d-419c-aa69-fefc94614cd1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-156f10b4-af4d-419c-aa69-fefc94614cd1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-156f10b4-af4d-419c-aa69-fefc94614cd1 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-156f10b4-af4d-419c-aa69-fefc94614cd1.shogun-image-container {
      position: relative;
    }

    .s-156f10b4-af4d-419c-aa69-fefc94614cd1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-156f10b4-af4d-419c-aa69-fefc94614cd1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-156f10b4-af4d-419c-aa69-fefc94614cd1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-b4cbef5b-2ffe-417a-911d-b687b1553ccb {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-b4cbef5b-2ffe-417a-911d-b687b1553ccb .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-b4cbef5b-2ffe-417a-911d-b687b1553ccb .shg-sld-nav-button.shg-sld-left,
#s-b4cbef5b-2ffe-417a-911d-b687b1553ccb .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-44524e1b-f603-4875-9e15-99554db59710 {
  max-width: 585px;
aspect-ratio: 585/906;
text-align: center;
}





  #s-44524e1b-f603-4875-9e15-99554db59710 img.shogun-image,
  #s-44524e1b-f603-4875-9e15-99554db59710 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-44524e1b-f603-4875-9e15-99554db59710 {
    width: 100%;
    height: auto;
  }

  #s-44524e1b-f603-4875-9e15-99554db59710 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-44524e1b-f603-4875-9e15-99554db59710.shogun-image {
    
    
  }


.s-44524e1b-f603-4875-9e15-99554db59710 .shogun-image-content {
  
    align-items: center;
  
}

.s-44524e1b-f603-4875-9e15-99554db59710.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44524e1b-f603-4875-9e15-99554db59710.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44524e1b-f603-4875-9e15-99554db59710.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-44524e1b-f603-4875-9e15-99554db59710 {
      --shg-aspect-ratio: calc(585/906); 
    }

    .s-44524e1b-f603-4875-9e15-99554db59710.shogun-image-container {
      position: relative;
    }

    .s-44524e1b-f603-4875-9e15-99554db59710.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44524e1b-f603-4875-9e15-99554db59710.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44524e1b-f603-4875-9e15-99554db59710 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-44524e1b-f603-4875-9e15-99554db59710 img.shogun-image,
  #s-44524e1b-f603-4875-9e15-99554db59710 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-44524e1b-f603-4875-9e15-99554db59710 {
    width: 100%;
    height: auto;
  }

  #s-44524e1b-f603-4875-9e15-99554db59710 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-44524e1b-f603-4875-9e15-99554db59710.shogun-image {
    
    
  }


.s-44524e1b-f603-4875-9e15-99554db59710 .shogun-image-content {
  
    align-items: center;
  
}

.s-44524e1b-f603-4875-9e15-99554db59710.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44524e1b-f603-4875-9e15-99554db59710.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44524e1b-f603-4875-9e15-99554db59710.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-44524e1b-f603-4875-9e15-99554db59710 {
      --shg-aspect-ratio: calc(585/906); 
    }

    .s-44524e1b-f603-4875-9e15-99554db59710.shogun-image-container {
      position: relative;
    }

    .s-44524e1b-f603-4875-9e15-99554db59710.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44524e1b-f603-4875-9e15-99554db59710.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44524e1b-f603-4875-9e15-99554db59710 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-44524e1b-f603-4875-9e15-99554db59710 img.shogun-image,
  #s-44524e1b-f603-4875-9e15-99554db59710 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-44524e1b-f603-4875-9e15-99554db59710 {
    width: 100%;
    height: auto;
  }

  #s-44524e1b-f603-4875-9e15-99554db59710 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-44524e1b-f603-4875-9e15-99554db59710.shogun-image {
    
    
  }


.s-44524e1b-f603-4875-9e15-99554db59710 .shogun-image-content {
  
    align-items: center;
  
}

.s-44524e1b-f603-4875-9e15-99554db59710.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44524e1b-f603-4875-9e15-99554db59710.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44524e1b-f603-4875-9e15-99554db59710.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-44524e1b-f603-4875-9e15-99554db59710 {
      --shg-aspect-ratio: calc(585/906); 
    }

    .s-44524e1b-f603-4875-9e15-99554db59710.shogun-image-container {
      position: relative;
    }

    .s-44524e1b-f603-4875-9e15-99554db59710.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44524e1b-f603-4875-9e15-99554db59710.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44524e1b-f603-4875-9e15-99554db59710 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-44524e1b-f603-4875-9e15-99554db59710 img.shogun-image,
  #s-44524e1b-f603-4875-9e15-99554db59710 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-44524e1b-f603-4875-9e15-99554db59710 {
    width: 100%;
    height: auto;
  }

  #s-44524e1b-f603-4875-9e15-99554db59710 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-44524e1b-f603-4875-9e15-99554db59710.shogun-image {
    
    
  }


.s-44524e1b-f603-4875-9e15-99554db59710 .shogun-image-content {
  
    align-items: center;
  
}

.s-44524e1b-f603-4875-9e15-99554db59710.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44524e1b-f603-4875-9e15-99554db59710.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44524e1b-f603-4875-9e15-99554db59710.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-44524e1b-f603-4875-9e15-99554db59710 {
      --shg-aspect-ratio: calc(585/906); 
    }

    .s-44524e1b-f603-4875-9e15-99554db59710.shogun-image-container {
      position: relative;
    }

    .s-44524e1b-f603-4875-9e15-99554db59710.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44524e1b-f603-4875-9e15-99554db59710.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44524e1b-f603-4875-9e15-99554db59710 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-44524e1b-f603-4875-9e15-99554db59710 img.shogun-image,
  #s-44524e1b-f603-4875-9e15-99554db59710 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-44524e1b-f603-4875-9e15-99554db59710 {
    width: 100%;
    height: auto;
  }

  #s-44524e1b-f603-4875-9e15-99554db59710 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-44524e1b-f603-4875-9e15-99554db59710.shogun-image {
    
    
  }


.s-44524e1b-f603-4875-9e15-99554db59710 .shogun-image-content {
  
    align-items: center;
  
}

.s-44524e1b-f603-4875-9e15-99554db59710.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44524e1b-f603-4875-9e15-99554db59710.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44524e1b-f603-4875-9e15-99554db59710.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-44524e1b-f603-4875-9e15-99554db59710 {
      --shg-aspect-ratio: calc(585/906); 
    }

    .s-44524e1b-f603-4875-9e15-99554db59710.shogun-image-container {
      position: relative;
    }

    .s-44524e1b-f603-4875-9e15-99554db59710.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44524e1b-f603-4875-9e15-99554db59710.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44524e1b-f603-4875-9e15-99554db59710 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-905b3ab8-d1b5-4b38-8411-2720bde41563 {
  max-width: 588px;
aspect-ratio: 588/899;
text-align: center;
}





  #s-905b3ab8-d1b5-4b38-8411-2720bde41563 img.shogun-image,
  #s-905b3ab8-d1b5-4b38-8411-2720bde41563 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-905b3ab8-d1b5-4b38-8411-2720bde41563 {
    width: 100%;
    height: auto;
  }

  #s-905b3ab8-d1b5-4b38-8411-2720bde41563 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-905b3ab8-d1b5-4b38-8411-2720bde41563.shogun-image {
    
    
  }


.s-905b3ab8-d1b5-4b38-8411-2720bde41563 .shogun-image-content {
  
    align-items: center;
  
}

.s-905b3ab8-d1b5-4b38-8411-2720bde41563.shg-align-container {
  display: flex;
  justify-content: center
}

.s-905b3ab8-d1b5-4b38-8411-2720bde41563.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-905b3ab8-d1b5-4b38-8411-2720bde41563.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-905b3ab8-d1b5-4b38-8411-2720bde41563 {
      --shg-aspect-ratio: calc(588/899); 
    }

    .s-905b3ab8-d1b5-4b38-8411-2720bde41563.shogun-image-container {
      position: relative;
    }

    .s-905b3ab8-d1b5-4b38-8411-2720bde41563.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-905b3ab8-d1b5-4b38-8411-2720bde41563.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-905b3ab8-d1b5-4b38-8411-2720bde41563 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-905b3ab8-d1b5-4b38-8411-2720bde41563 img.shogun-image,
  #s-905b3ab8-d1b5-4b38-8411-2720bde41563 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-905b3ab8-d1b5-4b38-8411-2720bde41563 {
    width: 100%;
    height: auto;
  }

  #s-905b3ab8-d1b5-4b38-8411-2720bde41563 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-905b3ab8-d1b5-4b38-8411-2720bde41563.shogun-image {
    
    
  }


.s-905b3ab8-d1b5-4b38-8411-2720bde41563 .shogun-image-content {
  
    align-items: center;
  
}

.s-905b3ab8-d1b5-4b38-8411-2720bde41563.shg-align-container {
  display: flex;
  justify-content: center
}

.s-905b3ab8-d1b5-4b38-8411-2720bde41563.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-905b3ab8-d1b5-4b38-8411-2720bde41563.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-905b3ab8-d1b5-4b38-8411-2720bde41563 {
      --shg-aspect-ratio: calc(588/899); 
    }

    .s-905b3ab8-d1b5-4b38-8411-2720bde41563.shogun-image-container {
      position: relative;
    }

    .s-905b3ab8-d1b5-4b38-8411-2720bde41563.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-905b3ab8-d1b5-4b38-8411-2720bde41563.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-905b3ab8-d1b5-4b38-8411-2720bde41563 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-905b3ab8-d1b5-4b38-8411-2720bde41563 img.shogun-image,
  #s-905b3ab8-d1b5-4b38-8411-2720bde41563 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-905b3ab8-d1b5-4b38-8411-2720bde41563 {
    width: 100%;
    height: auto;
  }

  #s-905b3ab8-d1b5-4b38-8411-2720bde41563 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-905b3ab8-d1b5-4b38-8411-2720bde41563.shogun-image {
    
    
  }


.s-905b3ab8-d1b5-4b38-8411-2720bde41563 .shogun-image-content {
  
    align-items: center;
  
}

.s-905b3ab8-d1b5-4b38-8411-2720bde41563.shg-align-container {
  display: flex;
  justify-content: center
}

.s-905b3ab8-d1b5-4b38-8411-2720bde41563.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-905b3ab8-d1b5-4b38-8411-2720bde41563.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-905b3ab8-d1b5-4b38-8411-2720bde41563 {
      --shg-aspect-ratio: calc(588/899); 
    }

    .s-905b3ab8-d1b5-4b38-8411-2720bde41563.shogun-image-container {
      position: relative;
    }

    .s-905b3ab8-d1b5-4b38-8411-2720bde41563.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-905b3ab8-d1b5-4b38-8411-2720bde41563.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-905b3ab8-d1b5-4b38-8411-2720bde41563 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-905b3ab8-d1b5-4b38-8411-2720bde41563 img.shogun-image,
  #s-905b3ab8-d1b5-4b38-8411-2720bde41563 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-905b3ab8-d1b5-4b38-8411-2720bde41563 {
    width: 100%;
    height: auto;
  }

  #s-905b3ab8-d1b5-4b38-8411-2720bde41563 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-905b3ab8-d1b5-4b38-8411-2720bde41563.shogun-image {
    
    
  }


.s-905b3ab8-d1b5-4b38-8411-2720bde41563 .shogun-image-content {
  
    align-items: center;
  
}

.s-905b3ab8-d1b5-4b38-8411-2720bde41563.shg-align-container {
  display: flex;
  justify-content: center
}

.s-905b3ab8-d1b5-4b38-8411-2720bde41563.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-905b3ab8-d1b5-4b38-8411-2720bde41563.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-905b3ab8-d1b5-4b38-8411-2720bde41563 {
      --shg-aspect-ratio: calc(588/899); 
    }

    .s-905b3ab8-d1b5-4b38-8411-2720bde41563.shogun-image-container {
      position: relative;
    }

    .s-905b3ab8-d1b5-4b38-8411-2720bde41563.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-905b3ab8-d1b5-4b38-8411-2720bde41563.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-905b3ab8-d1b5-4b38-8411-2720bde41563 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-905b3ab8-d1b5-4b38-8411-2720bde41563 img.shogun-image,
  #s-905b3ab8-d1b5-4b38-8411-2720bde41563 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-905b3ab8-d1b5-4b38-8411-2720bde41563 {
    width: 100%;
    height: auto;
  }

  #s-905b3ab8-d1b5-4b38-8411-2720bde41563 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-905b3ab8-d1b5-4b38-8411-2720bde41563.shogun-image {
    
    
  }


.s-905b3ab8-d1b5-4b38-8411-2720bde41563 .shogun-image-content {
  
    align-items: center;
  
}

.s-905b3ab8-d1b5-4b38-8411-2720bde41563.shg-align-container {
  display: flex;
  justify-content: center
}

.s-905b3ab8-d1b5-4b38-8411-2720bde41563.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-905b3ab8-d1b5-4b38-8411-2720bde41563.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-905b3ab8-d1b5-4b38-8411-2720bde41563 {
      --shg-aspect-ratio: calc(588/899); 
    }

    .s-905b3ab8-d1b5-4b38-8411-2720bde41563.shogun-image-container {
      position: relative;
    }

    .s-905b3ab8-d1b5-4b38-8411-2720bde41563.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-905b3ab8-d1b5-4b38-8411-2720bde41563.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-905b3ab8-d1b5-4b38-8411-2720bde41563 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-0159bce7-01f4-4d20-81c3-2a83f59d1122 {
  max-width: 640px;
aspect-ratio: 640/1000;
text-align: center;
}





  #s-0159bce7-01f4-4d20-81c3-2a83f59d1122 img.shogun-image,
  #s-0159bce7-01f4-4d20-81c3-2a83f59d1122 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0159bce7-01f4-4d20-81c3-2a83f59d1122 {
    width: 100%;
    height: auto;
  }

  #s-0159bce7-01f4-4d20-81c3-2a83f59d1122 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shogun-image {
    
    
  }


.s-0159bce7-01f4-4d20-81c3-2a83f59d1122 .shogun-image-content {
  
    align-items: center;
  
}

.s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0159bce7-01f4-4d20-81c3-2a83f59d1122 {
      --shg-aspect-ratio: calc(640/1000); 
    }

    .s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shogun-image-container {
      position: relative;
    }

    .s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0159bce7-01f4-4d20-81c3-2a83f59d1122 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-0159bce7-01f4-4d20-81c3-2a83f59d1122 img.shogun-image,
  #s-0159bce7-01f4-4d20-81c3-2a83f59d1122 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0159bce7-01f4-4d20-81c3-2a83f59d1122 {
    width: 100%;
    height: auto;
  }

  #s-0159bce7-01f4-4d20-81c3-2a83f59d1122 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shogun-image {
    
    
  }


.s-0159bce7-01f4-4d20-81c3-2a83f59d1122 .shogun-image-content {
  
    align-items: center;
  
}

.s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0159bce7-01f4-4d20-81c3-2a83f59d1122 {
      --shg-aspect-ratio: calc(640/1000); 
    }

    .s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shogun-image-container {
      position: relative;
    }

    .s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0159bce7-01f4-4d20-81c3-2a83f59d1122 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-0159bce7-01f4-4d20-81c3-2a83f59d1122 img.shogun-image,
  #s-0159bce7-01f4-4d20-81c3-2a83f59d1122 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0159bce7-01f4-4d20-81c3-2a83f59d1122 {
    width: 100%;
    height: auto;
  }

  #s-0159bce7-01f4-4d20-81c3-2a83f59d1122 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shogun-image {
    
    
  }


.s-0159bce7-01f4-4d20-81c3-2a83f59d1122 .shogun-image-content {
  
    align-items: center;
  
}

.s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0159bce7-01f4-4d20-81c3-2a83f59d1122 {
      --shg-aspect-ratio: calc(640/1000); 
    }

    .s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shogun-image-container {
      position: relative;
    }

    .s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0159bce7-01f4-4d20-81c3-2a83f59d1122 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-0159bce7-01f4-4d20-81c3-2a83f59d1122 img.shogun-image,
  #s-0159bce7-01f4-4d20-81c3-2a83f59d1122 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0159bce7-01f4-4d20-81c3-2a83f59d1122 {
    width: 100%;
    height: auto;
  }

  #s-0159bce7-01f4-4d20-81c3-2a83f59d1122 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shogun-image {
    
    
  }


.s-0159bce7-01f4-4d20-81c3-2a83f59d1122 .shogun-image-content {
  
    align-items: center;
  
}

.s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0159bce7-01f4-4d20-81c3-2a83f59d1122 {
      --shg-aspect-ratio: calc(640/1000); 
    }

    .s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shogun-image-container {
      position: relative;
    }

    .s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0159bce7-01f4-4d20-81c3-2a83f59d1122 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-0159bce7-01f4-4d20-81c3-2a83f59d1122 img.shogun-image,
  #s-0159bce7-01f4-4d20-81c3-2a83f59d1122 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0159bce7-01f4-4d20-81c3-2a83f59d1122 {
    width: 100%;
    height: auto;
  }

  #s-0159bce7-01f4-4d20-81c3-2a83f59d1122 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shogun-image {
    
    
  }


.s-0159bce7-01f4-4d20-81c3-2a83f59d1122 .shogun-image-content {
  
    align-items: center;
  
}

.s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0159bce7-01f4-4d20-81c3-2a83f59d1122 {
      --shg-aspect-ratio: calc(640/1000); 
    }

    .s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shogun-image-container {
      position: relative;
    }

    .s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0159bce7-01f4-4d20-81c3-2a83f59d1122.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0159bce7-01f4-4d20-81c3-2a83f59d1122 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-d3392a32-b80e-4d2f-b9fd-f7d689804b00 {
  min-height: 50px;
}








#s-d3392a32-b80e-4d2f-b9fd-f7d689804b00 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d3392a32-b80e-4d2f-b9fd-f7d689804b00.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-46bc9d04-a07d-433d-b12e-4beb98a0938e {
  max-width: 1080px;
aspect-ratio: 1080/1448;
text-align: center;
}





  #s-46bc9d04-a07d-433d-b12e-4beb98a0938e img.shogun-image,
  #s-46bc9d04-a07d-433d-b12e-4beb98a0938e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-46bc9d04-a07d-433d-b12e-4beb98a0938e {
    width: 100%;
    height: auto;
  }

  #s-46bc9d04-a07d-433d-b12e-4beb98a0938e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shogun-image {
    
    
  }


.s-46bc9d04-a07d-433d-b12e-4beb98a0938e .shogun-image-content {
  
    align-items: center;
  
}

.s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-46bc9d04-a07d-433d-b12e-4beb98a0938e {
      --shg-aspect-ratio: calc(1080/1448); 
    }

    .s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shogun-image-container {
      position: relative;
    }

    .s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-46bc9d04-a07d-433d-b12e-4beb98a0938e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-46bc9d04-a07d-433d-b12e-4beb98a0938e img.shogun-image,
  #s-46bc9d04-a07d-433d-b12e-4beb98a0938e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-46bc9d04-a07d-433d-b12e-4beb98a0938e {
    width: 100%;
    height: auto;
  }

  #s-46bc9d04-a07d-433d-b12e-4beb98a0938e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shogun-image {
    
    
  }


.s-46bc9d04-a07d-433d-b12e-4beb98a0938e .shogun-image-content {
  
    align-items: center;
  
}

.s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-46bc9d04-a07d-433d-b12e-4beb98a0938e {
      --shg-aspect-ratio: calc(1080/1448); 
    }

    .s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shogun-image-container {
      position: relative;
    }

    .s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-46bc9d04-a07d-433d-b12e-4beb98a0938e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-46bc9d04-a07d-433d-b12e-4beb98a0938e img.shogun-image,
  #s-46bc9d04-a07d-433d-b12e-4beb98a0938e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-46bc9d04-a07d-433d-b12e-4beb98a0938e {
    width: 100%;
    height: auto;
  }

  #s-46bc9d04-a07d-433d-b12e-4beb98a0938e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shogun-image {
    
    
  }


.s-46bc9d04-a07d-433d-b12e-4beb98a0938e .shogun-image-content {
  
    align-items: center;
  
}

.s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-46bc9d04-a07d-433d-b12e-4beb98a0938e {
      --shg-aspect-ratio: calc(1080/1448); 
    }

    .s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shogun-image-container {
      position: relative;
    }

    .s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-46bc9d04-a07d-433d-b12e-4beb98a0938e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-46bc9d04-a07d-433d-b12e-4beb98a0938e img.shogun-image,
  #s-46bc9d04-a07d-433d-b12e-4beb98a0938e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-46bc9d04-a07d-433d-b12e-4beb98a0938e {
    width: 100%;
    height: auto;
  }

  #s-46bc9d04-a07d-433d-b12e-4beb98a0938e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shogun-image {
    
    
  }


.s-46bc9d04-a07d-433d-b12e-4beb98a0938e .shogun-image-content {
  
    align-items: center;
  
}

.s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-46bc9d04-a07d-433d-b12e-4beb98a0938e {
      --shg-aspect-ratio: calc(1080/1448); 
    }

    .s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shogun-image-container {
      position: relative;
    }

    .s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-46bc9d04-a07d-433d-b12e-4beb98a0938e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-46bc9d04-a07d-433d-b12e-4beb98a0938e img.shogun-image,
  #s-46bc9d04-a07d-433d-b12e-4beb98a0938e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-46bc9d04-a07d-433d-b12e-4beb98a0938e {
    width: 100%;
    height: auto;
  }

  #s-46bc9d04-a07d-433d-b12e-4beb98a0938e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shogun-image {
    
    
  }


.s-46bc9d04-a07d-433d-b12e-4beb98a0938e .shogun-image-content {
  
    align-items: center;
  
}

.s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-46bc9d04-a07d-433d-b12e-4beb98a0938e {
      --shg-aspect-ratio: calc(1080/1448); 
    }

    .s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shogun-image-container {
      position: relative;
    }

    .s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-46bc9d04-a07d-433d-b12e-4beb98a0938e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-46bc9d04-a07d-433d-b12e-4beb98a0938e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-832fe664-7749-4133-baf6-2011d837bec4 {
  min-height: 50px;
}








#s-832fe664-7749-4133-baf6-2011d837bec4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-832fe664-7749-4133-baf6-2011d837bec4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e {
  max-width: 1080px;
aspect-ratio: 1080/1920;
text-align: center;
}





  #s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e img.shogun-image,
  #s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e {
    width: 100%;
    height: auto;
  }

  #s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shogun-image {
    
    
  }


.s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e .shogun-image-content {
  
    align-items: center;
  
}

.s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shogun-image-container {
      position: relative;
    }

    .s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e img.shogun-image,
  #s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e {
    width: 100%;
    height: auto;
  }

  #s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shogun-image {
    
    
  }


.s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e .shogun-image-content {
  
    align-items: center;
  
}

.s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shogun-image-container {
      position: relative;
    }

    .s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e img.shogun-image,
  #s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e {
    width: 100%;
    height: auto;
  }

  #s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shogun-image {
    
    
  }


.s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e .shogun-image-content {
  
    align-items: center;
  
}

.s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shogun-image-container {
      position: relative;
    }

    .s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e img.shogun-image,
  #s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e {
    width: 100%;
    height: auto;
  }

  #s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shogun-image {
    
    
  }


.s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e .shogun-image-content {
  
    align-items: center;
  
}

.s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shogun-image-container {
      position: relative;
    }

    .s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e img.shogun-image,
  #s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e {
    width: 100%;
    height: auto;
  }

  #s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shogun-image {
    
    
  }


.s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e .shogun-image-content {
  
    align-items: center;
  
}

.s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shogun-image-container {
      position: relative;
    }

    .s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a4117a51-a8e3-4ab4-abf7-221d8490aa9e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-54677f29-3af8-4874-a5c0-4ae287082f71 {
  min-height: 50px;
}








#s-54677f29-3af8-4874-a5c0-4ae287082f71 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-54677f29-3af8-4874-a5c0-4ae287082f71.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e7554f1a-ee2c-4313-a038-67a925c187e4 {
  max-width: 1080px;
aspect-ratio: 1080/1920;
text-align: center;
}





  #s-e7554f1a-ee2c-4313-a038-67a925c187e4 img.shogun-image,
  #s-e7554f1a-ee2c-4313-a038-67a925c187e4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e7554f1a-ee2c-4313-a038-67a925c187e4 {
    width: 100%;
    height: auto;
  }

  #s-e7554f1a-ee2c-4313-a038-67a925c187e4 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e7554f1a-ee2c-4313-a038-67a925c187e4.shogun-image {
    
    
  }


.s-e7554f1a-ee2c-4313-a038-67a925c187e4 .shogun-image-content {
  
    align-items: center;
  
}

.s-e7554f1a-ee2c-4313-a038-67a925c187e4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7554f1a-ee2c-4313-a038-67a925c187e4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7554f1a-ee2c-4313-a038-67a925c187e4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e7554f1a-ee2c-4313-a038-67a925c187e4 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-e7554f1a-ee2c-4313-a038-67a925c187e4.shogun-image-container {
      position: relative;
    }

    .s-e7554f1a-ee2c-4313-a038-67a925c187e4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e7554f1a-ee2c-4313-a038-67a925c187e4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e7554f1a-ee2c-4313-a038-67a925c187e4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-e7554f1a-ee2c-4313-a038-67a925c187e4 img.shogun-image,
  #s-e7554f1a-ee2c-4313-a038-67a925c187e4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e7554f1a-ee2c-4313-a038-67a925c187e4 {
    width: 100%;
    height: auto;
  }

  #s-e7554f1a-ee2c-4313-a038-67a925c187e4 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e7554f1a-ee2c-4313-a038-67a925c187e4.shogun-image {
    
    
  }


.s-e7554f1a-ee2c-4313-a038-67a925c187e4 .shogun-image-content {
  
    align-items: center;
  
}

.s-e7554f1a-ee2c-4313-a038-67a925c187e4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7554f1a-ee2c-4313-a038-67a925c187e4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7554f1a-ee2c-4313-a038-67a925c187e4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e7554f1a-ee2c-4313-a038-67a925c187e4 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-e7554f1a-ee2c-4313-a038-67a925c187e4.shogun-image-container {
      position: relative;
    }

    .s-e7554f1a-ee2c-4313-a038-67a925c187e4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e7554f1a-ee2c-4313-a038-67a925c187e4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e7554f1a-ee2c-4313-a038-67a925c187e4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-e7554f1a-ee2c-4313-a038-67a925c187e4 img.shogun-image,
  #s-e7554f1a-ee2c-4313-a038-67a925c187e4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e7554f1a-ee2c-4313-a038-67a925c187e4 {
    width: 100%;
    height: auto;
  }

  #s-e7554f1a-ee2c-4313-a038-67a925c187e4 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e7554f1a-ee2c-4313-a038-67a925c187e4.shogun-image {
    
    
  }


.s-e7554f1a-ee2c-4313-a038-67a925c187e4 .shogun-image-content {
  
    align-items: center;
  
}

.s-e7554f1a-ee2c-4313-a038-67a925c187e4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7554f1a-ee2c-4313-a038-67a925c187e4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7554f1a-ee2c-4313-a038-67a925c187e4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e7554f1a-ee2c-4313-a038-67a925c187e4 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-e7554f1a-ee2c-4313-a038-67a925c187e4.shogun-image-container {
      position: relative;
    }

    .s-e7554f1a-ee2c-4313-a038-67a925c187e4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e7554f1a-ee2c-4313-a038-67a925c187e4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e7554f1a-ee2c-4313-a038-67a925c187e4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-e7554f1a-ee2c-4313-a038-67a925c187e4 img.shogun-image,
  #s-e7554f1a-ee2c-4313-a038-67a925c187e4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e7554f1a-ee2c-4313-a038-67a925c187e4 {
    width: 100%;
    height: auto;
  }

  #s-e7554f1a-ee2c-4313-a038-67a925c187e4 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e7554f1a-ee2c-4313-a038-67a925c187e4.shogun-image {
    
    
  }


.s-e7554f1a-ee2c-4313-a038-67a925c187e4 .shogun-image-content {
  
    align-items: center;
  
}

.s-e7554f1a-ee2c-4313-a038-67a925c187e4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7554f1a-ee2c-4313-a038-67a925c187e4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7554f1a-ee2c-4313-a038-67a925c187e4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e7554f1a-ee2c-4313-a038-67a925c187e4 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-e7554f1a-ee2c-4313-a038-67a925c187e4.shogun-image-container {
      position: relative;
    }

    .s-e7554f1a-ee2c-4313-a038-67a925c187e4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e7554f1a-ee2c-4313-a038-67a925c187e4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e7554f1a-ee2c-4313-a038-67a925c187e4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-e7554f1a-ee2c-4313-a038-67a925c187e4 img.shogun-image,
  #s-e7554f1a-ee2c-4313-a038-67a925c187e4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e7554f1a-ee2c-4313-a038-67a925c187e4 {
    width: 100%;
    height: auto;
  }

  #s-e7554f1a-ee2c-4313-a038-67a925c187e4 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e7554f1a-ee2c-4313-a038-67a925c187e4.shogun-image {
    
    
  }


.s-e7554f1a-ee2c-4313-a038-67a925c187e4 .shogun-image-content {
  
    align-items: center;
  
}

.s-e7554f1a-ee2c-4313-a038-67a925c187e4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7554f1a-ee2c-4313-a038-67a925c187e4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7554f1a-ee2c-4313-a038-67a925c187e4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e7554f1a-ee2c-4313-a038-67a925c187e4 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-e7554f1a-ee2c-4313-a038-67a925c187e4.shogun-image-container {
      position: relative;
    }

    .s-e7554f1a-ee2c-4313-a038-67a925c187e4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e7554f1a-ee2c-4313-a038-67a925c187e4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e7554f1a-ee2c-4313-a038-67a925c187e4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-31f3c703-3594-4df0-bffc-f3f4fd5b5e88 {
  min-height: 50px;
}








#s-31f3c703-3594-4df0-bffc-f3f4fd5b5e88 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-31f3c703-3594-4df0-bffc-f3f4fd5b5e88.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 {
  max-width: 1078px;
aspect-ratio: 1/1;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 {
  display: none;
}
#s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44, #wrap-s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 {
  display: none;
}
#s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44, #wrap-s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 { display: none !important; }}@media (max-width: 767px){#s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 {
  display: none;
}
#s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44, #wrap-s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 { display: none !important; }}




  #s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 img.shogun-image,
  #s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 {
    width: 100%;
    height: auto;
  }

  #s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shogun-image {
    
    
  }


.s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 .shogun-image-content {
  
    align-items: center;
  
}

.s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shg-align-container {
  display: flex;
  justify-content: center
}

.s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shogun-image-container {
      position: relative;
    }

    .s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 img.shogun-image,
  #s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 {
    width: 100%;
    height: auto;
  }

  #s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shogun-image {
    
    
  }


.s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 .shogun-image-content {
  
    align-items: center;
  
}

.s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shg-align-container {
  display: flex;
  justify-content: center
}

.s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shogun-image-container {
      position: relative;
    }

    .s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 img.shogun-image,
  #s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 {
    width: 100%;
    height: auto;
  }

  #s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shogun-image {
    
    
  }


.s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 .shogun-image-content {
  
    align-items: center;
  
}

.s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shg-align-container {
  display: flex;
  justify-content: center
}

.s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shogun-image-container {
      position: relative;
    }

    .s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 img.shogun-image,
  #s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 {
    width: 100%;
    height: auto;
  }

  #s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shogun-image {
    
    
  }


.s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 .shogun-image-content {
  
    align-items: center;
  
}

.s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shg-align-container {
  display: flex;
  justify-content: center
}

.s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shogun-image-container {
      position: relative;
    }

    .s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 img.shogun-image,
  #s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 {
    width: 100%;
    height: auto;
  }

  #s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shogun-image {
    
    
  }


.s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 .shogun-image-content {
  
    align-items: center;
  
}

.s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shg-align-container {
  display: flex;
  justify-content: center
}

.s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shogun-image-container {
      position: relative;
    }

    .s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-86bf6c22-13cc-4f05-8bf3-a2e0468dff44 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-cbc5e032-0757-4a60-9c01-0f7e2bba8866 {
  min-height: 50px;
}








#s-cbc5e032-0757-4a60-9c01-0f7e2bba8866 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cbc5e032-0757-4a60-9c01-0f7e2bba8866.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2cfd9259-0df0-4bd5-8e41-5b0c6d9fd601 {
  text-align: left;
}

#s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f {
  max-width: 1080px;
aspect-ratio: 1080/1920;
text-align: center;
}





  #s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f img.shogun-image,
  #s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f {
    width: 100%;
    height: auto;
  }

  #s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shogun-image {
    
    
  }


.s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f .shogun-image-content {
  
    align-items: center;
  
}

.s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shogun-image-container {
      position: relative;
    }

    .s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f img.shogun-image,
  #s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f {
    width: 100%;
    height: auto;
  }

  #s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shogun-image {
    
    
  }


.s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f .shogun-image-content {
  
    align-items: center;
  
}

.s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shogun-image-container {
      position: relative;
    }

    .s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f img.shogun-image,
  #s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f {
    width: 100%;
    height: auto;
  }

  #s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shogun-image {
    
    
  }


.s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f .shogun-image-content {
  
    align-items: center;
  
}

.s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shogun-image-container {
      position: relative;
    }

    .s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f img.shogun-image,
  #s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f {
    width: 100%;
    height: auto;
  }

  #s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shogun-image {
    
    
  }


.s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f .shogun-image-content {
  
    align-items: center;
  
}

.s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shogun-image-container {
      position: relative;
    }

    .s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f img.shogun-image,
  #s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f {
    width: 100%;
    height: auto;
  }

  #s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shogun-image {
    
    
  }


.s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f .shogun-image-content {
  
    align-items: center;
  
}

.s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shogun-image-container {
      position: relative;
    }

    .s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7e219c26-f566-4e6b-94e0-38f9a4f13a6f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
/*
  $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}
