.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-f9a0c354-2ba6-4cff-9ad0-2a4c7dd1514d {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-f9a0c354-2ba6-4cff-9ad0-2a4c7dd1514d {
  display: none;
}
#s-f9a0c354-2ba6-4cff-9ad0-2a4c7dd1514d, #wrap-s-f9a0c354-2ba6-4cff-9ad0-2a4c7dd1514d { display: none !important; }}@media (max-width: 767px){#s-f9a0c354-2ba6-4cff-9ad0-2a4c7dd1514d {
  display: none;
}
#s-f9a0c354-2ba6-4cff-9ad0-2a4c7dd1514d, #wrap-s-f9a0c354-2ba6-4cff-9ad0-2a4c7dd1514d { display: none !important; }}







#s-f9a0c354-2ba6-4cff-9ad0-2a4c7dd1514d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f9a0c354-2ba6-4cff-9ad0-2a4c7dd1514d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

@media (min-width: 0px) {
[id="s-296389b3-5208-4576-970f-97bdf4efd018"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-296389b3-5208-4576-970f-97bdf4efd018"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-296389b3-5208-4576-970f-97bdf4efd018"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-296389b3-5208-4576-970f-97bdf4efd018"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

.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-d2a4428c-5006-406e-934b-8df6534591ec {
  max-width: 1500px;
aspect-ratio: 1500/2100;
text-align: center;
}





  #s-d2a4428c-5006-406e-934b-8df6534591ec img.shogun-image,
  #s-d2a4428c-5006-406e-934b-8df6534591ec .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d2a4428c-5006-406e-934b-8df6534591ec {
    width: 100%;
    height: auto;
  }

  #s-d2a4428c-5006-406e-934b-8df6534591ec img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d2a4428c-5006-406e-934b-8df6534591ec.shogun-image {
    
    
  }


.s-d2a4428c-5006-406e-934b-8df6534591ec .shogun-image-content {
  
    align-items: center;
  
}

.s-d2a4428c-5006-406e-934b-8df6534591ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d2a4428c-5006-406e-934b-8df6534591ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d2a4428c-5006-406e-934b-8df6534591ec.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d2a4428c-5006-406e-934b-8df6534591ec {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-d2a4428c-5006-406e-934b-8df6534591ec.shogun-image-container {
      position: relative;
    }

    .s-d2a4428c-5006-406e-934b-8df6534591ec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d2a4428c-5006-406e-934b-8df6534591ec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d2a4428c-5006-406e-934b-8df6534591ec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-d2a4428c-5006-406e-934b-8df6534591ec img.shogun-image,
  #s-d2a4428c-5006-406e-934b-8df6534591ec .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d2a4428c-5006-406e-934b-8df6534591ec {
    width: 100%;
    height: auto;
  }

  #s-d2a4428c-5006-406e-934b-8df6534591ec img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d2a4428c-5006-406e-934b-8df6534591ec.shogun-image {
    
    
  }


.s-d2a4428c-5006-406e-934b-8df6534591ec .shogun-image-content {
  
    align-items: center;
  
}

.s-d2a4428c-5006-406e-934b-8df6534591ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d2a4428c-5006-406e-934b-8df6534591ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d2a4428c-5006-406e-934b-8df6534591ec.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d2a4428c-5006-406e-934b-8df6534591ec {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-d2a4428c-5006-406e-934b-8df6534591ec.shogun-image-container {
      position: relative;
    }

    .s-d2a4428c-5006-406e-934b-8df6534591ec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d2a4428c-5006-406e-934b-8df6534591ec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d2a4428c-5006-406e-934b-8df6534591ec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-d2a4428c-5006-406e-934b-8df6534591ec img.shogun-image,
  #s-d2a4428c-5006-406e-934b-8df6534591ec .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d2a4428c-5006-406e-934b-8df6534591ec {
    width: 100%;
    height: auto;
  }

  #s-d2a4428c-5006-406e-934b-8df6534591ec img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d2a4428c-5006-406e-934b-8df6534591ec.shogun-image {
    
    
  }


.s-d2a4428c-5006-406e-934b-8df6534591ec .shogun-image-content {
  
    align-items: center;
  
}

.s-d2a4428c-5006-406e-934b-8df6534591ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d2a4428c-5006-406e-934b-8df6534591ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d2a4428c-5006-406e-934b-8df6534591ec.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d2a4428c-5006-406e-934b-8df6534591ec {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-d2a4428c-5006-406e-934b-8df6534591ec.shogun-image-container {
      position: relative;
    }

    .s-d2a4428c-5006-406e-934b-8df6534591ec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d2a4428c-5006-406e-934b-8df6534591ec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d2a4428c-5006-406e-934b-8df6534591ec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-d2a4428c-5006-406e-934b-8df6534591ec img.shogun-image,
  #s-d2a4428c-5006-406e-934b-8df6534591ec .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d2a4428c-5006-406e-934b-8df6534591ec {
    width: 100%;
    height: auto;
  }

  #s-d2a4428c-5006-406e-934b-8df6534591ec img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d2a4428c-5006-406e-934b-8df6534591ec.shogun-image {
    
    
  }


.s-d2a4428c-5006-406e-934b-8df6534591ec .shogun-image-content {
  
    align-items: center;
  
}

.s-d2a4428c-5006-406e-934b-8df6534591ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d2a4428c-5006-406e-934b-8df6534591ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d2a4428c-5006-406e-934b-8df6534591ec.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d2a4428c-5006-406e-934b-8df6534591ec {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-d2a4428c-5006-406e-934b-8df6534591ec.shogun-image-container {
      position: relative;
    }

    .s-d2a4428c-5006-406e-934b-8df6534591ec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d2a4428c-5006-406e-934b-8df6534591ec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d2a4428c-5006-406e-934b-8df6534591ec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-d2a4428c-5006-406e-934b-8df6534591ec img.shogun-image,
  #s-d2a4428c-5006-406e-934b-8df6534591ec .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d2a4428c-5006-406e-934b-8df6534591ec {
    width: 100%;
    height: auto;
  }

  #s-d2a4428c-5006-406e-934b-8df6534591ec img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d2a4428c-5006-406e-934b-8df6534591ec.shogun-image {
    
    
  }


.s-d2a4428c-5006-406e-934b-8df6534591ec .shogun-image-content {
  
    align-items: center;
  
}

.s-d2a4428c-5006-406e-934b-8df6534591ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d2a4428c-5006-406e-934b-8df6534591ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d2a4428c-5006-406e-934b-8df6534591ec.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d2a4428c-5006-406e-934b-8df6534591ec {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-d2a4428c-5006-406e-934b-8df6534591ec.shogun-image-container {
      position: relative;
    }

    .s-d2a4428c-5006-406e-934b-8df6534591ec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d2a4428c-5006-406e-934b-8df6534591ec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d2a4428c-5006-406e-934b-8df6534591ec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-e34fa0db-efac-4d05-8ae2-5014066d02d1 {
  max-width: 1500px;
aspect-ratio: 1500/2100;
text-align: center;
}





  #s-e34fa0db-efac-4d05-8ae2-5014066d02d1 img.shogun-image,
  #s-e34fa0db-efac-4d05-8ae2-5014066d02d1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e34fa0db-efac-4d05-8ae2-5014066d02d1 {
    width: 100%;
    height: auto;
  }

  #s-e34fa0db-efac-4d05-8ae2-5014066d02d1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shogun-image {
    
    
  }


.s-e34fa0db-efac-4d05-8ae2-5014066d02d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e34fa0db-efac-4d05-8ae2-5014066d02d1 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shogun-image-container {
      position: relative;
    }

    .s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e34fa0db-efac-4d05-8ae2-5014066d02d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-e34fa0db-efac-4d05-8ae2-5014066d02d1 img.shogun-image,
  #s-e34fa0db-efac-4d05-8ae2-5014066d02d1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e34fa0db-efac-4d05-8ae2-5014066d02d1 {
    width: 100%;
    height: auto;
  }

  #s-e34fa0db-efac-4d05-8ae2-5014066d02d1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shogun-image {
    
    
  }


.s-e34fa0db-efac-4d05-8ae2-5014066d02d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e34fa0db-efac-4d05-8ae2-5014066d02d1 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shogun-image-container {
      position: relative;
    }

    .s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e34fa0db-efac-4d05-8ae2-5014066d02d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-e34fa0db-efac-4d05-8ae2-5014066d02d1 img.shogun-image,
  #s-e34fa0db-efac-4d05-8ae2-5014066d02d1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e34fa0db-efac-4d05-8ae2-5014066d02d1 {
    width: 100%;
    height: auto;
  }

  #s-e34fa0db-efac-4d05-8ae2-5014066d02d1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shogun-image {
    
    
  }


.s-e34fa0db-efac-4d05-8ae2-5014066d02d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e34fa0db-efac-4d05-8ae2-5014066d02d1 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shogun-image-container {
      position: relative;
    }

    .s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e34fa0db-efac-4d05-8ae2-5014066d02d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-e34fa0db-efac-4d05-8ae2-5014066d02d1 img.shogun-image,
  #s-e34fa0db-efac-4d05-8ae2-5014066d02d1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e34fa0db-efac-4d05-8ae2-5014066d02d1 {
    width: 100%;
    height: auto;
  }

  #s-e34fa0db-efac-4d05-8ae2-5014066d02d1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shogun-image {
    
    
  }


.s-e34fa0db-efac-4d05-8ae2-5014066d02d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e34fa0db-efac-4d05-8ae2-5014066d02d1 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shogun-image-container {
      position: relative;
    }

    .s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e34fa0db-efac-4d05-8ae2-5014066d02d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-e34fa0db-efac-4d05-8ae2-5014066d02d1 img.shogun-image,
  #s-e34fa0db-efac-4d05-8ae2-5014066d02d1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e34fa0db-efac-4d05-8ae2-5014066d02d1 {
    width: 100%;
    height: auto;
  }

  #s-e34fa0db-efac-4d05-8ae2-5014066d02d1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shogun-image {
    
    
  }


.s-e34fa0db-efac-4d05-8ae2-5014066d02d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e34fa0db-efac-4d05-8ae2-5014066d02d1 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shogun-image-container {
      position: relative;
    }

    .s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e34fa0db-efac-4d05-8ae2-5014066d02d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e34fa0db-efac-4d05-8ae2-5014066d02d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-6b1b8b76-714c-4fa3-a2bb-b3596c3b9caf {
  min-height: 50px;
}








#s-6b1b8b76-714c-4fa3-a2bb-b3596c3b9caf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6b1b8b76-714c-4fa3-a2bb-b3596c3b9caf.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-e406db68-0360-419c-91ce-340101769fa2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e406db68-0360-419c-91ce-340101769fa2"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-e406db68-0360-419c-91ce-340101769fa2"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-e406db68-0360-419c-91ce-340101769fa2"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-e406db68-0360-419c-91ce-340101769fa2"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-e406db68-0360-419c-91ce-340101769fa2"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-e406db68-0360-419c-91ce-340101769fa2"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-e406db68-0360-419c-91ce-340101769fa2"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-e406db68-0360-419c-91ce-340101769fa2"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-e406db68-0360-419c-91ce-340101769fa2"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

}

.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-fd996a7a-a74a-4bb5-8ce7-ad881fd926de {
  min-height: 50px;
}








#s-fd996a7a-a74a-4bb5-8ce7-ad881fd926de > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fd996a7a-a74a-4bb5-8ce7-ad881fd926de.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-140a520c-94b3-4b4d-a1f3-a3ad87d58b15 {
  padding-left: 5%;
padding-right: 5%;
}

@media (min-width: 0px) {
[id="s-140a520c-94b3-4b4d-a1f3-a3ad87d58b15"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-140a520c-94b3-4b4d-a1f3-a3ad87d58b15"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-140a520c-94b3-4b4d-a1f3-a3ad87d58b15"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-140a520c-94b3-4b4d-a1f3-a3ad87d58b15"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-140a520c-94b3-4b4d-a1f3-a3ad87d58b15"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-140a520c-94b3-4b4d-a1f3-a3ad87d58b15"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-140a520c-94b3-4b4d-a1f3-a3ad87d58b15"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

#s-b538dc2f-7508-4439-a3be-413e09b0bfba {
  max-width: 1500px;
aspect-ratio: 1500/2100;
text-align: center;
}





  #s-b538dc2f-7508-4439-a3be-413e09b0bfba img.shogun-image,
  #s-b538dc2f-7508-4439-a3be-413e09b0bfba .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b538dc2f-7508-4439-a3be-413e09b0bfba {
    width: 100%;
    height: auto;
  }

  #s-b538dc2f-7508-4439-a3be-413e09b0bfba img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b538dc2f-7508-4439-a3be-413e09b0bfba.shogun-image {
    
    
  }


.s-b538dc2f-7508-4439-a3be-413e09b0bfba .shogun-image-content {
  
    align-items: center;
  
}

.s-b538dc2f-7508-4439-a3be-413e09b0bfba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b538dc2f-7508-4439-a3be-413e09b0bfba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b538dc2f-7508-4439-a3be-413e09b0bfba.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b538dc2f-7508-4439-a3be-413e09b0bfba {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-b538dc2f-7508-4439-a3be-413e09b0bfba.shogun-image-container {
      position: relative;
    }

    .s-b538dc2f-7508-4439-a3be-413e09b0bfba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b538dc2f-7508-4439-a3be-413e09b0bfba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b538dc2f-7508-4439-a3be-413e09b0bfba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-b538dc2f-7508-4439-a3be-413e09b0bfba img.shogun-image,
  #s-b538dc2f-7508-4439-a3be-413e09b0bfba .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b538dc2f-7508-4439-a3be-413e09b0bfba {
    width: 100%;
    height: auto;
  }

  #s-b538dc2f-7508-4439-a3be-413e09b0bfba img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b538dc2f-7508-4439-a3be-413e09b0bfba.shogun-image {
    
    
  }


.s-b538dc2f-7508-4439-a3be-413e09b0bfba .shogun-image-content {
  
    align-items: center;
  
}

.s-b538dc2f-7508-4439-a3be-413e09b0bfba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b538dc2f-7508-4439-a3be-413e09b0bfba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b538dc2f-7508-4439-a3be-413e09b0bfba.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b538dc2f-7508-4439-a3be-413e09b0bfba {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-b538dc2f-7508-4439-a3be-413e09b0bfba.shogun-image-container {
      position: relative;
    }

    .s-b538dc2f-7508-4439-a3be-413e09b0bfba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b538dc2f-7508-4439-a3be-413e09b0bfba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b538dc2f-7508-4439-a3be-413e09b0bfba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-b538dc2f-7508-4439-a3be-413e09b0bfba img.shogun-image,
  #s-b538dc2f-7508-4439-a3be-413e09b0bfba .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b538dc2f-7508-4439-a3be-413e09b0bfba {
    width: 100%;
    height: auto;
  }

  #s-b538dc2f-7508-4439-a3be-413e09b0bfba img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b538dc2f-7508-4439-a3be-413e09b0bfba.shogun-image {
    
    
  }


.s-b538dc2f-7508-4439-a3be-413e09b0bfba .shogun-image-content {
  
    align-items: center;
  
}

.s-b538dc2f-7508-4439-a3be-413e09b0bfba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b538dc2f-7508-4439-a3be-413e09b0bfba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b538dc2f-7508-4439-a3be-413e09b0bfba.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b538dc2f-7508-4439-a3be-413e09b0bfba {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-b538dc2f-7508-4439-a3be-413e09b0bfba.shogun-image-container {
      position: relative;
    }

    .s-b538dc2f-7508-4439-a3be-413e09b0bfba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b538dc2f-7508-4439-a3be-413e09b0bfba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b538dc2f-7508-4439-a3be-413e09b0bfba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-b538dc2f-7508-4439-a3be-413e09b0bfba img.shogun-image,
  #s-b538dc2f-7508-4439-a3be-413e09b0bfba .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b538dc2f-7508-4439-a3be-413e09b0bfba {
    width: 100%;
    height: auto;
  }

  #s-b538dc2f-7508-4439-a3be-413e09b0bfba img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b538dc2f-7508-4439-a3be-413e09b0bfba.shogun-image {
    
    
  }


.s-b538dc2f-7508-4439-a3be-413e09b0bfba .shogun-image-content {
  
    align-items: center;
  
}

.s-b538dc2f-7508-4439-a3be-413e09b0bfba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b538dc2f-7508-4439-a3be-413e09b0bfba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b538dc2f-7508-4439-a3be-413e09b0bfba.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b538dc2f-7508-4439-a3be-413e09b0bfba {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-b538dc2f-7508-4439-a3be-413e09b0bfba.shogun-image-container {
      position: relative;
    }

    .s-b538dc2f-7508-4439-a3be-413e09b0bfba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b538dc2f-7508-4439-a3be-413e09b0bfba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b538dc2f-7508-4439-a3be-413e09b0bfba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-b538dc2f-7508-4439-a3be-413e09b0bfba img.shogun-image,
  #s-b538dc2f-7508-4439-a3be-413e09b0bfba .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b538dc2f-7508-4439-a3be-413e09b0bfba {
    width: 100%;
    height: auto;
  }

  #s-b538dc2f-7508-4439-a3be-413e09b0bfba img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b538dc2f-7508-4439-a3be-413e09b0bfba.shogun-image {
    
    
  }


.s-b538dc2f-7508-4439-a3be-413e09b0bfba .shogun-image-content {
  
    align-items: center;
  
}

.s-b538dc2f-7508-4439-a3be-413e09b0bfba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b538dc2f-7508-4439-a3be-413e09b0bfba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b538dc2f-7508-4439-a3be-413e09b0bfba.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b538dc2f-7508-4439-a3be-413e09b0bfba {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-b538dc2f-7508-4439-a3be-413e09b0bfba.shogun-image-container {
      position: relative;
    }

    .s-b538dc2f-7508-4439-a3be-413e09b0bfba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b538dc2f-7508-4439-a3be-413e09b0bfba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b538dc2f-7508-4439-a3be-413e09b0bfba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-a5a01537-7ed8-4e1c-a98b-dab2c0c68b58 {
  min-height: 50px;
}








#s-a5a01537-7ed8-4e1c-a98b-dab2c0c68b58 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a5a01537-7ed8-4e1c-a98b-dab2c0c68b58.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-45bf54f3-7b8b-4a64-aa23-dff9c4759f04 {
  margin-bottom: 20px;
}

#s-030ffbed-1051-4781-8741-6a08d7e0fabc {
  margin-bottom: 20px;
}

#s-d6cbe58f-3789-41fa-a99f-0c3c16dcef14 {
  margin-top: 50px;
min-height: 50px;
}








#s-d6cbe58f-3789-41fa-a99f-0c3c16dcef14 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d6cbe58f-3789-41fa-a99f-0c3c16dcef14.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-38935edd-a79e-4fca-a9d1-c0305d99d6a0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-38935edd-a79e-4fca-a9d1-c0305d99d6a0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-38935edd-a79e-4fca-a9d1-c0305d99d6a0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-38935edd-a79e-4fca-a9d1-c0305d99d6a0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-29dabf36-2204-41d9-94d3-469d12593519 {
  max-width: 1500px;
aspect-ratio: 1500/2100;
text-align: center;
}





  #s-29dabf36-2204-41d9-94d3-469d12593519 img.shogun-image,
  #s-29dabf36-2204-41d9-94d3-469d12593519 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-29dabf36-2204-41d9-94d3-469d12593519 {
    width: 100%;
    height: auto;
  }

  #s-29dabf36-2204-41d9-94d3-469d12593519 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-29dabf36-2204-41d9-94d3-469d12593519.shogun-image {
    
    
  }


.s-29dabf36-2204-41d9-94d3-469d12593519 .shogun-image-content {
  
    align-items: center;
  
}

.s-29dabf36-2204-41d9-94d3-469d12593519.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29dabf36-2204-41d9-94d3-469d12593519.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29dabf36-2204-41d9-94d3-469d12593519.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-29dabf36-2204-41d9-94d3-469d12593519 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-29dabf36-2204-41d9-94d3-469d12593519.shogun-image-container {
      position: relative;
    }

    .s-29dabf36-2204-41d9-94d3-469d12593519.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-29dabf36-2204-41d9-94d3-469d12593519.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-29dabf36-2204-41d9-94d3-469d12593519 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-29dabf36-2204-41d9-94d3-469d12593519 img.shogun-image,
  #s-29dabf36-2204-41d9-94d3-469d12593519 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-29dabf36-2204-41d9-94d3-469d12593519 {
    width: 100%;
    height: auto;
  }

  #s-29dabf36-2204-41d9-94d3-469d12593519 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-29dabf36-2204-41d9-94d3-469d12593519.shogun-image {
    
    
  }


.s-29dabf36-2204-41d9-94d3-469d12593519 .shogun-image-content {
  
    align-items: center;
  
}

.s-29dabf36-2204-41d9-94d3-469d12593519.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29dabf36-2204-41d9-94d3-469d12593519.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29dabf36-2204-41d9-94d3-469d12593519.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-29dabf36-2204-41d9-94d3-469d12593519 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-29dabf36-2204-41d9-94d3-469d12593519.shogun-image-container {
      position: relative;
    }

    .s-29dabf36-2204-41d9-94d3-469d12593519.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-29dabf36-2204-41d9-94d3-469d12593519.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-29dabf36-2204-41d9-94d3-469d12593519 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-29dabf36-2204-41d9-94d3-469d12593519 img.shogun-image,
  #s-29dabf36-2204-41d9-94d3-469d12593519 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-29dabf36-2204-41d9-94d3-469d12593519 {
    width: 100%;
    height: auto;
  }

  #s-29dabf36-2204-41d9-94d3-469d12593519 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-29dabf36-2204-41d9-94d3-469d12593519.shogun-image {
    
    
  }


.s-29dabf36-2204-41d9-94d3-469d12593519 .shogun-image-content {
  
    align-items: center;
  
}

.s-29dabf36-2204-41d9-94d3-469d12593519.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29dabf36-2204-41d9-94d3-469d12593519.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29dabf36-2204-41d9-94d3-469d12593519.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-29dabf36-2204-41d9-94d3-469d12593519 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-29dabf36-2204-41d9-94d3-469d12593519.shogun-image-container {
      position: relative;
    }

    .s-29dabf36-2204-41d9-94d3-469d12593519.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-29dabf36-2204-41d9-94d3-469d12593519.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-29dabf36-2204-41d9-94d3-469d12593519 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-29dabf36-2204-41d9-94d3-469d12593519 img.shogun-image,
  #s-29dabf36-2204-41d9-94d3-469d12593519 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-29dabf36-2204-41d9-94d3-469d12593519 {
    width: 100%;
    height: auto;
  }

  #s-29dabf36-2204-41d9-94d3-469d12593519 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-29dabf36-2204-41d9-94d3-469d12593519.shogun-image {
    
    
  }


.s-29dabf36-2204-41d9-94d3-469d12593519 .shogun-image-content {
  
    align-items: center;
  
}

.s-29dabf36-2204-41d9-94d3-469d12593519.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29dabf36-2204-41d9-94d3-469d12593519.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29dabf36-2204-41d9-94d3-469d12593519.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-29dabf36-2204-41d9-94d3-469d12593519 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-29dabf36-2204-41d9-94d3-469d12593519.shogun-image-container {
      position: relative;
    }

    .s-29dabf36-2204-41d9-94d3-469d12593519.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-29dabf36-2204-41d9-94d3-469d12593519.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-29dabf36-2204-41d9-94d3-469d12593519 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-29dabf36-2204-41d9-94d3-469d12593519 img.shogun-image,
  #s-29dabf36-2204-41d9-94d3-469d12593519 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-29dabf36-2204-41d9-94d3-469d12593519 {
    width: 100%;
    height: auto;
  }

  #s-29dabf36-2204-41d9-94d3-469d12593519 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-29dabf36-2204-41d9-94d3-469d12593519.shogun-image {
    
    
  }


.s-29dabf36-2204-41d9-94d3-469d12593519 .shogun-image-content {
  
    align-items: center;
  
}

.s-29dabf36-2204-41d9-94d3-469d12593519.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29dabf36-2204-41d9-94d3-469d12593519.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29dabf36-2204-41d9-94d3-469d12593519.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-29dabf36-2204-41d9-94d3-469d12593519 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-29dabf36-2204-41d9-94d3-469d12593519.shogun-image-container {
      position: relative;
    }

    .s-29dabf36-2204-41d9-94d3-469d12593519.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-29dabf36-2204-41d9-94d3-469d12593519.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-29dabf36-2204-41d9-94d3-469d12593519 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 {
  max-width: 1500px;
aspect-ratio: 1500/2100;
text-align: center;
}





  #s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 img.shogun-image,
  #s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 {
    width: 100%;
    height: auto;
  }

  #s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shogun-image {
    
    
  }


.s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 .shogun-image-content {
  
    align-items: center;
  
}

.s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shogun-image-container {
      position: relative;
    }

    .s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 img.shogun-image,
  #s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 {
    width: 100%;
    height: auto;
  }

  #s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shogun-image {
    
    
  }


.s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 .shogun-image-content {
  
    align-items: center;
  
}

.s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shogun-image-container {
      position: relative;
    }

    .s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 img.shogun-image,
  #s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 {
    width: 100%;
    height: auto;
  }

  #s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shogun-image {
    
    
  }


.s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 .shogun-image-content {
  
    align-items: center;
  
}

.s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shogun-image-container {
      position: relative;
    }

    .s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 img.shogun-image,
  #s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 {
    width: 100%;
    height: auto;
  }

  #s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shogun-image {
    
    
  }


.s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 .shogun-image-content {
  
    align-items: center;
  
}

.s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shogun-image-container {
      position: relative;
    }

    .s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 img.shogun-image,
  #s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 {
    width: 100%;
    height: auto;
  }

  #s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shogun-image {
    
    
  }


.s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 .shogun-image-content {
  
    align-items: center;
  
}

.s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shogun-image-container {
      position: relative;
    }

    .s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-34e379a0-b2cd-47f2-8fdf-b847a13b24a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-9f0834d4-8c56-422a-a533-e6d36c158c1d {
  min-height: 50px;
}








#s-9f0834d4-8c56-422a-a533-e6d36c158c1d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9f0834d4-8c56-422a-a533-e6d36c158c1d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-bd117159-24f2-4cdb-ac7b-f136b91c7ab2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bd117159-24f2-4cdb-ac7b-f136b91c7ab2"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-bd117159-24f2-4cdb-ac7b-f136b91c7ab2"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-bd117159-24f2-4cdb-ac7b-f136b91c7ab2"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-bd117159-24f2-4cdb-ac7b-f136b91c7ab2"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-bd117159-24f2-4cdb-ac7b-f136b91c7ab2"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-bd117159-24f2-4cdb-ac7b-f136b91c7ab2"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-bd117159-24f2-4cdb-ac7b-f136b91c7ab2"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-bd117159-24f2-4cdb-ac7b-f136b91c7ab2"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-bd117159-24f2-4cdb-ac7b-f136b91c7ab2"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-34b54f06-cd09-4b71-9d15-bfc14cc76027 {
  min-height: 50px;
}








#s-34b54f06-cd09-4b71-9d15-bfc14cc76027 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-34b54f06-cd09-4b71-9d15-bfc14cc76027.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-78812782-42aa-43a9-8169-48d5280f75fa {
  margin-bottom: 20px;
}

#s-27932463-183f-4c3e-8e83-9dd72cebc7a3 {
  min-height: 50px;
}








#s-27932463-183f-4c3e-8e83-9dd72cebc7a3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-27932463-183f-4c3e-8e83-9dd72cebc7a3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-e52af0e0-7ee8-4120-b6ba-9091bc93b761"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e52af0e0-7ee8-4120-b6ba-9091bc93b761"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.6666666666666666px);
}

}

@media (min-width: 992px) {
[id="s-e52af0e0-7ee8-4120-b6ba-9091bc93b761"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.6666666666666666px);
}

}

@media (min-width: 1200px) {
[id="s-e52af0e0-7ee8-4120-b6ba-9091bc93b761"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.6666666666666666px);
}

}

#s-d7a98792-2b76-4757-9f45-e101ee574cb1 {
  max-width: 1500px;
aspect-ratio: 1500/2099;
text-align: center;
}





  #s-d7a98792-2b76-4757-9f45-e101ee574cb1 img.shogun-image,
  #s-d7a98792-2b76-4757-9f45-e101ee574cb1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d7a98792-2b76-4757-9f45-e101ee574cb1 {
    width: 100%;
    height: auto;
  }

  #s-d7a98792-2b76-4757-9f45-e101ee574cb1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d7a98792-2b76-4757-9f45-e101ee574cb1.shogun-image {
    
    
  }


.s-d7a98792-2b76-4757-9f45-e101ee574cb1 .shogun-image-content {
  
    align-items: center;
  
}

.s-d7a98792-2b76-4757-9f45-e101ee574cb1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d7a98792-2b76-4757-9f45-e101ee574cb1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d7a98792-2b76-4757-9f45-e101ee574cb1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d7a98792-2b76-4757-9f45-e101ee574cb1 {
      --shg-aspect-ratio: calc(1500/2099); 
    }

    .s-d7a98792-2b76-4757-9f45-e101ee574cb1.shogun-image-container {
      position: relative;
    }

    .s-d7a98792-2b76-4757-9f45-e101ee574cb1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d7a98792-2b76-4757-9f45-e101ee574cb1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d7a98792-2b76-4757-9f45-e101ee574cb1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-d7a98792-2b76-4757-9f45-e101ee574cb1 img.shogun-image,
  #s-d7a98792-2b76-4757-9f45-e101ee574cb1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d7a98792-2b76-4757-9f45-e101ee574cb1 {
    width: 100%;
    height: auto;
  }

  #s-d7a98792-2b76-4757-9f45-e101ee574cb1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d7a98792-2b76-4757-9f45-e101ee574cb1.shogun-image {
    
    
  }


.s-d7a98792-2b76-4757-9f45-e101ee574cb1 .shogun-image-content {
  
    align-items: center;
  
}

.s-d7a98792-2b76-4757-9f45-e101ee574cb1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d7a98792-2b76-4757-9f45-e101ee574cb1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d7a98792-2b76-4757-9f45-e101ee574cb1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d7a98792-2b76-4757-9f45-e101ee574cb1 {
      --shg-aspect-ratio: calc(1500/2099); 
    }

    .s-d7a98792-2b76-4757-9f45-e101ee574cb1.shogun-image-container {
      position: relative;
    }

    .s-d7a98792-2b76-4757-9f45-e101ee574cb1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d7a98792-2b76-4757-9f45-e101ee574cb1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d7a98792-2b76-4757-9f45-e101ee574cb1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-d7a98792-2b76-4757-9f45-e101ee574cb1 img.shogun-image,
  #s-d7a98792-2b76-4757-9f45-e101ee574cb1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d7a98792-2b76-4757-9f45-e101ee574cb1 {
    width: 100%;
    height: auto;
  }

  #s-d7a98792-2b76-4757-9f45-e101ee574cb1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d7a98792-2b76-4757-9f45-e101ee574cb1.shogun-image {
    
    
  }


.s-d7a98792-2b76-4757-9f45-e101ee574cb1 .shogun-image-content {
  
    align-items: center;
  
}

.s-d7a98792-2b76-4757-9f45-e101ee574cb1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d7a98792-2b76-4757-9f45-e101ee574cb1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d7a98792-2b76-4757-9f45-e101ee574cb1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d7a98792-2b76-4757-9f45-e101ee574cb1 {
      --shg-aspect-ratio: calc(1500/2099); 
    }

    .s-d7a98792-2b76-4757-9f45-e101ee574cb1.shogun-image-container {
      position: relative;
    }

    .s-d7a98792-2b76-4757-9f45-e101ee574cb1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d7a98792-2b76-4757-9f45-e101ee574cb1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d7a98792-2b76-4757-9f45-e101ee574cb1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-d7a98792-2b76-4757-9f45-e101ee574cb1 img.shogun-image,
  #s-d7a98792-2b76-4757-9f45-e101ee574cb1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d7a98792-2b76-4757-9f45-e101ee574cb1 {
    width: 100%;
    height: auto;
  }

  #s-d7a98792-2b76-4757-9f45-e101ee574cb1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d7a98792-2b76-4757-9f45-e101ee574cb1.shogun-image {
    
    
  }


.s-d7a98792-2b76-4757-9f45-e101ee574cb1 .shogun-image-content {
  
    align-items: center;
  
}

.s-d7a98792-2b76-4757-9f45-e101ee574cb1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d7a98792-2b76-4757-9f45-e101ee574cb1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d7a98792-2b76-4757-9f45-e101ee574cb1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d7a98792-2b76-4757-9f45-e101ee574cb1 {
      --shg-aspect-ratio: calc(1500/2099); 
    }

    .s-d7a98792-2b76-4757-9f45-e101ee574cb1.shogun-image-container {
      position: relative;
    }

    .s-d7a98792-2b76-4757-9f45-e101ee574cb1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d7a98792-2b76-4757-9f45-e101ee574cb1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d7a98792-2b76-4757-9f45-e101ee574cb1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-d7a98792-2b76-4757-9f45-e101ee574cb1 img.shogun-image,
  #s-d7a98792-2b76-4757-9f45-e101ee574cb1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d7a98792-2b76-4757-9f45-e101ee574cb1 {
    width: 100%;
    height: auto;
  }

  #s-d7a98792-2b76-4757-9f45-e101ee574cb1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d7a98792-2b76-4757-9f45-e101ee574cb1.shogun-image {
    
    
  }


.s-d7a98792-2b76-4757-9f45-e101ee574cb1 .shogun-image-content {
  
    align-items: center;
  
}

.s-d7a98792-2b76-4757-9f45-e101ee574cb1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d7a98792-2b76-4757-9f45-e101ee574cb1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d7a98792-2b76-4757-9f45-e101ee574cb1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d7a98792-2b76-4757-9f45-e101ee574cb1 {
      --shg-aspect-ratio: calc(1500/2099); 
    }

    .s-d7a98792-2b76-4757-9f45-e101ee574cb1.shogun-image-container {
      position: relative;
    }

    .s-d7a98792-2b76-4757-9f45-e101ee574cb1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d7a98792-2b76-4757-9f45-e101ee574cb1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d7a98792-2b76-4757-9f45-e101ee574cb1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 {
  max-width: 1500px;
aspect-ratio: 1500/2100;
text-align: center;
}





  #s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 img.shogun-image,
  #s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 {
    width: 100%;
    height: auto;
  }

  #s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shogun-image {
    
    
  }


.s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 .shogun-image-content {
  
    align-items: center;
  
}

.s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shogun-image-container {
      position: relative;
    }

    .s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 img.shogun-image,
  #s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 {
    width: 100%;
    height: auto;
  }

  #s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shogun-image {
    
    
  }


.s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 .shogun-image-content {
  
    align-items: center;
  
}

.s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shogun-image-container {
      position: relative;
    }

    .s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 img.shogun-image,
  #s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 {
    width: 100%;
    height: auto;
  }

  #s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shogun-image {
    
    
  }


.s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 .shogun-image-content {
  
    align-items: center;
  
}

.s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shogun-image-container {
      position: relative;
    }

    .s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 img.shogun-image,
  #s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 {
    width: 100%;
    height: auto;
  }

  #s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shogun-image {
    
    
  }


.s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 .shogun-image-content {
  
    align-items: center;
  
}

.s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shogun-image-container {
      position: relative;
    }

    .s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 img.shogun-image,
  #s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 {
    width: 100%;
    height: auto;
  }

  #s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shogun-image {
    
    
  }


.s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 .shogun-image-content {
  
    align-items: center;
  
}

.s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shogun-image-container {
      position: relative;
    }

    .s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60e4f1b5-f3d6-4421-b3e9-a7b6055e1183 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-a401ee40-1e3d-4eb9-926b-0579913c52c2 {
  max-width: 1500px;
aspect-ratio: 1500/2101;
text-align: center;
}





  #s-a401ee40-1e3d-4eb9-926b-0579913c52c2 img.shogun-image,
  #s-a401ee40-1e3d-4eb9-926b-0579913c52c2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a401ee40-1e3d-4eb9-926b-0579913c52c2 {
    width: 100%;
    height: auto;
  }

  #s-a401ee40-1e3d-4eb9-926b-0579913c52c2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shogun-image {
    
    
  }


.s-a401ee40-1e3d-4eb9-926b-0579913c52c2 .shogun-image-content {
  
    align-items: center;
  
}

.s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a401ee40-1e3d-4eb9-926b-0579913c52c2 {
      --shg-aspect-ratio: calc(1500/2101); 
    }

    .s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shogun-image-container {
      position: relative;
    }

    .s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a401ee40-1e3d-4eb9-926b-0579913c52c2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-a401ee40-1e3d-4eb9-926b-0579913c52c2 img.shogun-image,
  #s-a401ee40-1e3d-4eb9-926b-0579913c52c2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a401ee40-1e3d-4eb9-926b-0579913c52c2 {
    width: 100%;
    height: auto;
  }

  #s-a401ee40-1e3d-4eb9-926b-0579913c52c2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shogun-image {
    
    
  }


.s-a401ee40-1e3d-4eb9-926b-0579913c52c2 .shogun-image-content {
  
    align-items: center;
  
}

.s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a401ee40-1e3d-4eb9-926b-0579913c52c2 {
      --shg-aspect-ratio: calc(1500/2101); 
    }

    .s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shogun-image-container {
      position: relative;
    }

    .s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a401ee40-1e3d-4eb9-926b-0579913c52c2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-a401ee40-1e3d-4eb9-926b-0579913c52c2 img.shogun-image,
  #s-a401ee40-1e3d-4eb9-926b-0579913c52c2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a401ee40-1e3d-4eb9-926b-0579913c52c2 {
    width: 100%;
    height: auto;
  }

  #s-a401ee40-1e3d-4eb9-926b-0579913c52c2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shogun-image {
    
    
  }


.s-a401ee40-1e3d-4eb9-926b-0579913c52c2 .shogun-image-content {
  
    align-items: center;
  
}

.s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a401ee40-1e3d-4eb9-926b-0579913c52c2 {
      --shg-aspect-ratio: calc(1500/2101); 
    }

    .s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shogun-image-container {
      position: relative;
    }

    .s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a401ee40-1e3d-4eb9-926b-0579913c52c2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-a401ee40-1e3d-4eb9-926b-0579913c52c2 img.shogun-image,
  #s-a401ee40-1e3d-4eb9-926b-0579913c52c2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a401ee40-1e3d-4eb9-926b-0579913c52c2 {
    width: 100%;
    height: auto;
  }

  #s-a401ee40-1e3d-4eb9-926b-0579913c52c2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shogun-image {
    
    
  }


.s-a401ee40-1e3d-4eb9-926b-0579913c52c2 .shogun-image-content {
  
    align-items: center;
  
}

.s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a401ee40-1e3d-4eb9-926b-0579913c52c2 {
      --shg-aspect-ratio: calc(1500/2101); 
    }

    .s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shogun-image-container {
      position: relative;
    }

    .s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a401ee40-1e3d-4eb9-926b-0579913c52c2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-a401ee40-1e3d-4eb9-926b-0579913c52c2 img.shogun-image,
  #s-a401ee40-1e3d-4eb9-926b-0579913c52c2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a401ee40-1e3d-4eb9-926b-0579913c52c2 {
    width: 100%;
    height: auto;
  }

  #s-a401ee40-1e3d-4eb9-926b-0579913c52c2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shogun-image {
    
    
  }


.s-a401ee40-1e3d-4eb9-926b-0579913c52c2 .shogun-image-content {
  
    align-items: center;
  
}

.s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a401ee40-1e3d-4eb9-926b-0579913c52c2 {
      --shg-aspect-ratio: calc(1500/2101); 
    }

    .s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shogun-image-container {
      position: relative;
    }

    .s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a401ee40-1e3d-4eb9-926b-0579913c52c2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a401ee40-1e3d-4eb9-926b-0579913c52c2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-8493a937-b869-450e-a747-a85f6199c782 {
  min-height: 50px;
}








#s-8493a937-b869-450e-a747-a85f6199c782 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8493a937-b869-450e-a747-a85f6199c782.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-64bc8215-80a0-4852-8631-1e46f8c8f75a {
  padding-left: 5%;
padding-right: 5%;
}

@media (min-width: 0px) {
[id="s-64bc8215-80a0-4852-8631-1e46f8c8f75a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-64bc8215-80a0-4852-8631-1e46f8c8f75a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-64bc8215-80a0-4852-8631-1e46f8c8f75a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-64bc8215-80a0-4852-8631-1e46f8c8f75a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-294d5641-1776-49d3-bc59-b25a440d8c60 {
  margin-bottom: 20px;
}

#s-5770af14-65ef-4ed8-ae74-d0568298e8aa {
  margin-bottom: 20px;
}

#s-d5119165-1a5c-49e8-b5cc-c03ad6faa819 {
  margin-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-f3ec53e5-4d82-4bd7-ac86-e9b291eeedb6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f3ec53e5-4d82-4bd7-ac86-e9b291eeedb6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-f3ec53e5-4d82-4bd7-ac86-e9b291eeedb6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-f3ec53e5-4d82-4bd7-ac86-e9b291eeedb6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 {
  max-width: 1500px;
aspect-ratio: 1500/2100;
text-align: center;
}





  #s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 img.shogun-image,
  #s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 {
    width: 100%;
    height: auto;
  }

  #s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shogun-image {
    
    
  }


.s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 .shogun-image-content {
  
    align-items: center;
  
}

.s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shogun-image-container {
      position: relative;
    }

    .s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 img.shogun-image,
  #s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 {
    width: 100%;
    height: auto;
  }

  #s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shogun-image {
    
    
  }


.s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 .shogun-image-content {
  
    align-items: center;
  
}

.s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shogun-image-container {
      position: relative;
    }

    .s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 img.shogun-image,
  #s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 {
    width: 100%;
    height: auto;
  }

  #s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shogun-image {
    
    
  }


.s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 .shogun-image-content {
  
    align-items: center;
  
}

.s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shogun-image-container {
      position: relative;
    }

    .s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 img.shogun-image,
  #s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 {
    width: 100%;
    height: auto;
  }

  #s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shogun-image {
    
    
  }


.s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 .shogun-image-content {
  
    align-items: center;
  
}

.s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shogun-image-container {
      position: relative;
    }

    .s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 img.shogun-image,
  #s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 {
    width: 100%;
    height: auto;
  }

  #s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shogun-image {
    
    
  }


.s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 .shogun-image-content {
  
    align-items: center;
  
}

.s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shogun-image-container {
      position: relative;
    }

    .s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f9b40fa9-f6fa-42af-aaf2-a298ea7eedc6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 {
  max-width: 1500px;
aspect-ratio: 1500/2100;
text-align: center;
}





  #s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 img.shogun-image,
  #s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 {
    width: 100%;
    height: auto;
  }

  #s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shogun-image {
    
    
  }


.s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 .shogun-image-content {
  
    align-items: center;
  
}

.s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shogun-image-container {
      position: relative;
    }

    .s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 img.shogun-image,
  #s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 {
    width: 100%;
    height: auto;
  }

  #s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shogun-image {
    
    
  }


.s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 .shogun-image-content {
  
    align-items: center;
  
}

.s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shogun-image-container {
      position: relative;
    }

    .s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 img.shogun-image,
  #s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 {
    width: 100%;
    height: auto;
  }

  #s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shogun-image {
    
    
  }


.s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 .shogun-image-content {
  
    align-items: center;
  
}

.s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shogun-image-container {
      position: relative;
    }

    .s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 img.shogun-image,
  #s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 {
    width: 100%;
    height: auto;
  }

  #s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shogun-image {
    
    
  }


.s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 .shogun-image-content {
  
    align-items: center;
  
}

.s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shogun-image-container {
      position: relative;
    }

    .s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 img.shogun-image,
  #s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 {
    width: 100%;
    height: auto;
  }

  #s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shogun-image {
    
    
  }


.s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 .shogun-image-content {
  
    align-items: center;
  
}

.s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shogun-image-container {
      position: relative;
    }

    .s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3d7a9d03-f15e-43eb-a5a6-7e6aa5b038d8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-3a9535c6-ab56-45a1-937e-5231bcd4742f {
  margin-top: 20px;
margin-bottom: 20px;
min-height: 50px;
}








#s-3a9535c6-ab56-45a1-937e-5231bcd4742f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3a9535c6-ab56-45a1-937e-5231bcd4742f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c994e42a-99ac-445c-b44d-93d169c99194 {
  max-width: 1500px;
aspect-ratio: 1500/2100;
text-align: center;
}





  #s-c994e42a-99ac-445c-b44d-93d169c99194 img.shogun-image,
  #s-c994e42a-99ac-445c-b44d-93d169c99194 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c994e42a-99ac-445c-b44d-93d169c99194 {
    width: 100%;
    height: auto;
  }

  #s-c994e42a-99ac-445c-b44d-93d169c99194 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c994e42a-99ac-445c-b44d-93d169c99194.shogun-image {
    
    
  }


.s-c994e42a-99ac-445c-b44d-93d169c99194 .shogun-image-content {
  
    align-items: center;
  
}

.s-c994e42a-99ac-445c-b44d-93d169c99194.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c994e42a-99ac-445c-b44d-93d169c99194.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c994e42a-99ac-445c-b44d-93d169c99194.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c994e42a-99ac-445c-b44d-93d169c99194 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-c994e42a-99ac-445c-b44d-93d169c99194.shogun-image-container {
      position: relative;
    }

    .s-c994e42a-99ac-445c-b44d-93d169c99194.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c994e42a-99ac-445c-b44d-93d169c99194.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c994e42a-99ac-445c-b44d-93d169c99194 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-c994e42a-99ac-445c-b44d-93d169c99194 img.shogun-image,
  #s-c994e42a-99ac-445c-b44d-93d169c99194 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c994e42a-99ac-445c-b44d-93d169c99194 {
    width: 100%;
    height: auto;
  }

  #s-c994e42a-99ac-445c-b44d-93d169c99194 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c994e42a-99ac-445c-b44d-93d169c99194.shogun-image {
    
    
  }


.s-c994e42a-99ac-445c-b44d-93d169c99194 .shogun-image-content {
  
    align-items: center;
  
}

.s-c994e42a-99ac-445c-b44d-93d169c99194.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c994e42a-99ac-445c-b44d-93d169c99194.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c994e42a-99ac-445c-b44d-93d169c99194.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c994e42a-99ac-445c-b44d-93d169c99194 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-c994e42a-99ac-445c-b44d-93d169c99194.shogun-image-container {
      position: relative;
    }

    .s-c994e42a-99ac-445c-b44d-93d169c99194.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c994e42a-99ac-445c-b44d-93d169c99194.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c994e42a-99ac-445c-b44d-93d169c99194 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-c994e42a-99ac-445c-b44d-93d169c99194 img.shogun-image,
  #s-c994e42a-99ac-445c-b44d-93d169c99194 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c994e42a-99ac-445c-b44d-93d169c99194 {
    width: 100%;
    height: auto;
  }

  #s-c994e42a-99ac-445c-b44d-93d169c99194 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c994e42a-99ac-445c-b44d-93d169c99194.shogun-image {
    
    
  }


.s-c994e42a-99ac-445c-b44d-93d169c99194 .shogun-image-content {
  
    align-items: center;
  
}

.s-c994e42a-99ac-445c-b44d-93d169c99194.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c994e42a-99ac-445c-b44d-93d169c99194.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c994e42a-99ac-445c-b44d-93d169c99194.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c994e42a-99ac-445c-b44d-93d169c99194 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-c994e42a-99ac-445c-b44d-93d169c99194.shogun-image-container {
      position: relative;
    }

    .s-c994e42a-99ac-445c-b44d-93d169c99194.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c994e42a-99ac-445c-b44d-93d169c99194.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c994e42a-99ac-445c-b44d-93d169c99194 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-c994e42a-99ac-445c-b44d-93d169c99194 img.shogun-image,
  #s-c994e42a-99ac-445c-b44d-93d169c99194 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c994e42a-99ac-445c-b44d-93d169c99194 {
    width: 100%;
    height: auto;
  }

  #s-c994e42a-99ac-445c-b44d-93d169c99194 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c994e42a-99ac-445c-b44d-93d169c99194.shogun-image {
    
    
  }


.s-c994e42a-99ac-445c-b44d-93d169c99194 .shogun-image-content {
  
    align-items: center;
  
}

.s-c994e42a-99ac-445c-b44d-93d169c99194.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c994e42a-99ac-445c-b44d-93d169c99194.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c994e42a-99ac-445c-b44d-93d169c99194.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c994e42a-99ac-445c-b44d-93d169c99194 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-c994e42a-99ac-445c-b44d-93d169c99194.shogun-image-container {
      position: relative;
    }

    .s-c994e42a-99ac-445c-b44d-93d169c99194.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c994e42a-99ac-445c-b44d-93d169c99194.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c994e42a-99ac-445c-b44d-93d169c99194 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-c994e42a-99ac-445c-b44d-93d169c99194 img.shogun-image,
  #s-c994e42a-99ac-445c-b44d-93d169c99194 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c994e42a-99ac-445c-b44d-93d169c99194 {
    width: 100%;
    height: auto;
  }

  #s-c994e42a-99ac-445c-b44d-93d169c99194 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c994e42a-99ac-445c-b44d-93d169c99194.shogun-image {
    
    
  }


.s-c994e42a-99ac-445c-b44d-93d169c99194 .shogun-image-content {
  
    align-items: center;
  
}

.s-c994e42a-99ac-445c-b44d-93d169c99194.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c994e42a-99ac-445c-b44d-93d169c99194.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c994e42a-99ac-445c-b44d-93d169c99194.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c994e42a-99ac-445c-b44d-93d169c99194 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-c994e42a-99ac-445c-b44d-93d169c99194.shogun-image-container {
      position: relative;
    }

    .s-c994e42a-99ac-445c-b44d-93d169c99194.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c994e42a-99ac-445c-b44d-93d169c99194.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c994e42a-99ac-445c-b44d-93d169c99194 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-1fbb032b-13aa-48da-baff-4d152dc34fdb {
  min-height: 50px;
}








#s-1fbb032b-13aa-48da-baff-4d152dc34fdb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1fbb032b-13aa-48da-baff-4d152dc34fdb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a2f688c1-aa9c-4671-ae57-0ae35e824b0f {
  min-height: 50px;
}
@media (min-width: 1200px){#s-a2f688c1-aa9c-4671-ae57-0ae35e824b0f {
  display: none;
}
#s-a2f688c1-aa9c-4671-ae57-0ae35e824b0f, #wrap-s-a2f688c1-aa9c-4671-ae57-0ae35e824b0f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a2f688c1-aa9c-4671-ae57-0ae35e824b0f {
  display: none;
}
#s-a2f688c1-aa9c-4671-ae57-0ae35e824b0f, #wrap-s-a2f688c1-aa9c-4671-ae57-0ae35e824b0f { display: none !important; }}







#s-a2f688c1-aa9c-4671-ae57-0ae35e824b0f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a2f688c1-aa9c-4671-ae57-0ae35e824b0f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-869d04f0-bc4c-4e8a-81cb-81d3abf59a42"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-869d04f0-bc4c-4e8a-81cb-81d3abf59a42"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-869d04f0-bc4c-4e8a-81cb-81d3abf59a42"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-869d04f0-bc4c-4e8a-81cb-81d3abf59a42"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-adbe88cc-1391-4c69-a824-e8786e0042a8 {
  max-width: 1500px;
aspect-ratio: 1500/2100;
text-align: center;
}





  #s-adbe88cc-1391-4c69-a824-e8786e0042a8 img.shogun-image,
  #s-adbe88cc-1391-4c69-a824-e8786e0042a8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-adbe88cc-1391-4c69-a824-e8786e0042a8 {
    width: 100%;
    height: auto;
  }

  #s-adbe88cc-1391-4c69-a824-e8786e0042a8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-adbe88cc-1391-4c69-a824-e8786e0042a8.shogun-image {
    
    
  }


.s-adbe88cc-1391-4c69-a824-e8786e0042a8 .shogun-image-content {
  
    align-items: center;
  
}

.s-adbe88cc-1391-4c69-a824-e8786e0042a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-adbe88cc-1391-4c69-a824-e8786e0042a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-adbe88cc-1391-4c69-a824-e8786e0042a8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-adbe88cc-1391-4c69-a824-e8786e0042a8 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-adbe88cc-1391-4c69-a824-e8786e0042a8.shogun-image-container {
      position: relative;
    }

    .s-adbe88cc-1391-4c69-a824-e8786e0042a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-adbe88cc-1391-4c69-a824-e8786e0042a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-adbe88cc-1391-4c69-a824-e8786e0042a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-adbe88cc-1391-4c69-a824-e8786e0042a8 img.shogun-image,
  #s-adbe88cc-1391-4c69-a824-e8786e0042a8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-adbe88cc-1391-4c69-a824-e8786e0042a8 {
    width: 100%;
    height: auto;
  }

  #s-adbe88cc-1391-4c69-a824-e8786e0042a8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-adbe88cc-1391-4c69-a824-e8786e0042a8.shogun-image {
    
    
  }


.s-adbe88cc-1391-4c69-a824-e8786e0042a8 .shogun-image-content {
  
    align-items: center;
  
}

.s-adbe88cc-1391-4c69-a824-e8786e0042a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-adbe88cc-1391-4c69-a824-e8786e0042a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-adbe88cc-1391-4c69-a824-e8786e0042a8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-adbe88cc-1391-4c69-a824-e8786e0042a8 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-adbe88cc-1391-4c69-a824-e8786e0042a8.shogun-image-container {
      position: relative;
    }

    .s-adbe88cc-1391-4c69-a824-e8786e0042a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-adbe88cc-1391-4c69-a824-e8786e0042a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-adbe88cc-1391-4c69-a824-e8786e0042a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-adbe88cc-1391-4c69-a824-e8786e0042a8 img.shogun-image,
  #s-adbe88cc-1391-4c69-a824-e8786e0042a8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-adbe88cc-1391-4c69-a824-e8786e0042a8 {
    width: 100%;
    height: auto;
  }

  #s-adbe88cc-1391-4c69-a824-e8786e0042a8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-adbe88cc-1391-4c69-a824-e8786e0042a8.shogun-image {
    
    
  }


.s-adbe88cc-1391-4c69-a824-e8786e0042a8 .shogun-image-content {
  
    align-items: center;
  
}

.s-adbe88cc-1391-4c69-a824-e8786e0042a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-adbe88cc-1391-4c69-a824-e8786e0042a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-adbe88cc-1391-4c69-a824-e8786e0042a8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-adbe88cc-1391-4c69-a824-e8786e0042a8 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-adbe88cc-1391-4c69-a824-e8786e0042a8.shogun-image-container {
      position: relative;
    }

    .s-adbe88cc-1391-4c69-a824-e8786e0042a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-adbe88cc-1391-4c69-a824-e8786e0042a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-adbe88cc-1391-4c69-a824-e8786e0042a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-adbe88cc-1391-4c69-a824-e8786e0042a8 img.shogun-image,
  #s-adbe88cc-1391-4c69-a824-e8786e0042a8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-adbe88cc-1391-4c69-a824-e8786e0042a8 {
    width: 100%;
    height: auto;
  }

  #s-adbe88cc-1391-4c69-a824-e8786e0042a8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-adbe88cc-1391-4c69-a824-e8786e0042a8.shogun-image {
    
    
  }


.s-adbe88cc-1391-4c69-a824-e8786e0042a8 .shogun-image-content {
  
    align-items: center;
  
}

.s-adbe88cc-1391-4c69-a824-e8786e0042a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-adbe88cc-1391-4c69-a824-e8786e0042a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-adbe88cc-1391-4c69-a824-e8786e0042a8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-adbe88cc-1391-4c69-a824-e8786e0042a8 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-adbe88cc-1391-4c69-a824-e8786e0042a8.shogun-image-container {
      position: relative;
    }

    .s-adbe88cc-1391-4c69-a824-e8786e0042a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-adbe88cc-1391-4c69-a824-e8786e0042a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-adbe88cc-1391-4c69-a824-e8786e0042a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-adbe88cc-1391-4c69-a824-e8786e0042a8 img.shogun-image,
  #s-adbe88cc-1391-4c69-a824-e8786e0042a8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-adbe88cc-1391-4c69-a824-e8786e0042a8 {
    width: 100%;
    height: auto;
  }

  #s-adbe88cc-1391-4c69-a824-e8786e0042a8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-adbe88cc-1391-4c69-a824-e8786e0042a8.shogun-image {
    
    
  }


.s-adbe88cc-1391-4c69-a824-e8786e0042a8 .shogun-image-content {
  
    align-items: center;
  
}

.s-adbe88cc-1391-4c69-a824-e8786e0042a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-adbe88cc-1391-4c69-a824-e8786e0042a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-adbe88cc-1391-4c69-a824-e8786e0042a8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-adbe88cc-1391-4c69-a824-e8786e0042a8 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-adbe88cc-1391-4c69-a824-e8786e0042a8.shogun-image-container {
      position: relative;
    }

    .s-adbe88cc-1391-4c69-a824-e8786e0042a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-adbe88cc-1391-4c69-a824-e8786e0042a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-adbe88cc-1391-4c69-a824-e8786e0042a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-5d02b598-fea4-4417-b9b6-efedba9d03fb {
  max-width: 1500px;
aspect-ratio: 1500/2100;
text-align: center;
}





  #s-5d02b598-fea4-4417-b9b6-efedba9d03fb img.shogun-image,
  #s-5d02b598-fea4-4417-b9b6-efedba9d03fb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5d02b598-fea4-4417-b9b6-efedba9d03fb {
    width: 100%;
    height: auto;
  }

  #s-5d02b598-fea4-4417-b9b6-efedba9d03fb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shogun-image {
    
    
  }


.s-5d02b598-fea4-4417-b9b6-efedba9d03fb .shogun-image-content {
  
    align-items: center;
  
}

.s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5d02b598-fea4-4417-b9b6-efedba9d03fb {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shogun-image-container {
      position: relative;
    }

    .s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5d02b598-fea4-4417-b9b6-efedba9d03fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-5d02b598-fea4-4417-b9b6-efedba9d03fb img.shogun-image,
  #s-5d02b598-fea4-4417-b9b6-efedba9d03fb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5d02b598-fea4-4417-b9b6-efedba9d03fb {
    width: 100%;
    height: auto;
  }

  #s-5d02b598-fea4-4417-b9b6-efedba9d03fb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shogun-image {
    
    
  }


.s-5d02b598-fea4-4417-b9b6-efedba9d03fb .shogun-image-content {
  
    align-items: center;
  
}

.s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5d02b598-fea4-4417-b9b6-efedba9d03fb {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shogun-image-container {
      position: relative;
    }

    .s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5d02b598-fea4-4417-b9b6-efedba9d03fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-5d02b598-fea4-4417-b9b6-efedba9d03fb img.shogun-image,
  #s-5d02b598-fea4-4417-b9b6-efedba9d03fb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5d02b598-fea4-4417-b9b6-efedba9d03fb {
    width: 100%;
    height: auto;
  }

  #s-5d02b598-fea4-4417-b9b6-efedba9d03fb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shogun-image {
    
    
  }


.s-5d02b598-fea4-4417-b9b6-efedba9d03fb .shogun-image-content {
  
    align-items: center;
  
}

.s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5d02b598-fea4-4417-b9b6-efedba9d03fb {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shogun-image-container {
      position: relative;
    }

    .s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5d02b598-fea4-4417-b9b6-efedba9d03fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-5d02b598-fea4-4417-b9b6-efedba9d03fb img.shogun-image,
  #s-5d02b598-fea4-4417-b9b6-efedba9d03fb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5d02b598-fea4-4417-b9b6-efedba9d03fb {
    width: 100%;
    height: auto;
  }

  #s-5d02b598-fea4-4417-b9b6-efedba9d03fb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shogun-image {
    
    
  }


.s-5d02b598-fea4-4417-b9b6-efedba9d03fb .shogun-image-content {
  
    align-items: center;
  
}

.s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5d02b598-fea4-4417-b9b6-efedba9d03fb {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shogun-image-container {
      position: relative;
    }

    .s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5d02b598-fea4-4417-b9b6-efedba9d03fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-5d02b598-fea4-4417-b9b6-efedba9d03fb img.shogun-image,
  #s-5d02b598-fea4-4417-b9b6-efedba9d03fb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5d02b598-fea4-4417-b9b6-efedba9d03fb {
    width: 100%;
    height: auto;
  }

  #s-5d02b598-fea4-4417-b9b6-efedba9d03fb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shogun-image {
    
    
  }


.s-5d02b598-fea4-4417-b9b6-efedba9d03fb .shogun-image-content {
  
    align-items: center;
  
}

.s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5d02b598-fea4-4417-b9b6-efedba9d03fb {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shogun-image-container {
      position: relative;
    }

    .s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5d02b598-fea4-4417-b9b6-efedba9d03fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5d02b598-fea4-4417-b9b6-efedba9d03fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-8c13aa9d-d24e-4956-a004-a2a509c1a2db {
  min-height: 50px;
}








#s-8c13aa9d-d24e-4956-a004-a2a509c1a2db > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8c13aa9d-d24e-4956-a004-a2a509c1a2db.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cc0ac928-a2d2-4465-87b7-0be9d544fd79 {
  padding-left: 5%;
padding-right: 5%;
}

#s-dc99e323-e750-4059-bd8b-85cd5dd1176e {
  padding-left: 5%;
padding-right: 5%;
}

#s-261f2a1b-f05a-4457-9d8c-ffefba6c4e1f {
  min-height: 50px;
}








#s-261f2a1b-f05a-4457-9d8c-ffefba6c4e1f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-261f2a1b-f05a-4457-9d8c-ffefba6c4e1f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-79df79df-cd57-4bd2-ad59-8774fa00df17 {
  max-width: 1500px;
aspect-ratio: 1500/2100;
text-align: center;
}





  #s-79df79df-cd57-4bd2-ad59-8774fa00df17 img.shogun-image,
  #s-79df79df-cd57-4bd2-ad59-8774fa00df17 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-79df79df-cd57-4bd2-ad59-8774fa00df17 {
    width: 100%;
    height: auto;
  }

  #s-79df79df-cd57-4bd2-ad59-8774fa00df17 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-79df79df-cd57-4bd2-ad59-8774fa00df17.shogun-image {
    
    
  }


.s-79df79df-cd57-4bd2-ad59-8774fa00df17 .shogun-image-content {
  
    align-items: center;
  
}

.s-79df79df-cd57-4bd2-ad59-8774fa00df17.shg-align-container {
  display: flex;
  justify-content: center
}

.s-79df79df-cd57-4bd2-ad59-8774fa00df17.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79df79df-cd57-4bd2-ad59-8774fa00df17.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-79df79df-cd57-4bd2-ad59-8774fa00df17 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-79df79df-cd57-4bd2-ad59-8774fa00df17.shogun-image-container {
      position: relative;
    }

    .s-79df79df-cd57-4bd2-ad59-8774fa00df17.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-79df79df-cd57-4bd2-ad59-8774fa00df17.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-79df79df-cd57-4bd2-ad59-8774fa00df17 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-79df79df-cd57-4bd2-ad59-8774fa00df17 img.shogun-image,
  #s-79df79df-cd57-4bd2-ad59-8774fa00df17 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-79df79df-cd57-4bd2-ad59-8774fa00df17 {
    width: 100%;
    height: auto;
  }

  #s-79df79df-cd57-4bd2-ad59-8774fa00df17 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-79df79df-cd57-4bd2-ad59-8774fa00df17.shogun-image {
    
    
  }


.s-79df79df-cd57-4bd2-ad59-8774fa00df17 .shogun-image-content {
  
    align-items: center;
  
}

.s-79df79df-cd57-4bd2-ad59-8774fa00df17.shg-align-container {
  display: flex;
  justify-content: center
}

.s-79df79df-cd57-4bd2-ad59-8774fa00df17.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79df79df-cd57-4bd2-ad59-8774fa00df17.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-79df79df-cd57-4bd2-ad59-8774fa00df17 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-79df79df-cd57-4bd2-ad59-8774fa00df17.shogun-image-container {
      position: relative;
    }

    .s-79df79df-cd57-4bd2-ad59-8774fa00df17.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-79df79df-cd57-4bd2-ad59-8774fa00df17.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-79df79df-cd57-4bd2-ad59-8774fa00df17 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-79df79df-cd57-4bd2-ad59-8774fa00df17 img.shogun-image,
  #s-79df79df-cd57-4bd2-ad59-8774fa00df17 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-79df79df-cd57-4bd2-ad59-8774fa00df17 {
    width: 100%;
    height: auto;
  }

  #s-79df79df-cd57-4bd2-ad59-8774fa00df17 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-79df79df-cd57-4bd2-ad59-8774fa00df17.shogun-image {
    
    
  }


.s-79df79df-cd57-4bd2-ad59-8774fa00df17 .shogun-image-content {
  
    align-items: center;
  
}

.s-79df79df-cd57-4bd2-ad59-8774fa00df17.shg-align-container {
  display: flex;
  justify-content: center
}

.s-79df79df-cd57-4bd2-ad59-8774fa00df17.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79df79df-cd57-4bd2-ad59-8774fa00df17.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-79df79df-cd57-4bd2-ad59-8774fa00df17 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-79df79df-cd57-4bd2-ad59-8774fa00df17.shogun-image-container {
      position: relative;
    }

    .s-79df79df-cd57-4bd2-ad59-8774fa00df17.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-79df79df-cd57-4bd2-ad59-8774fa00df17.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-79df79df-cd57-4bd2-ad59-8774fa00df17 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-79df79df-cd57-4bd2-ad59-8774fa00df17 img.shogun-image,
  #s-79df79df-cd57-4bd2-ad59-8774fa00df17 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-79df79df-cd57-4bd2-ad59-8774fa00df17 {
    width: 100%;
    height: auto;
  }

  #s-79df79df-cd57-4bd2-ad59-8774fa00df17 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-79df79df-cd57-4bd2-ad59-8774fa00df17.shogun-image {
    
    
  }


.s-79df79df-cd57-4bd2-ad59-8774fa00df17 .shogun-image-content {
  
    align-items: center;
  
}

.s-79df79df-cd57-4bd2-ad59-8774fa00df17.shg-align-container {
  display: flex;
  justify-content: center
}

.s-79df79df-cd57-4bd2-ad59-8774fa00df17.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79df79df-cd57-4bd2-ad59-8774fa00df17.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-79df79df-cd57-4bd2-ad59-8774fa00df17 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-79df79df-cd57-4bd2-ad59-8774fa00df17.shogun-image-container {
      position: relative;
    }

    .s-79df79df-cd57-4bd2-ad59-8774fa00df17.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-79df79df-cd57-4bd2-ad59-8774fa00df17.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-79df79df-cd57-4bd2-ad59-8774fa00df17 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-79df79df-cd57-4bd2-ad59-8774fa00df17 img.shogun-image,
  #s-79df79df-cd57-4bd2-ad59-8774fa00df17 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-79df79df-cd57-4bd2-ad59-8774fa00df17 {
    width: 100%;
    height: auto;
  }

  #s-79df79df-cd57-4bd2-ad59-8774fa00df17 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-79df79df-cd57-4bd2-ad59-8774fa00df17.shogun-image {
    
    
  }


.s-79df79df-cd57-4bd2-ad59-8774fa00df17 .shogun-image-content {
  
    align-items: center;
  
}

.s-79df79df-cd57-4bd2-ad59-8774fa00df17.shg-align-container {
  display: flex;
  justify-content: center
}

.s-79df79df-cd57-4bd2-ad59-8774fa00df17.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79df79df-cd57-4bd2-ad59-8774fa00df17.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-79df79df-cd57-4bd2-ad59-8774fa00df17 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-79df79df-cd57-4bd2-ad59-8774fa00df17.shogun-image-container {
      position: relative;
    }

    .s-79df79df-cd57-4bd2-ad59-8774fa00df17.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-79df79df-cd57-4bd2-ad59-8774fa00df17.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-79df79df-cd57-4bd2-ad59-8774fa00df17 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-0fc66685-d14b-4b55-9df2-797b4912e18f {
  min-height: 50px;
}








#s-0fc66685-d14b-4b55-9df2-797b4912e18f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0fc66685-d14b-4b55-9df2-797b4912e18f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-356b0b82-e1b2-41a2-b3ad-0e61b7dae332 {
  padding-left: 5%;
padding-right: 5%;
}

#s-b36be1cc-999a-4729-9ff7-58d95e0735f9 {
  padding-left: 5%;
padding-right: 5%;
}

#s-8d8c2935-c012-427f-b6fd-a130449ac81f {
  min-height: 50px;
}








#s-8d8c2935-c012-427f-b6fd-a130449ac81f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8d8c2935-c012-427f-b6fd-a130449ac81f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-eb8c7a27-9766-4c4a-b9ef-8d92ca62aeda {
  padding-left: 5%;
padding-right: 5%;
}

#s-0793db7d-6fb4-47b9-8033-2dae76a5acfe {
  padding-left: 5%;
padding-right: 5%;
}

#s-7fe38119-26bf-4517-a344-a8ddf7b89c4e {
  min-height: 50px;
}








#s-7fe38119-26bf-4517-a344-a8ddf7b89c4e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7fe38119-26bf-4517-a344-a8ddf7b89c4e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-48ec523a-c96b-4e31-b744-cc1766b8fbdc"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-48ec523a-c96b-4e31-b744-cc1766b8fbdc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-48ec523a-c96b-4e31-b744-cc1766b8fbdc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-48ec523a-c96b-4e31-b744-cc1766b8fbdc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-77ebce11-9b2a-4d84-af75-a35f29200f76 {
  max-width: 1500px;
aspect-ratio: 1500/2100;
text-align: center;
}





  #s-77ebce11-9b2a-4d84-af75-a35f29200f76 img.shogun-image,
  #s-77ebce11-9b2a-4d84-af75-a35f29200f76 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-77ebce11-9b2a-4d84-af75-a35f29200f76 {
    width: 100%;
    height: auto;
  }

  #s-77ebce11-9b2a-4d84-af75-a35f29200f76 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-77ebce11-9b2a-4d84-af75-a35f29200f76.shogun-image {
    
    
  }


.s-77ebce11-9b2a-4d84-af75-a35f29200f76 .shogun-image-content {
  
    align-items: center;
  
}

.s-77ebce11-9b2a-4d84-af75-a35f29200f76.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77ebce11-9b2a-4d84-af75-a35f29200f76.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77ebce11-9b2a-4d84-af75-a35f29200f76.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77ebce11-9b2a-4d84-af75-a35f29200f76 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-77ebce11-9b2a-4d84-af75-a35f29200f76.shogun-image-container {
      position: relative;
    }

    .s-77ebce11-9b2a-4d84-af75-a35f29200f76.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77ebce11-9b2a-4d84-af75-a35f29200f76.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77ebce11-9b2a-4d84-af75-a35f29200f76 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-77ebce11-9b2a-4d84-af75-a35f29200f76 img.shogun-image,
  #s-77ebce11-9b2a-4d84-af75-a35f29200f76 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-77ebce11-9b2a-4d84-af75-a35f29200f76 {
    width: 100%;
    height: auto;
  }

  #s-77ebce11-9b2a-4d84-af75-a35f29200f76 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-77ebce11-9b2a-4d84-af75-a35f29200f76.shogun-image {
    
    
  }


.s-77ebce11-9b2a-4d84-af75-a35f29200f76 .shogun-image-content {
  
    align-items: center;
  
}

.s-77ebce11-9b2a-4d84-af75-a35f29200f76.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77ebce11-9b2a-4d84-af75-a35f29200f76.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77ebce11-9b2a-4d84-af75-a35f29200f76.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77ebce11-9b2a-4d84-af75-a35f29200f76 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-77ebce11-9b2a-4d84-af75-a35f29200f76.shogun-image-container {
      position: relative;
    }

    .s-77ebce11-9b2a-4d84-af75-a35f29200f76.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77ebce11-9b2a-4d84-af75-a35f29200f76.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77ebce11-9b2a-4d84-af75-a35f29200f76 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-77ebce11-9b2a-4d84-af75-a35f29200f76 img.shogun-image,
  #s-77ebce11-9b2a-4d84-af75-a35f29200f76 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-77ebce11-9b2a-4d84-af75-a35f29200f76 {
    width: 100%;
    height: auto;
  }

  #s-77ebce11-9b2a-4d84-af75-a35f29200f76 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-77ebce11-9b2a-4d84-af75-a35f29200f76.shogun-image {
    
    
  }


.s-77ebce11-9b2a-4d84-af75-a35f29200f76 .shogun-image-content {
  
    align-items: center;
  
}

.s-77ebce11-9b2a-4d84-af75-a35f29200f76.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77ebce11-9b2a-4d84-af75-a35f29200f76.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77ebce11-9b2a-4d84-af75-a35f29200f76.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77ebce11-9b2a-4d84-af75-a35f29200f76 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-77ebce11-9b2a-4d84-af75-a35f29200f76.shogun-image-container {
      position: relative;
    }

    .s-77ebce11-9b2a-4d84-af75-a35f29200f76.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77ebce11-9b2a-4d84-af75-a35f29200f76.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77ebce11-9b2a-4d84-af75-a35f29200f76 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-77ebce11-9b2a-4d84-af75-a35f29200f76 img.shogun-image,
  #s-77ebce11-9b2a-4d84-af75-a35f29200f76 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-77ebce11-9b2a-4d84-af75-a35f29200f76 {
    width: 100%;
    height: auto;
  }

  #s-77ebce11-9b2a-4d84-af75-a35f29200f76 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-77ebce11-9b2a-4d84-af75-a35f29200f76.shogun-image {
    
    
  }


.s-77ebce11-9b2a-4d84-af75-a35f29200f76 .shogun-image-content {
  
    align-items: center;
  
}

.s-77ebce11-9b2a-4d84-af75-a35f29200f76.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77ebce11-9b2a-4d84-af75-a35f29200f76.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77ebce11-9b2a-4d84-af75-a35f29200f76.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77ebce11-9b2a-4d84-af75-a35f29200f76 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-77ebce11-9b2a-4d84-af75-a35f29200f76.shogun-image-container {
      position: relative;
    }

    .s-77ebce11-9b2a-4d84-af75-a35f29200f76.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77ebce11-9b2a-4d84-af75-a35f29200f76.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77ebce11-9b2a-4d84-af75-a35f29200f76 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-77ebce11-9b2a-4d84-af75-a35f29200f76 img.shogun-image,
  #s-77ebce11-9b2a-4d84-af75-a35f29200f76 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-77ebce11-9b2a-4d84-af75-a35f29200f76 {
    width: 100%;
    height: auto;
  }

  #s-77ebce11-9b2a-4d84-af75-a35f29200f76 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-77ebce11-9b2a-4d84-af75-a35f29200f76.shogun-image {
    
    
  }


.s-77ebce11-9b2a-4d84-af75-a35f29200f76 .shogun-image-content {
  
    align-items: center;
  
}

.s-77ebce11-9b2a-4d84-af75-a35f29200f76.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77ebce11-9b2a-4d84-af75-a35f29200f76.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77ebce11-9b2a-4d84-af75-a35f29200f76.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77ebce11-9b2a-4d84-af75-a35f29200f76 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-77ebce11-9b2a-4d84-af75-a35f29200f76.shogun-image-container {
      position: relative;
    }

    .s-77ebce11-9b2a-4d84-af75-a35f29200f76.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77ebce11-9b2a-4d84-af75-a35f29200f76.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77ebce11-9b2a-4d84-af75-a35f29200f76 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 {
  max-width: 1500px;
aspect-ratio: 1500/2100;
text-align: center;
}





  #s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 img.shogun-image,
  #s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 {
    width: 100%;
    height: auto;
  }

  #s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shogun-image {
    
    
  }


.s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 .shogun-image-content {
  
    align-items: center;
  
}

.s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shogun-image-container {
      position: relative;
    }

    .s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 img.shogun-image,
  #s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 {
    width: 100%;
    height: auto;
  }

  #s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shogun-image {
    
    
  }


.s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 .shogun-image-content {
  
    align-items: center;
  
}

.s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shogun-image-container {
      position: relative;
    }

    .s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 img.shogun-image,
  #s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 {
    width: 100%;
    height: auto;
  }

  #s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shogun-image {
    
    
  }


.s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 .shogun-image-content {
  
    align-items: center;
  
}

.s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shogun-image-container {
      position: relative;
    }

    .s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 img.shogun-image,
  #s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 {
    width: 100%;
    height: auto;
  }

  #s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shogun-image {
    
    
  }


.s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 .shogun-image-content {
  
    align-items: center;
  
}

.s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shogun-image-container {
      position: relative;
    }

    .s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 img.shogun-image,
  #s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 {
    width: 100%;
    height: auto;
  }

  #s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shogun-image {
    
    
  }


.s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 .shogun-image-content {
  
    align-items: center;
  
}

.s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shogun-image-container {
      position: relative;
    }

    .s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cb5ae1d7-7e42-4adb-884f-2a2ab61aee68 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-615139d3-c5f0-4a6f-a165-4bfdf4a6379a {
  min-height: 50px;
}








#s-615139d3-c5f0-4a6f-a165-4bfdf4a6379a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-615139d3-c5f0-4a6f-a165-4bfdf4a6379a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6c8681b2-db88-41ed-99e0-b79c7e01498e {
  padding-left: 5%;
padding-right: 5%;
}

#s-7753e5f2-3382-43ab-bd93-93c2ac840260 {
  padding-left: 5%;
padding-right: 5%;
}

#s-0048a40c-05b4-494d-90c7-7a2233866da7 {
  min-height: 50px;
}








#s-0048a40c-05b4-494d-90c7-7a2233866da7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0048a40c-05b4-494d-90c7-7a2233866da7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-ec951ebb-2519-4f41-826b-4c96ce47be6d"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-ec951ebb-2519-4f41-826b-4c96ce47be6d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-ec951ebb-2519-4f41-826b-4c96ce47be6d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-ec951ebb-2519-4f41-826b-4c96ce47be6d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-9b75855b-043a-4c4f-b725-8be943805f52 {
  max-width: 1500px;
aspect-ratio: 1500/2100;
text-align: center;
}





  #s-9b75855b-043a-4c4f-b725-8be943805f52 img.shogun-image,
  #s-9b75855b-043a-4c4f-b725-8be943805f52 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9b75855b-043a-4c4f-b725-8be943805f52 {
    width: 100%;
    height: auto;
  }

  #s-9b75855b-043a-4c4f-b725-8be943805f52 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9b75855b-043a-4c4f-b725-8be943805f52.shogun-image {
    
    
  }


.s-9b75855b-043a-4c4f-b725-8be943805f52 .shogun-image-content {
  
    align-items: center;
  
}

.s-9b75855b-043a-4c4f-b725-8be943805f52.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9b75855b-043a-4c4f-b725-8be943805f52.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b75855b-043a-4c4f-b725-8be943805f52.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9b75855b-043a-4c4f-b725-8be943805f52 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-9b75855b-043a-4c4f-b725-8be943805f52.shogun-image-container {
      position: relative;
    }

    .s-9b75855b-043a-4c4f-b725-8be943805f52.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9b75855b-043a-4c4f-b725-8be943805f52.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9b75855b-043a-4c4f-b725-8be943805f52 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-9b75855b-043a-4c4f-b725-8be943805f52 img.shogun-image,
  #s-9b75855b-043a-4c4f-b725-8be943805f52 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9b75855b-043a-4c4f-b725-8be943805f52 {
    width: 100%;
    height: auto;
  }

  #s-9b75855b-043a-4c4f-b725-8be943805f52 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9b75855b-043a-4c4f-b725-8be943805f52.shogun-image {
    
    
  }


.s-9b75855b-043a-4c4f-b725-8be943805f52 .shogun-image-content {
  
    align-items: center;
  
}

.s-9b75855b-043a-4c4f-b725-8be943805f52.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9b75855b-043a-4c4f-b725-8be943805f52.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b75855b-043a-4c4f-b725-8be943805f52.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9b75855b-043a-4c4f-b725-8be943805f52 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-9b75855b-043a-4c4f-b725-8be943805f52.shogun-image-container {
      position: relative;
    }

    .s-9b75855b-043a-4c4f-b725-8be943805f52.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9b75855b-043a-4c4f-b725-8be943805f52.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9b75855b-043a-4c4f-b725-8be943805f52 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-9b75855b-043a-4c4f-b725-8be943805f52 img.shogun-image,
  #s-9b75855b-043a-4c4f-b725-8be943805f52 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9b75855b-043a-4c4f-b725-8be943805f52 {
    width: 100%;
    height: auto;
  }

  #s-9b75855b-043a-4c4f-b725-8be943805f52 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9b75855b-043a-4c4f-b725-8be943805f52.shogun-image {
    
    
  }


.s-9b75855b-043a-4c4f-b725-8be943805f52 .shogun-image-content {
  
    align-items: center;
  
}

.s-9b75855b-043a-4c4f-b725-8be943805f52.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9b75855b-043a-4c4f-b725-8be943805f52.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b75855b-043a-4c4f-b725-8be943805f52.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9b75855b-043a-4c4f-b725-8be943805f52 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-9b75855b-043a-4c4f-b725-8be943805f52.shogun-image-container {
      position: relative;
    }

    .s-9b75855b-043a-4c4f-b725-8be943805f52.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9b75855b-043a-4c4f-b725-8be943805f52.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9b75855b-043a-4c4f-b725-8be943805f52 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-9b75855b-043a-4c4f-b725-8be943805f52 img.shogun-image,
  #s-9b75855b-043a-4c4f-b725-8be943805f52 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9b75855b-043a-4c4f-b725-8be943805f52 {
    width: 100%;
    height: auto;
  }

  #s-9b75855b-043a-4c4f-b725-8be943805f52 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9b75855b-043a-4c4f-b725-8be943805f52.shogun-image {
    
    
  }


.s-9b75855b-043a-4c4f-b725-8be943805f52 .shogun-image-content {
  
    align-items: center;
  
}

.s-9b75855b-043a-4c4f-b725-8be943805f52.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9b75855b-043a-4c4f-b725-8be943805f52.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b75855b-043a-4c4f-b725-8be943805f52.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9b75855b-043a-4c4f-b725-8be943805f52 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-9b75855b-043a-4c4f-b725-8be943805f52.shogun-image-container {
      position: relative;
    }

    .s-9b75855b-043a-4c4f-b725-8be943805f52.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9b75855b-043a-4c4f-b725-8be943805f52.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9b75855b-043a-4c4f-b725-8be943805f52 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-9b75855b-043a-4c4f-b725-8be943805f52 img.shogun-image,
  #s-9b75855b-043a-4c4f-b725-8be943805f52 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9b75855b-043a-4c4f-b725-8be943805f52 {
    width: 100%;
    height: auto;
  }

  #s-9b75855b-043a-4c4f-b725-8be943805f52 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9b75855b-043a-4c4f-b725-8be943805f52.shogun-image {
    
    
  }


.s-9b75855b-043a-4c4f-b725-8be943805f52 .shogun-image-content {
  
    align-items: center;
  
}

.s-9b75855b-043a-4c4f-b725-8be943805f52.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9b75855b-043a-4c4f-b725-8be943805f52.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b75855b-043a-4c4f-b725-8be943805f52.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9b75855b-043a-4c4f-b725-8be943805f52 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-9b75855b-043a-4c4f-b725-8be943805f52.shogun-image-container {
      position: relative;
    }

    .s-9b75855b-043a-4c4f-b725-8be943805f52.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9b75855b-043a-4c4f-b725-8be943805f52.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9b75855b-043a-4c4f-b725-8be943805f52 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-19d7003b-59e7-4c36-8a79-2a93664497dc {
  max-width: 1500px;
aspect-ratio: 1500/2099;
text-align: center;
}





  #s-19d7003b-59e7-4c36-8a79-2a93664497dc img.shogun-image,
  #s-19d7003b-59e7-4c36-8a79-2a93664497dc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-19d7003b-59e7-4c36-8a79-2a93664497dc {
    width: 100%;
    height: auto;
  }

  #s-19d7003b-59e7-4c36-8a79-2a93664497dc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-19d7003b-59e7-4c36-8a79-2a93664497dc.shogun-image {
    
    
  }


.s-19d7003b-59e7-4c36-8a79-2a93664497dc .shogun-image-content {
  
    align-items: center;
  
}

.s-19d7003b-59e7-4c36-8a79-2a93664497dc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-19d7003b-59e7-4c36-8a79-2a93664497dc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-19d7003b-59e7-4c36-8a79-2a93664497dc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-19d7003b-59e7-4c36-8a79-2a93664497dc {
      --shg-aspect-ratio: calc(1500/2099); 
    }

    .s-19d7003b-59e7-4c36-8a79-2a93664497dc.shogun-image-container {
      position: relative;
    }

    .s-19d7003b-59e7-4c36-8a79-2a93664497dc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-19d7003b-59e7-4c36-8a79-2a93664497dc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-19d7003b-59e7-4c36-8a79-2a93664497dc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-19d7003b-59e7-4c36-8a79-2a93664497dc img.shogun-image,
  #s-19d7003b-59e7-4c36-8a79-2a93664497dc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-19d7003b-59e7-4c36-8a79-2a93664497dc {
    width: 100%;
    height: auto;
  }

  #s-19d7003b-59e7-4c36-8a79-2a93664497dc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-19d7003b-59e7-4c36-8a79-2a93664497dc.shogun-image {
    
    
  }


.s-19d7003b-59e7-4c36-8a79-2a93664497dc .shogun-image-content {
  
    align-items: center;
  
}

.s-19d7003b-59e7-4c36-8a79-2a93664497dc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-19d7003b-59e7-4c36-8a79-2a93664497dc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-19d7003b-59e7-4c36-8a79-2a93664497dc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-19d7003b-59e7-4c36-8a79-2a93664497dc {
      --shg-aspect-ratio: calc(1500/2099); 
    }

    .s-19d7003b-59e7-4c36-8a79-2a93664497dc.shogun-image-container {
      position: relative;
    }

    .s-19d7003b-59e7-4c36-8a79-2a93664497dc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-19d7003b-59e7-4c36-8a79-2a93664497dc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-19d7003b-59e7-4c36-8a79-2a93664497dc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-19d7003b-59e7-4c36-8a79-2a93664497dc img.shogun-image,
  #s-19d7003b-59e7-4c36-8a79-2a93664497dc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-19d7003b-59e7-4c36-8a79-2a93664497dc {
    width: 100%;
    height: auto;
  }

  #s-19d7003b-59e7-4c36-8a79-2a93664497dc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-19d7003b-59e7-4c36-8a79-2a93664497dc.shogun-image {
    
    
  }


.s-19d7003b-59e7-4c36-8a79-2a93664497dc .shogun-image-content {
  
    align-items: center;
  
}

.s-19d7003b-59e7-4c36-8a79-2a93664497dc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-19d7003b-59e7-4c36-8a79-2a93664497dc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-19d7003b-59e7-4c36-8a79-2a93664497dc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-19d7003b-59e7-4c36-8a79-2a93664497dc {
      --shg-aspect-ratio: calc(1500/2099); 
    }

    .s-19d7003b-59e7-4c36-8a79-2a93664497dc.shogun-image-container {
      position: relative;
    }

    .s-19d7003b-59e7-4c36-8a79-2a93664497dc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-19d7003b-59e7-4c36-8a79-2a93664497dc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-19d7003b-59e7-4c36-8a79-2a93664497dc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-19d7003b-59e7-4c36-8a79-2a93664497dc img.shogun-image,
  #s-19d7003b-59e7-4c36-8a79-2a93664497dc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-19d7003b-59e7-4c36-8a79-2a93664497dc {
    width: 100%;
    height: auto;
  }

  #s-19d7003b-59e7-4c36-8a79-2a93664497dc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-19d7003b-59e7-4c36-8a79-2a93664497dc.shogun-image {
    
    
  }


.s-19d7003b-59e7-4c36-8a79-2a93664497dc .shogun-image-content {
  
    align-items: center;
  
}

.s-19d7003b-59e7-4c36-8a79-2a93664497dc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-19d7003b-59e7-4c36-8a79-2a93664497dc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-19d7003b-59e7-4c36-8a79-2a93664497dc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-19d7003b-59e7-4c36-8a79-2a93664497dc {
      --shg-aspect-ratio: calc(1500/2099); 
    }

    .s-19d7003b-59e7-4c36-8a79-2a93664497dc.shogun-image-container {
      position: relative;
    }

    .s-19d7003b-59e7-4c36-8a79-2a93664497dc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-19d7003b-59e7-4c36-8a79-2a93664497dc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-19d7003b-59e7-4c36-8a79-2a93664497dc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-19d7003b-59e7-4c36-8a79-2a93664497dc img.shogun-image,
  #s-19d7003b-59e7-4c36-8a79-2a93664497dc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-19d7003b-59e7-4c36-8a79-2a93664497dc {
    width: 100%;
    height: auto;
  }

  #s-19d7003b-59e7-4c36-8a79-2a93664497dc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-19d7003b-59e7-4c36-8a79-2a93664497dc.shogun-image {
    
    
  }


.s-19d7003b-59e7-4c36-8a79-2a93664497dc .shogun-image-content {
  
    align-items: center;
  
}

.s-19d7003b-59e7-4c36-8a79-2a93664497dc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-19d7003b-59e7-4c36-8a79-2a93664497dc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-19d7003b-59e7-4c36-8a79-2a93664497dc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-19d7003b-59e7-4c36-8a79-2a93664497dc {
      --shg-aspect-ratio: calc(1500/2099); 
    }

    .s-19d7003b-59e7-4c36-8a79-2a93664497dc.shogun-image-container {
      position: relative;
    }

    .s-19d7003b-59e7-4c36-8a79-2a93664497dc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-19d7003b-59e7-4c36-8a79-2a93664497dc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-19d7003b-59e7-4c36-8a79-2a93664497dc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-633e5f35-2005-4ea2-baf8-d3a6572223c1 {
  max-width: 1500px;
aspect-ratio: 1500/2100;
text-align: center;
}





  #s-633e5f35-2005-4ea2-baf8-d3a6572223c1 img.shogun-image,
  #s-633e5f35-2005-4ea2-baf8-d3a6572223c1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-633e5f35-2005-4ea2-baf8-d3a6572223c1 {
    width: 100%;
    height: auto;
  }

  #s-633e5f35-2005-4ea2-baf8-d3a6572223c1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shogun-image {
    
    
  }


.s-633e5f35-2005-4ea2-baf8-d3a6572223c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-633e5f35-2005-4ea2-baf8-d3a6572223c1 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shogun-image-container {
      position: relative;
    }

    .s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-633e5f35-2005-4ea2-baf8-d3a6572223c1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-633e5f35-2005-4ea2-baf8-d3a6572223c1 img.shogun-image,
  #s-633e5f35-2005-4ea2-baf8-d3a6572223c1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-633e5f35-2005-4ea2-baf8-d3a6572223c1 {
    width: 100%;
    height: auto;
  }

  #s-633e5f35-2005-4ea2-baf8-d3a6572223c1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shogun-image {
    
    
  }


.s-633e5f35-2005-4ea2-baf8-d3a6572223c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-633e5f35-2005-4ea2-baf8-d3a6572223c1 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shogun-image-container {
      position: relative;
    }

    .s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-633e5f35-2005-4ea2-baf8-d3a6572223c1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-633e5f35-2005-4ea2-baf8-d3a6572223c1 img.shogun-image,
  #s-633e5f35-2005-4ea2-baf8-d3a6572223c1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-633e5f35-2005-4ea2-baf8-d3a6572223c1 {
    width: 100%;
    height: auto;
  }

  #s-633e5f35-2005-4ea2-baf8-d3a6572223c1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shogun-image {
    
    
  }


.s-633e5f35-2005-4ea2-baf8-d3a6572223c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-633e5f35-2005-4ea2-baf8-d3a6572223c1 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shogun-image-container {
      position: relative;
    }

    .s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-633e5f35-2005-4ea2-baf8-d3a6572223c1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-633e5f35-2005-4ea2-baf8-d3a6572223c1 img.shogun-image,
  #s-633e5f35-2005-4ea2-baf8-d3a6572223c1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-633e5f35-2005-4ea2-baf8-d3a6572223c1 {
    width: 100%;
    height: auto;
  }

  #s-633e5f35-2005-4ea2-baf8-d3a6572223c1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shogun-image {
    
    
  }


.s-633e5f35-2005-4ea2-baf8-d3a6572223c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-633e5f35-2005-4ea2-baf8-d3a6572223c1 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shogun-image-container {
      position: relative;
    }

    .s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-633e5f35-2005-4ea2-baf8-d3a6572223c1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-633e5f35-2005-4ea2-baf8-d3a6572223c1 img.shogun-image,
  #s-633e5f35-2005-4ea2-baf8-d3a6572223c1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-633e5f35-2005-4ea2-baf8-d3a6572223c1 {
    width: 100%;
    height: auto;
  }

  #s-633e5f35-2005-4ea2-baf8-d3a6572223c1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shogun-image {
    
    
  }


.s-633e5f35-2005-4ea2-baf8-d3a6572223c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-633e5f35-2005-4ea2-baf8-d3a6572223c1 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shogun-image-container {
      position: relative;
    }

    .s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-633e5f35-2005-4ea2-baf8-d3a6572223c1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-633e5f35-2005-4ea2-baf8-d3a6572223c1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-1a538dca-a4de-4fe7-be24-889b723dcff7 {
  min-height: 50px;
}








#s-1a538dca-a4de-4fe7-be24-889b723dcff7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1a538dca-a4de-4fe7-be24-889b723dcff7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a2e5db8e-177a-4aa3-b06e-caa85a3b9670 {
  padding-left: 5%;
padding-right: 5%;
}

#s-cb2c9827-c482-4f9c-b722-f8d38c5b4c54 {
  padding-left: 5%;
padding-right: 5%;
}

#s-b4050371-fe6f-47ed-8f54-0578eeff9c7c {
  min-height: 50px;
}








#s-b4050371-fe6f-47ed-8f54-0578eeff9c7c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b4050371-fe6f-47ed-8f54-0578eeff9c7c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9710ca9d-5878-4ccd-8122-4b8fe952b619 {
  padding-left: 5%;
padding-right: 5%;
}

#s-85577b2c-c115-4372-bd22-7ee6a1d050a0 {
  padding-left: 5%;
padding-right: 5%;
}

#s-ce414720-2caf-4f81-ac01-d014fdc4c37a {
  min-height: 50px;
}








#s-ce414720-2caf-4f81-ac01-d014fdc4c37a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ce414720-2caf-4f81-ac01-d014fdc4c37a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5533979b-838f-40eb-bc7e-dd3399fa10a5 {
  max-width: 1500px;
aspect-ratio: 1500/2100;
text-align: center;
}





  #s-5533979b-838f-40eb-bc7e-dd3399fa10a5 img.shogun-image,
  #s-5533979b-838f-40eb-bc7e-dd3399fa10a5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5533979b-838f-40eb-bc7e-dd3399fa10a5 {
    width: 100%;
    height: auto;
  }

  #s-5533979b-838f-40eb-bc7e-dd3399fa10a5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shogun-image {
    
    
  }


.s-5533979b-838f-40eb-bc7e-dd3399fa10a5 .shogun-image-content {
  
    align-items: center;
  
}

.s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5533979b-838f-40eb-bc7e-dd3399fa10a5 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shogun-image-container {
      position: relative;
    }

    .s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5533979b-838f-40eb-bc7e-dd3399fa10a5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-5533979b-838f-40eb-bc7e-dd3399fa10a5 img.shogun-image,
  #s-5533979b-838f-40eb-bc7e-dd3399fa10a5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5533979b-838f-40eb-bc7e-dd3399fa10a5 {
    width: 100%;
    height: auto;
  }

  #s-5533979b-838f-40eb-bc7e-dd3399fa10a5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shogun-image {
    
    
  }


.s-5533979b-838f-40eb-bc7e-dd3399fa10a5 .shogun-image-content {
  
    align-items: center;
  
}

.s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5533979b-838f-40eb-bc7e-dd3399fa10a5 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shogun-image-container {
      position: relative;
    }

    .s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5533979b-838f-40eb-bc7e-dd3399fa10a5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-5533979b-838f-40eb-bc7e-dd3399fa10a5 img.shogun-image,
  #s-5533979b-838f-40eb-bc7e-dd3399fa10a5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5533979b-838f-40eb-bc7e-dd3399fa10a5 {
    width: 100%;
    height: auto;
  }

  #s-5533979b-838f-40eb-bc7e-dd3399fa10a5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shogun-image {
    
    
  }


.s-5533979b-838f-40eb-bc7e-dd3399fa10a5 .shogun-image-content {
  
    align-items: center;
  
}

.s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5533979b-838f-40eb-bc7e-dd3399fa10a5 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shogun-image-container {
      position: relative;
    }

    .s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5533979b-838f-40eb-bc7e-dd3399fa10a5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-5533979b-838f-40eb-bc7e-dd3399fa10a5 img.shogun-image,
  #s-5533979b-838f-40eb-bc7e-dd3399fa10a5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5533979b-838f-40eb-bc7e-dd3399fa10a5 {
    width: 100%;
    height: auto;
  }

  #s-5533979b-838f-40eb-bc7e-dd3399fa10a5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shogun-image {
    
    
  }


.s-5533979b-838f-40eb-bc7e-dd3399fa10a5 .shogun-image-content {
  
    align-items: center;
  
}

.s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5533979b-838f-40eb-bc7e-dd3399fa10a5 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shogun-image-container {
      position: relative;
    }

    .s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5533979b-838f-40eb-bc7e-dd3399fa10a5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-5533979b-838f-40eb-bc7e-dd3399fa10a5 img.shogun-image,
  #s-5533979b-838f-40eb-bc7e-dd3399fa10a5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5533979b-838f-40eb-bc7e-dd3399fa10a5 {
    width: 100%;
    height: auto;
  }

  #s-5533979b-838f-40eb-bc7e-dd3399fa10a5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shogun-image {
    
    
  }


.s-5533979b-838f-40eb-bc7e-dd3399fa10a5 .shogun-image-content {
  
    align-items: center;
  
}

.s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5533979b-838f-40eb-bc7e-dd3399fa10a5 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shogun-image-container {
      position: relative;
    }

    .s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5533979b-838f-40eb-bc7e-dd3399fa10a5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5533979b-838f-40eb-bc7e-dd3399fa10a5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-f5d4d76c-044e-44c9-96d8-94cf571632ca {
  min-height: 50px;
}








#s-f5d4d76c-044e-44c9-96d8-94cf571632ca > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f5d4d76c-044e-44c9-96d8-94cf571632ca.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5b0a8045-a69a-4ee4-8f1f-0dd53ff23f87 {
  padding-left: 5%;
padding-right: 5%;
}

#s-ed19107b-4ed0-4ea8-8bf7-0de79c7fb0a6 {
  padding-left: 5%;
padding-right: 5%;
}

#s-fbb5cfe2-5e4c-4116-a352-a0c903a3b135 {
  min-height: 50px;
}








#s-fbb5cfe2-5e4c-4116-a352-a0c903a3b135 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fbb5cfe2-5e4c-4116-a352-a0c903a3b135.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-c8a6be7c-2dcf-456f-b8b9-3e160530baf7"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-c8a6be7c-2dcf-456f-b8b9-3e160530baf7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-c8a6be7c-2dcf-456f-b8b9-3e160530baf7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-c8a6be7c-2dcf-456f-b8b9-3e160530baf7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 {
  max-width: 1500px;
aspect-ratio: 1500/2100;
text-align: center;
}





  #s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 img.shogun-image,
  #s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 {
    width: 100%;
    height: auto;
  }

  #s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shogun-image {
    
    
  }


.s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 .shogun-image-content {
  
    align-items: center;
  
}

.s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shogun-image-container {
      position: relative;
    }

    .s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 img.shogun-image,
  #s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 {
    width: 100%;
    height: auto;
  }

  #s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shogun-image {
    
    
  }


.s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 .shogun-image-content {
  
    align-items: center;
  
}

.s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shogun-image-container {
      position: relative;
    }

    .s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 img.shogun-image,
  #s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 {
    width: 100%;
    height: auto;
  }

  #s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shogun-image {
    
    
  }


.s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 .shogun-image-content {
  
    align-items: center;
  
}

.s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shogun-image-container {
      position: relative;
    }

    .s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 img.shogun-image,
  #s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 {
    width: 100%;
    height: auto;
  }

  #s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shogun-image {
    
    
  }


.s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 .shogun-image-content {
  
    align-items: center;
  
}

.s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shogun-image-container {
      position: relative;
    }

    .s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 img.shogun-image,
  #s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 {
    width: 100%;
    height: auto;
  }

  #s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shogun-image {
    
    
  }


.s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 .shogun-image-content {
  
    align-items: center;
  
}

.s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shogun-image-container {
      position: relative;
    }

    .s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a3c39567-cbcb-44ce-81f0-2d7c623006e1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a3c39567-cbcb-44ce-81f0-2d7c623006e1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-7f8804e1-56c7-400b-a435-a6b152144e9e {
  max-width: 1500px;
aspect-ratio: 1500/2100;
text-align: center;
}





  #s-7f8804e1-56c7-400b-a435-a6b152144e9e img.shogun-image,
  #s-7f8804e1-56c7-400b-a435-a6b152144e9e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7f8804e1-56c7-400b-a435-a6b152144e9e {
    width: 100%;
    height: auto;
  }

  #s-7f8804e1-56c7-400b-a435-a6b152144e9e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7f8804e1-56c7-400b-a435-a6b152144e9e.shogun-image {
    
    
  }


.s-7f8804e1-56c7-400b-a435-a6b152144e9e .shogun-image-content {
  
    align-items: center;
  
}

.s-7f8804e1-56c7-400b-a435-a6b152144e9e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7f8804e1-56c7-400b-a435-a6b152144e9e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f8804e1-56c7-400b-a435-a6b152144e9e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7f8804e1-56c7-400b-a435-a6b152144e9e {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-7f8804e1-56c7-400b-a435-a6b152144e9e.shogun-image-container {
      position: relative;
    }

    .s-7f8804e1-56c7-400b-a435-a6b152144e9e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7f8804e1-56c7-400b-a435-a6b152144e9e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7f8804e1-56c7-400b-a435-a6b152144e9e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-7f8804e1-56c7-400b-a435-a6b152144e9e img.shogun-image,
  #s-7f8804e1-56c7-400b-a435-a6b152144e9e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7f8804e1-56c7-400b-a435-a6b152144e9e {
    width: 100%;
    height: auto;
  }

  #s-7f8804e1-56c7-400b-a435-a6b152144e9e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7f8804e1-56c7-400b-a435-a6b152144e9e.shogun-image {
    
    
  }


.s-7f8804e1-56c7-400b-a435-a6b152144e9e .shogun-image-content {
  
    align-items: center;
  
}

.s-7f8804e1-56c7-400b-a435-a6b152144e9e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7f8804e1-56c7-400b-a435-a6b152144e9e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f8804e1-56c7-400b-a435-a6b152144e9e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7f8804e1-56c7-400b-a435-a6b152144e9e {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-7f8804e1-56c7-400b-a435-a6b152144e9e.shogun-image-container {
      position: relative;
    }

    .s-7f8804e1-56c7-400b-a435-a6b152144e9e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7f8804e1-56c7-400b-a435-a6b152144e9e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7f8804e1-56c7-400b-a435-a6b152144e9e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-7f8804e1-56c7-400b-a435-a6b152144e9e img.shogun-image,
  #s-7f8804e1-56c7-400b-a435-a6b152144e9e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7f8804e1-56c7-400b-a435-a6b152144e9e {
    width: 100%;
    height: auto;
  }

  #s-7f8804e1-56c7-400b-a435-a6b152144e9e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7f8804e1-56c7-400b-a435-a6b152144e9e.shogun-image {
    
    
  }


.s-7f8804e1-56c7-400b-a435-a6b152144e9e .shogun-image-content {
  
    align-items: center;
  
}

.s-7f8804e1-56c7-400b-a435-a6b152144e9e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7f8804e1-56c7-400b-a435-a6b152144e9e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f8804e1-56c7-400b-a435-a6b152144e9e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7f8804e1-56c7-400b-a435-a6b152144e9e {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-7f8804e1-56c7-400b-a435-a6b152144e9e.shogun-image-container {
      position: relative;
    }

    .s-7f8804e1-56c7-400b-a435-a6b152144e9e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7f8804e1-56c7-400b-a435-a6b152144e9e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7f8804e1-56c7-400b-a435-a6b152144e9e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-7f8804e1-56c7-400b-a435-a6b152144e9e img.shogun-image,
  #s-7f8804e1-56c7-400b-a435-a6b152144e9e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7f8804e1-56c7-400b-a435-a6b152144e9e {
    width: 100%;
    height: auto;
  }

  #s-7f8804e1-56c7-400b-a435-a6b152144e9e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7f8804e1-56c7-400b-a435-a6b152144e9e.shogun-image {
    
    
  }


.s-7f8804e1-56c7-400b-a435-a6b152144e9e .shogun-image-content {
  
    align-items: center;
  
}

.s-7f8804e1-56c7-400b-a435-a6b152144e9e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7f8804e1-56c7-400b-a435-a6b152144e9e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f8804e1-56c7-400b-a435-a6b152144e9e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7f8804e1-56c7-400b-a435-a6b152144e9e {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-7f8804e1-56c7-400b-a435-a6b152144e9e.shogun-image-container {
      position: relative;
    }

    .s-7f8804e1-56c7-400b-a435-a6b152144e9e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7f8804e1-56c7-400b-a435-a6b152144e9e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7f8804e1-56c7-400b-a435-a6b152144e9e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-7f8804e1-56c7-400b-a435-a6b152144e9e img.shogun-image,
  #s-7f8804e1-56c7-400b-a435-a6b152144e9e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7f8804e1-56c7-400b-a435-a6b152144e9e {
    width: 100%;
    height: auto;
  }

  #s-7f8804e1-56c7-400b-a435-a6b152144e9e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7f8804e1-56c7-400b-a435-a6b152144e9e.shogun-image {
    
    
  }


.s-7f8804e1-56c7-400b-a435-a6b152144e9e .shogun-image-content {
  
    align-items: center;
  
}

.s-7f8804e1-56c7-400b-a435-a6b152144e9e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7f8804e1-56c7-400b-a435-a6b152144e9e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f8804e1-56c7-400b-a435-a6b152144e9e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7f8804e1-56c7-400b-a435-a6b152144e9e {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-7f8804e1-56c7-400b-a435-a6b152144e9e.shogun-image-container {
      position: relative;
    }

    .s-7f8804e1-56c7-400b-a435-a6b152144e9e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7f8804e1-56c7-400b-a435-a6b152144e9e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7f8804e1-56c7-400b-a435-a6b152144e9e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-d4cf7f74-4042-4762-b3e2-1859795d0f2b {
  max-width: 1500px;
aspect-ratio: 1500/2101;
text-align: center;
}





  #s-d4cf7f74-4042-4762-b3e2-1859795d0f2b img.shogun-image,
  #s-d4cf7f74-4042-4762-b3e2-1859795d0f2b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d4cf7f74-4042-4762-b3e2-1859795d0f2b {
    width: 100%;
    height: auto;
  }

  #s-d4cf7f74-4042-4762-b3e2-1859795d0f2b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shogun-image {
    
    
  }


.s-d4cf7f74-4042-4762-b3e2-1859795d0f2b .shogun-image-content {
  
    align-items: center;
  
}

.s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d4cf7f74-4042-4762-b3e2-1859795d0f2b {
      --shg-aspect-ratio: calc(1500/2101); 
    }

    .s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shogun-image-container {
      position: relative;
    }

    .s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d4cf7f74-4042-4762-b3e2-1859795d0f2b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-d4cf7f74-4042-4762-b3e2-1859795d0f2b img.shogun-image,
  #s-d4cf7f74-4042-4762-b3e2-1859795d0f2b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d4cf7f74-4042-4762-b3e2-1859795d0f2b {
    width: 100%;
    height: auto;
  }

  #s-d4cf7f74-4042-4762-b3e2-1859795d0f2b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shogun-image {
    
    
  }


.s-d4cf7f74-4042-4762-b3e2-1859795d0f2b .shogun-image-content {
  
    align-items: center;
  
}

.s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d4cf7f74-4042-4762-b3e2-1859795d0f2b {
      --shg-aspect-ratio: calc(1500/2101); 
    }

    .s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shogun-image-container {
      position: relative;
    }

    .s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d4cf7f74-4042-4762-b3e2-1859795d0f2b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-d4cf7f74-4042-4762-b3e2-1859795d0f2b img.shogun-image,
  #s-d4cf7f74-4042-4762-b3e2-1859795d0f2b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d4cf7f74-4042-4762-b3e2-1859795d0f2b {
    width: 100%;
    height: auto;
  }

  #s-d4cf7f74-4042-4762-b3e2-1859795d0f2b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shogun-image {
    
    
  }


.s-d4cf7f74-4042-4762-b3e2-1859795d0f2b .shogun-image-content {
  
    align-items: center;
  
}

.s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d4cf7f74-4042-4762-b3e2-1859795d0f2b {
      --shg-aspect-ratio: calc(1500/2101); 
    }

    .s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shogun-image-container {
      position: relative;
    }

    .s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d4cf7f74-4042-4762-b3e2-1859795d0f2b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-d4cf7f74-4042-4762-b3e2-1859795d0f2b img.shogun-image,
  #s-d4cf7f74-4042-4762-b3e2-1859795d0f2b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d4cf7f74-4042-4762-b3e2-1859795d0f2b {
    width: 100%;
    height: auto;
  }

  #s-d4cf7f74-4042-4762-b3e2-1859795d0f2b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shogun-image {
    
    
  }


.s-d4cf7f74-4042-4762-b3e2-1859795d0f2b .shogun-image-content {
  
    align-items: center;
  
}

.s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d4cf7f74-4042-4762-b3e2-1859795d0f2b {
      --shg-aspect-ratio: calc(1500/2101); 
    }

    .s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shogun-image-container {
      position: relative;
    }

    .s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d4cf7f74-4042-4762-b3e2-1859795d0f2b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-d4cf7f74-4042-4762-b3e2-1859795d0f2b img.shogun-image,
  #s-d4cf7f74-4042-4762-b3e2-1859795d0f2b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d4cf7f74-4042-4762-b3e2-1859795d0f2b {
    width: 100%;
    height: auto;
  }

  #s-d4cf7f74-4042-4762-b3e2-1859795d0f2b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shogun-image {
    
    
  }


.s-d4cf7f74-4042-4762-b3e2-1859795d0f2b .shogun-image-content {
  
    align-items: center;
  
}

.s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d4cf7f74-4042-4762-b3e2-1859795d0f2b {
      --shg-aspect-ratio: calc(1500/2101); 
    }

    .s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shogun-image-container {
      position: relative;
    }

    .s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d4cf7f74-4042-4762-b3e2-1859795d0f2b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d4cf7f74-4042-4762-b3e2-1859795d0f2b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-32184695-0191-4a4d-819a-43132e0f4e71 {
  min-height: 50px;
}








#s-32184695-0191-4a4d-819a-43132e0f4e71 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-32184695-0191-4a4d-819a-43132e0f4e71.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

/*
  $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}
