#s-633692eb-087a-4332-82dc-1c8f7cb43a73 {
  text-align: left;
}

.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-27c495a7-2caa-4dfe-b95b-f9bb55fda307 {
  min-height: 50px;
}








#s-27c495a7-2caa-4dfe-b95b-f9bb55fda307 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-27c495a7-2caa-4dfe-b95b-f9bb55fda307.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;
}

#s-b5773459-d342-4f4e-ba57-9f878ff3c301 {
  margin-top: 10px;
margin-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 991px){#s-b5773459-d342-4f4e-ba57-9f878ff3c301 {
  margin-left: 0%;
margin-right: 0%;
}
}
@media (min-width: 0px) {
[id="s-b5773459-d342-4f4e-ba57-9f878ff3c301"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b5773459-d342-4f4e-ba57-9f878ff3c301"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-b5773459-d342-4f4e-ba57-9f878ff3c301"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-b5773459-d342-4f4e-ba57-9f878ff3c301"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

.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-dc147938-9a1b-44ae-be6a-43f08d0d0631 {
  max-width: 1272px;
aspect-ratio: 1272/1501;
text-align: center;
}
#s-dc147938-9a1b-44ae-be6a-43f08d0d0631:hover {opacity: 1 !important;}@media (min-width: 768px) and (max-width: 991px){#s-dc147938-9a1b-44ae-be6a-43f08d0d0631 {
  margin-top: 25px;
margin-left: 0%;
margin-bottom: 25px;
margin-right: 0%;
}
}@media (max-width: 767px){#s-dc147938-9a1b-44ae-be6a-43f08d0d0631 {
  margin-top: 25px;
margin-left: 0%;
margin-bottom: 25px;
margin-right: 0%;
}
}




  #s-dc147938-9a1b-44ae-be6a-43f08d0d0631 img.shogun-image,
  #s-dc147938-9a1b-44ae-be6a-43f08d0d0631 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-dc147938-9a1b-44ae-be6a-43f08d0d0631 {
    width: 100%;
    height: auto;
  }

  #s-dc147938-9a1b-44ae-be6a-43f08d0d0631 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shogun-image {
    
    
  }


.s-dc147938-9a1b-44ae-be6a-43f08d0d0631 .shogun-image-content {
  
    align-items: center;
  
}

.s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shogun-image {
  box-sizing: border-box;
}


.s-dc147938-9a1b-44ae-be6a-43f08d0d0631 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-dc147938-9a1b-44ae-be6a-43f08d0d0631 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-dc147938-9a1b-44ae-be6a-43f08d0d0631 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-dc147938-9a1b-44ae-be6a-43f08d0d0631 {
      --shg-aspect-ratio: calc(1272/1501); 
    }

    .s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shogun-image-container {
      position: relative;
    }

    .s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dc147938-9a1b-44ae-be6a-43f08d0d0631 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-dc147938-9a1b-44ae-be6a-43f08d0d0631 img.shogun-image,
  #s-dc147938-9a1b-44ae-be6a-43f08d0d0631 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-dc147938-9a1b-44ae-be6a-43f08d0d0631 {
    width: 100%;
    height: auto;
  }

  #s-dc147938-9a1b-44ae-be6a-43f08d0d0631 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shogun-image {
    
    
  }


.s-dc147938-9a1b-44ae-be6a-43f08d0d0631 .shogun-image-content {
  
    align-items: center;
  
}

.s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shogun-image {
  box-sizing: border-box;
}


.s-dc147938-9a1b-44ae-be6a-43f08d0d0631 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-dc147938-9a1b-44ae-be6a-43f08d0d0631 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-dc147938-9a1b-44ae-be6a-43f08d0d0631 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-dc147938-9a1b-44ae-be6a-43f08d0d0631 {
      --shg-aspect-ratio: calc(1272/1501); 
    }

    .s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shogun-image-container {
      position: relative;
    }

    .s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dc147938-9a1b-44ae-be6a-43f08d0d0631 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-dc147938-9a1b-44ae-be6a-43f08d0d0631 img.shogun-image,
  #s-dc147938-9a1b-44ae-be6a-43f08d0d0631 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-dc147938-9a1b-44ae-be6a-43f08d0d0631 {
    width: 100%;
    height: auto;
  }

  #s-dc147938-9a1b-44ae-be6a-43f08d0d0631 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shogun-image {
    
    
  }


.s-dc147938-9a1b-44ae-be6a-43f08d0d0631 .shogun-image-content {
  
    align-items: center;
  
}

.s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shogun-image {
  box-sizing: border-box;
}


.s-dc147938-9a1b-44ae-be6a-43f08d0d0631 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-dc147938-9a1b-44ae-be6a-43f08d0d0631 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-dc147938-9a1b-44ae-be6a-43f08d0d0631 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-dc147938-9a1b-44ae-be6a-43f08d0d0631 {
      --shg-aspect-ratio: calc(1272/1501); 
    }

    .s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shogun-image-container {
      position: relative;
    }

    .s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dc147938-9a1b-44ae-be6a-43f08d0d0631 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-dc147938-9a1b-44ae-be6a-43f08d0d0631 img.shogun-image,
  #s-dc147938-9a1b-44ae-be6a-43f08d0d0631 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-dc147938-9a1b-44ae-be6a-43f08d0d0631 {
    width: 100%;
    height: auto;
  }

  #s-dc147938-9a1b-44ae-be6a-43f08d0d0631 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shogun-image {
    
    
  }


.s-dc147938-9a1b-44ae-be6a-43f08d0d0631 .shogun-image-content {
  
    align-items: center;
  
}

.s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shogun-image {
  box-sizing: border-box;
}


.s-dc147938-9a1b-44ae-be6a-43f08d0d0631 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-dc147938-9a1b-44ae-be6a-43f08d0d0631 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-dc147938-9a1b-44ae-be6a-43f08d0d0631 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-dc147938-9a1b-44ae-be6a-43f08d0d0631 {
      --shg-aspect-ratio: calc(1272/1501); 
    }

    .s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shogun-image-container {
      position: relative;
    }

    .s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dc147938-9a1b-44ae-be6a-43f08d0d0631 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-dc147938-9a1b-44ae-be6a-43f08d0d0631 img.shogun-image,
  #s-dc147938-9a1b-44ae-be6a-43f08d0d0631 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-dc147938-9a1b-44ae-be6a-43f08d0d0631 {
    width: 100%;
    height: auto;
  }

  #s-dc147938-9a1b-44ae-be6a-43f08d0d0631 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shogun-image {
    
    
  }


.s-dc147938-9a1b-44ae-be6a-43f08d0d0631 .shogun-image-content {
  
    align-items: center;
  
}

.s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shogun-image {
  box-sizing: border-box;
}


.s-dc147938-9a1b-44ae-be6a-43f08d0d0631 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-dc147938-9a1b-44ae-be6a-43f08d0d0631 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-dc147938-9a1b-44ae-be6a-43f08d0d0631 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-dc147938-9a1b-44ae-be6a-43f08d0d0631 {
      --shg-aspect-ratio: calc(1272/1501); 
    }

    .s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shogun-image-container {
      position: relative;
    }

    .s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dc147938-9a1b-44ae-be6a-43f08d0d0631.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dc147938-9a1b-44ae-be6a-43f08d0d0631 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-19280199-0598-491b-a683-011cb22f4955 {
  max-width: 1271px;
aspect-ratio: 1271/1500;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-19280199-0598-491b-a683-011cb22f4955 {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 25px;
margin-right: 0%;
}
}@media (max-width: 767px){#s-19280199-0598-491b-a683-011cb22f4955 {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 25px;
margin-right: 0%;
}
}




  #s-19280199-0598-491b-a683-011cb22f4955 img.shogun-image,
  #s-19280199-0598-491b-a683-011cb22f4955 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-19280199-0598-491b-a683-011cb22f4955 {
    width: 100%;
    height: auto;
  }

  #s-19280199-0598-491b-a683-011cb22f4955 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-19280199-0598-491b-a683-011cb22f4955.shogun-image {
    
    
  }


.s-19280199-0598-491b-a683-011cb22f4955 .shogun-image-content {
  
    align-items: center;
  
}

.s-19280199-0598-491b-a683-011cb22f4955.shg-align-container {
  display: flex;
  justify-content: center
}

.s-19280199-0598-491b-a683-011cb22f4955.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-19280199-0598-491b-a683-011cb22f4955.shogun-image {
  box-sizing: border-box;
}


.s-19280199-0598-491b-a683-011cb22f4955 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-19280199-0598-491b-a683-011cb22f4955 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-19280199-0598-491b-a683-011cb22f4955 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-19280199-0598-491b-a683-011cb22f4955 {
      --shg-aspect-ratio: calc(1271/1500); 
    }

    .s-19280199-0598-491b-a683-011cb22f4955.shogun-image-container {
      position: relative;
    }

    .s-19280199-0598-491b-a683-011cb22f4955.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-19280199-0598-491b-a683-011cb22f4955.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-19280199-0598-491b-a683-011cb22f4955 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-19280199-0598-491b-a683-011cb22f4955 img.shogun-image,
  #s-19280199-0598-491b-a683-011cb22f4955 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-19280199-0598-491b-a683-011cb22f4955 {
    width: 100%;
    height: auto;
  }

  #s-19280199-0598-491b-a683-011cb22f4955 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-19280199-0598-491b-a683-011cb22f4955.shogun-image {
    
    
  }


.s-19280199-0598-491b-a683-011cb22f4955 .shogun-image-content {
  
    align-items: center;
  
}

.s-19280199-0598-491b-a683-011cb22f4955.shg-align-container {
  display: flex;
  justify-content: center
}

.s-19280199-0598-491b-a683-011cb22f4955.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-19280199-0598-491b-a683-011cb22f4955.shogun-image {
  box-sizing: border-box;
}


.s-19280199-0598-491b-a683-011cb22f4955 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-19280199-0598-491b-a683-011cb22f4955 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-19280199-0598-491b-a683-011cb22f4955 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-19280199-0598-491b-a683-011cb22f4955 {
      --shg-aspect-ratio: calc(1271/1500); 
    }

    .s-19280199-0598-491b-a683-011cb22f4955.shogun-image-container {
      position: relative;
    }

    .s-19280199-0598-491b-a683-011cb22f4955.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-19280199-0598-491b-a683-011cb22f4955.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-19280199-0598-491b-a683-011cb22f4955 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-19280199-0598-491b-a683-011cb22f4955 img.shogun-image,
  #s-19280199-0598-491b-a683-011cb22f4955 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-19280199-0598-491b-a683-011cb22f4955 {
    width: 100%;
    height: auto;
  }

  #s-19280199-0598-491b-a683-011cb22f4955 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-19280199-0598-491b-a683-011cb22f4955.shogun-image {
    
    
  }


.s-19280199-0598-491b-a683-011cb22f4955 .shogun-image-content {
  
    align-items: center;
  
}

.s-19280199-0598-491b-a683-011cb22f4955.shg-align-container {
  display: flex;
  justify-content: center
}

.s-19280199-0598-491b-a683-011cb22f4955.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-19280199-0598-491b-a683-011cb22f4955.shogun-image {
  box-sizing: border-box;
}


.s-19280199-0598-491b-a683-011cb22f4955 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-19280199-0598-491b-a683-011cb22f4955 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-19280199-0598-491b-a683-011cb22f4955 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-19280199-0598-491b-a683-011cb22f4955 {
      --shg-aspect-ratio: calc(1271/1500); 
    }

    .s-19280199-0598-491b-a683-011cb22f4955.shogun-image-container {
      position: relative;
    }

    .s-19280199-0598-491b-a683-011cb22f4955.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-19280199-0598-491b-a683-011cb22f4955.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-19280199-0598-491b-a683-011cb22f4955 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-19280199-0598-491b-a683-011cb22f4955 img.shogun-image,
  #s-19280199-0598-491b-a683-011cb22f4955 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-19280199-0598-491b-a683-011cb22f4955 {
    width: 100%;
    height: auto;
  }

  #s-19280199-0598-491b-a683-011cb22f4955 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-19280199-0598-491b-a683-011cb22f4955.shogun-image {
    
    
  }


.s-19280199-0598-491b-a683-011cb22f4955 .shogun-image-content {
  
    align-items: center;
  
}

.s-19280199-0598-491b-a683-011cb22f4955.shg-align-container {
  display: flex;
  justify-content: center
}

.s-19280199-0598-491b-a683-011cb22f4955.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-19280199-0598-491b-a683-011cb22f4955.shogun-image {
  box-sizing: border-box;
}


.s-19280199-0598-491b-a683-011cb22f4955 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-19280199-0598-491b-a683-011cb22f4955 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-19280199-0598-491b-a683-011cb22f4955 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-19280199-0598-491b-a683-011cb22f4955 {
      --shg-aspect-ratio: calc(1271/1500); 
    }

    .s-19280199-0598-491b-a683-011cb22f4955.shogun-image-container {
      position: relative;
    }

    .s-19280199-0598-491b-a683-011cb22f4955.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-19280199-0598-491b-a683-011cb22f4955.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-19280199-0598-491b-a683-011cb22f4955 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-19280199-0598-491b-a683-011cb22f4955 img.shogun-image,
  #s-19280199-0598-491b-a683-011cb22f4955 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-19280199-0598-491b-a683-011cb22f4955 {
    width: 100%;
    height: auto;
  }

  #s-19280199-0598-491b-a683-011cb22f4955 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-19280199-0598-491b-a683-011cb22f4955.shogun-image {
    
    
  }


.s-19280199-0598-491b-a683-011cb22f4955 .shogun-image-content {
  
    align-items: center;
  
}

.s-19280199-0598-491b-a683-011cb22f4955.shg-align-container {
  display: flex;
  justify-content: center
}

.s-19280199-0598-491b-a683-011cb22f4955.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-19280199-0598-491b-a683-011cb22f4955.shogun-image {
  box-sizing: border-box;
}


.s-19280199-0598-491b-a683-011cb22f4955 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-19280199-0598-491b-a683-011cb22f4955 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-19280199-0598-491b-a683-011cb22f4955 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-19280199-0598-491b-a683-011cb22f4955 {
      --shg-aspect-ratio: calc(1271/1500); 
    }

    .s-19280199-0598-491b-a683-011cb22f4955.shogun-image-container {
      position: relative;
    }

    .s-19280199-0598-491b-a683-011cb22f4955.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-19280199-0598-491b-a683-011cb22f4955.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-19280199-0598-491b-a683-011cb22f4955 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-d81cd687-92de-4112-825c-9f13ca47e537 {
  max-width: 1271px;
aspect-ratio: 1271/1500;
text-align: center;
}





  #s-d81cd687-92de-4112-825c-9f13ca47e537 img.shogun-image,
  #s-d81cd687-92de-4112-825c-9f13ca47e537 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d81cd687-92de-4112-825c-9f13ca47e537 {
    width: 100%;
    height: auto;
  }

  #s-d81cd687-92de-4112-825c-9f13ca47e537 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d81cd687-92de-4112-825c-9f13ca47e537.shogun-image {
    
    
  }


.s-d81cd687-92de-4112-825c-9f13ca47e537 .shogun-image-content {
  
    align-items: center;
  
}

.s-d81cd687-92de-4112-825c-9f13ca47e537.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d81cd687-92de-4112-825c-9f13ca47e537.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d81cd687-92de-4112-825c-9f13ca47e537.shogun-image {
  box-sizing: border-box;
}


.s-d81cd687-92de-4112-825c-9f13ca47e537 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-d81cd687-92de-4112-825c-9f13ca47e537 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-d81cd687-92de-4112-825c-9f13ca47e537 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-d81cd687-92de-4112-825c-9f13ca47e537 {
      --shg-aspect-ratio: calc(1271/1500); 
    }

    .s-d81cd687-92de-4112-825c-9f13ca47e537.shogun-image-container {
      position: relative;
    }

    .s-d81cd687-92de-4112-825c-9f13ca47e537.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d81cd687-92de-4112-825c-9f13ca47e537.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d81cd687-92de-4112-825c-9f13ca47e537 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-d81cd687-92de-4112-825c-9f13ca47e537 img.shogun-image,
  #s-d81cd687-92de-4112-825c-9f13ca47e537 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d81cd687-92de-4112-825c-9f13ca47e537 {
    width: 100%;
    height: auto;
  }

  #s-d81cd687-92de-4112-825c-9f13ca47e537 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d81cd687-92de-4112-825c-9f13ca47e537.shogun-image {
    
    
  }


.s-d81cd687-92de-4112-825c-9f13ca47e537 .shogun-image-content {
  
    align-items: center;
  
}

.s-d81cd687-92de-4112-825c-9f13ca47e537.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d81cd687-92de-4112-825c-9f13ca47e537.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d81cd687-92de-4112-825c-9f13ca47e537.shogun-image {
  box-sizing: border-box;
}


.s-d81cd687-92de-4112-825c-9f13ca47e537 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-d81cd687-92de-4112-825c-9f13ca47e537 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-d81cd687-92de-4112-825c-9f13ca47e537 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-d81cd687-92de-4112-825c-9f13ca47e537 {
      --shg-aspect-ratio: calc(1271/1500); 
    }

    .s-d81cd687-92de-4112-825c-9f13ca47e537.shogun-image-container {
      position: relative;
    }

    .s-d81cd687-92de-4112-825c-9f13ca47e537.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d81cd687-92de-4112-825c-9f13ca47e537.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d81cd687-92de-4112-825c-9f13ca47e537 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-d81cd687-92de-4112-825c-9f13ca47e537 img.shogun-image,
  #s-d81cd687-92de-4112-825c-9f13ca47e537 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d81cd687-92de-4112-825c-9f13ca47e537 {
    width: 100%;
    height: auto;
  }

  #s-d81cd687-92de-4112-825c-9f13ca47e537 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d81cd687-92de-4112-825c-9f13ca47e537.shogun-image {
    
    
  }


.s-d81cd687-92de-4112-825c-9f13ca47e537 .shogun-image-content {
  
    align-items: center;
  
}

.s-d81cd687-92de-4112-825c-9f13ca47e537.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d81cd687-92de-4112-825c-9f13ca47e537.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d81cd687-92de-4112-825c-9f13ca47e537.shogun-image {
  box-sizing: border-box;
}


.s-d81cd687-92de-4112-825c-9f13ca47e537 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-d81cd687-92de-4112-825c-9f13ca47e537 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-d81cd687-92de-4112-825c-9f13ca47e537 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-d81cd687-92de-4112-825c-9f13ca47e537 {
      --shg-aspect-ratio: calc(1271/1500); 
    }

    .s-d81cd687-92de-4112-825c-9f13ca47e537.shogun-image-container {
      position: relative;
    }

    .s-d81cd687-92de-4112-825c-9f13ca47e537.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d81cd687-92de-4112-825c-9f13ca47e537.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d81cd687-92de-4112-825c-9f13ca47e537 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-d81cd687-92de-4112-825c-9f13ca47e537 img.shogun-image,
  #s-d81cd687-92de-4112-825c-9f13ca47e537 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d81cd687-92de-4112-825c-9f13ca47e537 {
    width: 100%;
    height: auto;
  }

  #s-d81cd687-92de-4112-825c-9f13ca47e537 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d81cd687-92de-4112-825c-9f13ca47e537.shogun-image {
    
    
  }


.s-d81cd687-92de-4112-825c-9f13ca47e537 .shogun-image-content {
  
    align-items: center;
  
}

.s-d81cd687-92de-4112-825c-9f13ca47e537.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d81cd687-92de-4112-825c-9f13ca47e537.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d81cd687-92de-4112-825c-9f13ca47e537.shogun-image {
  box-sizing: border-box;
}


.s-d81cd687-92de-4112-825c-9f13ca47e537 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-d81cd687-92de-4112-825c-9f13ca47e537 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-d81cd687-92de-4112-825c-9f13ca47e537 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-d81cd687-92de-4112-825c-9f13ca47e537 {
      --shg-aspect-ratio: calc(1271/1500); 
    }

    .s-d81cd687-92de-4112-825c-9f13ca47e537.shogun-image-container {
      position: relative;
    }

    .s-d81cd687-92de-4112-825c-9f13ca47e537.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d81cd687-92de-4112-825c-9f13ca47e537.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d81cd687-92de-4112-825c-9f13ca47e537 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-d81cd687-92de-4112-825c-9f13ca47e537 img.shogun-image,
  #s-d81cd687-92de-4112-825c-9f13ca47e537 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d81cd687-92de-4112-825c-9f13ca47e537 {
    width: 100%;
    height: auto;
  }

  #s-d81cd687-92de-4112-825c-9f13ca47e537 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d81cd687-92de-4112-825c-9f13ca47e537.shogun-image {
    
    
  }


.s-d81cd687-92de-4112-825c-9f13ca47e537 .shogun-image-content {
  
    align-items: center;
  
}

.s-d81cd687-92de-4112-825c-9f13ca47e537.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d81cd687-92de-4112-825c-9f13ca47e537.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d81cd687-92de-4112-825c-9f13ca47e537.shogun-image {
  box-sizing: border-box;
}


.s-d81cd687-92de-4112-825c-9f13ca47e537 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-d81cd687-92de-4112-825c-9f13ca47e537 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-d81cd687-92de-4112-825c-9f13ca47e537 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-d81cd687-92de-4112-825c-9f13ca47e537 {
      --shg-aspect-ratio: calc(1271/1500); 
    }

    .s-d81cd687-92de-4112-825c-9f13ca47e537.shogun-image-container {
      position: relative;
    }

    .s-d81cd687-92de-4112-825c-9f13ca47e537.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d81cd687-92de-4112-825c-9f13ca47e537.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d81cd687-92de-4112-825c-9f13ca47e537 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-75652003-0806-4ad0-8d8e-448ee66eeca6 {
  margin-top: 0px;
margin-bottom: 20px;
max-width: 4000px;
aspect-ratio: 4000/333;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-75652003-0806-4ad0-8d8e-448ee66eeca6 {
  display: none;
}
#s-75652003-0806-4ad0-8d8e-448ee66eeca6, #wrap-s-75652003-0806-4ad0-8d8e-448ee66eeca6 { display: none !important; }}@media (max-width: 767px){#s-75652003-0806-4ad0-8d8e-448ee66eeca6 {
  display: none;
}
#s-75652003-0806-4ad0-8d8e-448ee66eeca6, #wrap-s-75652003-0806-4ad0-8d8e-448ee66eeca6 { display: none !important; }}




  #s-75652003-0806-4ad0-8d8e-448ee66eeca6 img.shogun-image,
  #s-75652003-0806-4ad0-8d8e-448ee66eeca6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-75652003-0806-4ad0-8d8e-448ee66eeca6 {
    width: 100%;
    height: auto;
  }

  #s-75652003-0806-4ad0-8d8e-448ee66eeca6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-75652003-0806-4ad0-8d8e-448ee66eeca6.shogun-image {
    
    
  }


.s-75652003-0806-4ad0-8d8e-448ee66eeca6 .shogun-image-content {
  
    align-items: center;
  
}

.s-75652003-0806-4ad0-8d8e-448ee66eeca6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75652003-0806-4ad0-8d8e-448ee66eeca6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75652003-0806-4ad0-8d8e-448ee66eeca6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-75652003-0806-4ad0-8d8e-448ee66eeca6 {
      --shg-aspect-ratio: calc(4000/333); 
    }

    .s-75652003-0806-4ad0-8d8e-448ee66eeca6.shogun-image-container {
      position: relative;
    }

    .s-75652003-0806-4ad0-8d8e-448ee66eeca6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75652003-0806-4ad0-8d8e-448ee66eeca6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75652003-0806-4ad0-8d8e-448ee66eeca6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-75652003-0806-4ad0-8d8e-448ee66eeca6 img.shogun-image,
  #s-75652003-0806-4ad0-8d8e-448ee66eeca6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-75652003-0806-4ad0-8d8e-448ee66eeca6 {
    width: 100%;
    height: auto;
  }

  #s-75652003-0806-4ad0-8d8e-448ee66eeca6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-75652003-0806-4ad0-8d8e-448ee66eeca6.shogun-image {
    
    
  }


.s-75652003-0806-4ad0-8d8e-448ee66eeca6 .shogun-image-content {
  
    align-items: center;
  
}

.s-75652003-0806-4ad0-8d8e-448ee66eeca6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75652003-0806-4ad0-8d8e-448ee66eeca6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75652003-0806-4ad0-8d8e-448ee66eeca6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-75652003-0806-4ad0-8d8e-448ee66eeca6 {
      --shg-aspect-ratio: calc(4000/333); 
    }

    .s-75652003-0806-4ad0-8d8e-448ee66eeca6.shogun-image-container {
      position: relative;
    }

    .s-75652003-0806-4ad0-8d8e-448ee66eeca6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75652003-0806-4ad0-8d8e-448ee66eeca6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75652003-0806-4ad0-8d8e-448ee66eeca6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-75652003-0806-4ad0-8d8e-448ee66eeca6 img.shogun-image,
  #s-75652003-0806-4ad0-8d8e-448ee66eeca6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-75652003-0806-4ad0-8d8e-448ee66eeca6 {
    width: 100%;
    height: auto;
  }

  #s-75652003-0806-4ad0-8d8e-448ee66eeca6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-75652003-0806-4ad0-8d8e-448ee66eeca6.shogun-image {
    
    
  }


.s-75652003-0806-4ad0-8d8e-448ee66eeca6 .shogun-image-content {
  
    align-items: center;
  
}

.s-75652003-0806-4ad0-8d8e-448ee66eeca6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75652003-0806-4ad0-8d8e-448ee66eeca6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75652003-0806-4ad0-8d8e-448ee66eeca6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-75652003-0806-4ad0-8d8e-448ee66eeca6 {
      --shg-aspect-ratio: calc(4000/333); 
    }

    .s-75652003-0806-4ad0-8d8e-448ee66eeca6.shogun-image-container {
      position: relative;
    }

    .s-75652003-0806-4ad0-8d8e-448ee66eeca6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75652003-0806-4ad0-8d8e-448ee66eeca6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75652003-0806-4ad0-8d8e-448ee66eeca6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-75652003-0806-4ad0-8d8e-448ee66eeca6 img.shogun-image,
  #s-75652003-0806-4ad0-8d8e-448ee66eeca6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-75652003-0806-4ad0-8d8e-448ee66eeca6 {
    width: 100%;
    height: auto;
  }

  #s-75652003-0806-4ad0-8d8e-448ee66eeca6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-75652003-0806-4ad0-8d8e-448ee66eeca6.shogun-image {
    
    
  }


.s-75652003-0806-4ad0-8d8e-448ee66eeca6 .shogun-image-content {
  
    align-items: center;
  
}

.s-75652003-0806-4ad0-8d8e-448ee66eeca6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75652003-0806-4ad0-8d8e-448ee66eeca6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75652003-0806-4ad0-8d8e-448ee66eeca6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-75652003-0806-4ad0-8d8e-448ee66eeca6 {
      --shg-aspect-ratio: calc(4000/333); 
    }

    .s-75652003-0806-4ad0-8d8e-448ee66eeca6.shogun-image-container {
      position: relative;
    }

    .s-75652003-0806-4ad0-8d8e-448ee66eeca6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75652003-0806-4ad0-8d8e-448ee66eeca6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75652003-0806-4ad0-8d8e-448ee66eeca6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-75652003-0806-4ad0-8d8e-448ee66eeca6 img.shogun-image,
  #s-75652003-0806-4ad0-8d8e-448ee66eeca6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-75652003-0806-4ad0-8d8e-448ee66eeca6 {
    width: 100%;
    height: auto;
  }

  #s-75652003-0806-4ad0-8d8e-448ee66eeca6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-75652003-0806-4ad0-8d8e-448ee66eeca6.shogun-image {
    
    
  }


.s-75652003-0806-4ad0-8d8e-448ee66eeca6 .shogun-image-content {
  
    align-items: center;
  
}

.s-75652003-0806-4ad0-8d8e-448ee66eeca6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75652003-0806-4ad0-8d8e-448ee66eeca6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75652003-0806-4ad0-8d8e-448ee66eeca6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-75652003-0806-4ad0-8d8e-448ee66eeca6 {
      --shg-aspect-ratio: calc(4000/333); 
    }

    .s-75652003-0806-4ad0-8d8e-448ee66eeca6.shogun-image-container {
      position: relative;
    }

    .s-75652003-0806-4ad0-8d8e-448ee66eeca6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75652003-0806-4ad0-8d8e-448ee66eeca6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75652003-0806-4ad0-8d8e-448ee66eeca6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-f0f1f9e5-34ce-4746-8d30-3539f4a0175f {
  min-height: 50px;
}








#s-f0f1f9e5-34ce-4746-8d30-3539f4a0175f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f0f1f9e5-34ce-4746-8d30-3539f4a0175f.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-6f3bc374-9d1e-4d67-8e88-eaea50cc0174"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6f3bc374-9d1e-4d67-8e88-eaea50cc0174"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 11.0px);
}

[id="s-6f3bc374-9d1e-4d67-8e88-eaea50cc0174"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 11.0px);
}

}

@media (min-width: 992px) {
[id="s-6f3bc374-9d1e-4d67-8e88-eaea50cc0174"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 11.0px);
}

[id="s-6f3bc374-9d1e-4d67-8e88-eaea50cc0174"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 11.0px);
}

}

@media (min-width: 1200px) {
[id="s-6f3bc374-9d1e-4d67-8e88-eaea50cc0174"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 11.0px);
}

[id="s-6f3bc374-9d1e-4d67-8e88-eaea50cc0174"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 11.0px);
}

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

#s-c0250afc-aea4-47b7-a280-c6db63f3e82a {
  padding-top: 0px;
padding-bottom: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-c0250afc-aea4-47b7-a280-c6db63f3e82a {
  margin-bottom: 0px;
}
}
#s-c0250afc-aea4-47b7-a280-c6db63f3e82a .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-c0250afc-aea4-47b7-a280-c6db63f3e82a .shg-sld-nav-button.shg-sld-left,
#s-c0250afc-aea4-47b7-a280-c6db63f3e82a .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 {
  max-width: 2583px;
aspect-ratio: 2583/1500;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 {
  margin-bottom: 20px;
}
}@media (max-width: 767px){#s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 {
  margin-bottom: 20px;
}
}




  #s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 img.shogun-image,
  #s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 {
    width: 100%;
    height: auto;
  }

  #s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shogun-image {
    
    
  }


.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 .shogun-image-content {
  
    align-items: center;
  
}

.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shogun-image {
  box-sizing: border-box;
}


.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 {
      --shg-aspect-ratio: calc(2583/1500); 
    }

    .s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shogun-image-container {
      position: relative;
    }

    .s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 img.shogun-image,
  #s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 {
    width: 100%;
    height: auto;
  }

  #s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shogun-image {
    
    
  }


.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 .shogun-image-content {
  
    align-items: center;
  
}

.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shogun-image {
  box-sizing: border-box;
}


.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 {
      --shg-aspect-ratio: calc(2583/1500); 
    }

    .s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shogun-image-container {
      position: relative;
    }

    .s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 img.shogun-image,
  #s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 {
    width: 100%;
    height: auto;
  }

  #s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shogun-image {
    
    
  }


.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 .shogun-image-content {
  
    align-items: center;
  
}

.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shogun-image {
  box-sizing: border-box;
}


.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 {
      --shg-aspect-ratio: calc(2583/1500); 
    }

    .s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shogun-image-container {
      position: relative;
    }

    .s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 img.shogun-image,
  #s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 {
    width: 100%;
    height: auto;
  }

  #s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shogun-image {
    
    
  }


.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 .shogun-image-content {
  
    align-items: center;
  
}

.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shogun-image {
  box-sizing: border-box;
}


.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 {
      --shg-aspect-ratio: calc(2583/1500); 
    }

    .s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shogun-image-container {
      position: relative;
    }

    .s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 img.shogun-image,
  #s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 {
    width: 100%;
    height: auto;
  }

  #s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shogun-image {
    
    
  }


.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 .shogun-image-content {
  
    align-items: center;
  
}

.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shogun-image {
  box-sizing: border-box;
}


.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 {
      --shg-aspect-ratio: calc(2583/1500); 
    }

    .s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shogun-image-container {
      position: relative;
    }

    .s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b653a316-de9e-4c34-8f2f-afba4a2e2f57.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b653a316-de9e-4c34-8f2f-afba4a2e2f57 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-939c0fce-69af-4846-b41a-e1f67fe2a35d {
  max-width: 2583px;
aspect-ratio: 2583/1500;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-939c0fce-69af-4846-b41a-e1f67fe2a35d {
  margin-top: 0px;
margin-bottom: 20px;
}
}@media (max-width: 767px){#s-939c0fce-69af-4846-b41a-e1f67fe2a35d {
  margin-bottom: 20px;
}
}




  #s-939c0fce-69af-4846-b41a-e1f67fe2a35d img.shogun-image,
  #s-939c0fce-69af-4846-b41a-e1f67fe2a35d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-939c0fce-69af-4846-b41a-e1f67fe2a35d {
    width: 100%;
    height: auto;
  }

  #s-939c0fce-69af-4846-b41a-e1f67fe2a35d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shogun-image {
    
    
  }


.s-939c0fce-69af-4846-b41a-e1f67fe2a35d .shogun-image-content {
  
    align-items: center;
  
}

.s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shogun-image {
  box-sizing: border-box;
}


.s-939c0fce-69af-4846-b41a-e1f67fe2a35d .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-939c0fce-69af-4846-b41a-e1f67fe2a35d .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-939c0fce-69af-4846-b41a-e1f67fe2a35d .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-939c0fce-69af-4846-b41a-e1f67fe2a35d {
      --shg-aspect-ratio: calc(2583/1500); 
    }

    .s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shogun-image-container {
      position: relative;
    }

    .s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-939c0fce-69af-4846-b41a-e1f67fe2a35d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-939c0fce-69af-4846-b41a-e1f67fe2a35d img.shogun-image,
  #s-939c0fce-69af-4846-b41a-e1f67fe2a35d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-939c0fce-69af-4846-b41a-e1f67fe2a35d {
    width: 100%;
    height: auto;
  }

  #s-939c0fce-69af-4846-b41a-e1f67fe2a35d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shogun-image {
    
    
  }


.s-939c0fce-69af-4846-b41a-e1f67fe2a35d .shogun-image-content {
  
    align-items: center;
  
}

.s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shogun-image {
  box-sizing: border-box;
}


.s-939c0fce-69af-4846-b41a-e1f67fe2a35d .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-939c0fce-69af-4846-b41a-e1f67fe2a35d .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-939c0fce-69af-4846-b41a-e1f67fe2a35d .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-939c0fce-69af-4846-b41a-e1f67fe2a35d {
      --shg-aspect-ratio: calc(2583/1500); 
    }

    .s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shogun-image-container {
      position: relative;
    }

    .s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-939c0fce-69af-4846-b41a-e1f67fe2a35d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-939c0fce-69af-4846-b41a-e1f67fe2a35d img.shogun-image,
  #s-939c0fce-69af-4846-b41a-e1f67fe2a35d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-939c0fce-69af-4846-b41a-e1f67fe2a35d {
    width: 100%;
    height: auto;
  }

  #s-939c0fce-69af-4846-b41a-e1f67fe2a35d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shogun-image {
    
    
  }


.s-939c0fce-69af-4846-b41a-e1f67fe2a35d .shogun-image-content {
  
    align-items: center;
  
}

.s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shogun-image {
  box-sizing: border-box;
}


.s-939c0fce-69af-4846-b41a-e1f67fe2a35d .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-939c0fce-69af-4846-b41a-e1f67fe2a35d .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-939c0fce-69af-4846-b41a-e1f67fe2a35d .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-939c0fce-69af-4846-b41a-e1f67fe2a35d {
      --shg-aspect-ratio: calc(2583/1500); 
    }

    .s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shogun-image-container {
      position: relative;
    }

    .s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-939c0fce-69af-4846-b41a-e1f67fe2a35d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-939c0fce-69af-4846-b41a-e1f67fe2a35d img.shogun-image,
  #s-939c0fce-69af-4846-b41a-e1f67fe2a35d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-939c0fce-69af-4846-b41a-e1f67fe2a35d {
    width: 100%;
    height: auto;
  }

  #s-939c0fce-69af-4846-b41a-e1f67fe2a35d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shogun-image {
    
    
  }


.s-939c0fce-69af-4846-b41a-e1f67fe2a35d .shogun-image-content {
  
    align-items: center;
  
}

.s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shogun-image {
  box-sizing: border-box;
}


.s-939c0fce-69af-4846-b41a-e1f67fe2a35d .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-939c0fce-69af-4846-b41a-e1f67fe2a35d .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-939c0fce-69af-4846-b41a-e1f67fe2a35d .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-939c0fce-69af-4846-b41a-e1f67fe2a35d {
      --shg-aspect-ratio: calc(2583/1500); 
    }

    .s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shogun-image-container {
      position: relative;
    }

    .s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-939c0fce-69af-4846-b41a-e1f67fe2a35d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-939c0fce-69af-4846-b41a-e1f67fe2a35d img.shogun-image,
  #s-939c0fce-69af-4846-b41a-e1f67fe2a35d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-939c0fce-69af-4846-b41a-e1f67fe2a35d {
    width: 100%;
    height: auto;
  }

  #s-939c0fce-69af-4846-b41a-e1f67fe2a35d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shogun-image {
    
    
  }


.s-939c0fce-69af-4846-b41a-e1f67fe2a35d .shogun-image-content {
  
    align-items: center;
  
}

.s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shogun-image {
  box-sizing: border-box;
}


.s-939c0fce-69af-4846-b41a-e1f67fe2a35d .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-939c0fce-69af-4846-b41a-e1f67fe2a35d .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-939c0fce-69af-4846-b41a-e1f67fe2a35d .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-939c0fce-69af-4846-b41a-e1f67fe2a35d {
      --shg-aspect-ratio: calc(2583/1500); 
    }

    .s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shogun-image-container {
      position: relative;
    }

    .s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-939c0fce-69af-4846-b41a-e1f67fe2a35d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-939c0fce-69af-4846-b41a-e1f67fe2a35d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-674517f8-3f36-468c-9454-3907425646be {
  max-width: 2583px;
aspect-ratio: 2583/1500;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-674517f8-3f36-468c-9454-3907425646be {
  margin-bottom: 20px;
}
}@media (max-width: 767px){#s-674517f8-3f36-468c-9454-3907425646be {
  margin-bottom: 20px;
}
}




  #s-674517f8-3f36-468c-9454-3907425646be img.shogun-image,
  #s-674517f8-3f36-468c-9454-3907425646be .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-674517f8-3f36-468c-9454-3907425646be {
    width: 100%;
    height: auto;
  }

  #s-674517f8-3f36-468c-9454-3907425646be img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-674517f8-3f36-468c-9454-3907425646be.shogun-image {
    
    
  }


.s-674517f8-3f36-468c-9454-3907425646be .shogun-image-content {
  
    align-items: center;
  
}

.s-674517f8-3f36-468c-9454-3907425646be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-674517f8-3f36-468c-9454-3907425646be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-674517f8-3f36-468c-9454-3907425646be.shogun-image {
  box-sizing: border-box;
}


.s-674517f8-3f36-468c-9454-3907425646be .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-674517f8-3f36-468c-9454-3907425646be .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-674517f8-3f36-468c-9454-3907425646be .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-674517f8-3f36-468c-9454-3907425646be {
      --shg-aspect-ratio: calc(2583/1500); 
    }

    .s-674517f8-3f36-468c-9454-3907425646be.shogun-image-container {
      position: relative;
    }

    .s-674517f8-3f36-468c-9454-3907425646be.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-674517f8-3f36-468c-9454-3907425646be.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-674517f8-3f36-468c-9454-3907425646be img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-674517f8-3f36-468c-9454-3907425646be img.shogun-image,
  #s-674517f8-3f36-468c-9454-3907425646be .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-674517f8-3f36-468c-9454-3907425646be {
    width: 100%;
    height: auto;
  }

  #s-674517f8-3f36-468c-9454-3907425646be img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-674517f8-3f36-468c-9454-3907425646be.shogun-image {
    
    
  }


.s-674517f8-3f36-468c-9454-3907425646be .shogun-image-content {
  
    align-items: center;
  
}

.s-674517f8-3f36-468c-9454-3907425646be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-674517f8-3f36-468c-9454-3907425646be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-674517f8-3f36-468c-9454-3907425646be.shogun-image {
  box-sizing: border-box;
}


.s-674517f8-3f36-468c-9454-3907425646be .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-674517f8-3f36-468c-9454-3907425646be .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-674517f8-3f36-468c-9454-3907425646be .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-674517f8-3f36-468c-9454-3907425646be {
      --shg-aspect-ratio: calc(2583/1500); 
    }

    .s-674517f8-3f36-468c-9454-3907425646be.shogun-image-container {
      position: relative;
    }

    .s-674517f8-3f36-468c-9454-3907425646be.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-674517f8-3f36-468c-9454-3907425646be.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-674517f8-3f36-468c-9454-3907425646be img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-674517f8-3f36-468c-9454-3907425646be img.shogun-image,
  #s-674517f8-3f36-468c-9454-3907425646be .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-674517f8-3f36-468c-9454-3907425646be {
    width: 100%;
    height: auto;
  }

  #s-674517f8-3f36-468c-9454-3907425646be img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-674517f8-3f36-468c-9454-3907425646be.shogun-image {
    
    
  }


.s-674517f8-3f36-468c-9454-3907425646be .shogun-image-content {
  
    align-items: center;
  
}

.s-674517f8-3f36-468c-9454-3907425646be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-674517f8-3f36-468c-9454-3907425646be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-674517f8-3f36-468c-9454-3907425646be.shogun-image {
  box-sizing: border-box;
}


.s-674517f8-3f36-468c-9454-3907425646be .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-674517f8-3f36-468c-9454-3907425646be .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-674517f8-3f36-468c-9454-3907425646be .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-674517f8-3f36-468c-9454-3907425646be {
      --shg-aspect-ratio: calc(2583/1500); 
    }

    .s-674517f8-3f36-468c-9454-3907425646be.shogun-image-container {
      position: relative;
    }

    .s-674517f8-3f36-468c-9454-3907425646be.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-674517f8-3f36-468c-9454-3907425646be.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-674517f8-3f36-468c-9454-3907425646be img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-674517f8-3f36-468c-9454-3907425646be img.shogun-image,
  #s-674517f8-3f36-468c-9454-3907425646be .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-674517f8-3f36-468c-9454-3907425646be {
    width: 100%;
    height: auto;
  }

  #s-674517f8-3f36-468c-9454-3907425646be img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-674517f8-3f36-468c-9454-3907425646be.shogun-image {
    
    
  }


.s-674517f8-3f36-468c-9454-3907425646be .shogun-image-content {
  
    align-items: center;
  
}

.s-674517f8-3f36-468c-9454-3907425646be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-674517f8-3f36-468c-9454-3907425646be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-674517f8-3f36-468c-9454-3907425646be.shogun-image {
  box-sizing: border-box;
}


.s-674517f8-3f36-468c-9454-3907425646be .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-674517f8-3f36-468c-9454-3907425646be .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-674517f8-3f36-468c-9454-3907425646be .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-674517f8-3f36-468c-9454-3907425646be {
      --shg-aspect-ratio: calc(2583/1500); 
    }

    .s-674517f8-3f36-468c-9454-3907425646be.shogun-image-container {
      position: relative;
    }

    .s-674517f8-3f36-468c-9454-3907425646be.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-674517f8-3f36-468c-9454-3907425646be.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-674517f8-3f36-468c-9454-3907425646be img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-674517f8-3f36-468c-9454-3907425646be img.shogun-image,
  #s-674517f8-3f36-468c-9454-3907425646be .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-674517f8-3f36-468c-9454-3907425646be {
    width: 100%;
    height: auto;
  }

  #s-674517f8-3f36-468c-9454-3907425646be img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-674517f8-3f36-468c-9454-3907425646be.shogun-image {
    
    
  }


.s-674517f8-3f36-468c-9454-3907425646be .shogun-image-content {
  
    align-items: center;
  
}

.s-674517f8-3f36-468c-9454-3907425646be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-674517f8-3f36-468c-9454-3907425646be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-674517f8-3f36-468c-9454-3907425646be.shogun-image {
  box-sizing: border-box;
}


.s-674517f8-3f36-468c-9454-3907425646be .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-674517f8-3f36-468c-9454-3907425646be .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-674517f8-3f36-468c-9454-3907425646be .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-674517f8-3f36-468c-9454-3907425646be {
      --shg-aspect-ratio: calc(2583/1500); 
    }

    .s-674517f8-3f36-468c-9454-3907425646be.shogun-image-container {
      position: relative;
    }

    .s-674517f8-3f36-468c-9454-3907425646be.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-674517f8-3f36-468c-9454-3907425646be.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-674517f8-3f36-468c-9454-3907425646be img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 {
  max-width: 1271px;
aspect-ratio: 1271/1500;
text-align: center;
}





  #s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 img.shogun-image,
  #s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 {
    width: 100%;
    height: auto;
  }

  #s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shogun-image {
    
    
  }


.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 .shogun-image-content {
  
    align-items: center;
  
}

.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shogun-image {
  box-sizing: border-box;
}


.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 {
      --shg-aspect-ratio: calc(1271/1500); 
    }

    .s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shogun-image-container {
      position: relative;
    }

    .s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 img.shogun-image,
  #s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 {
    width: 100%;
    height: auto;
  }

  #s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shogun-image {
    
    
  }


.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 .shogun-image-content {
  
    align-items: center;
  
}

.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shogun-image {
  box-sizing: border-box;
}


.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 {
      --shg-aspect-ratio: calc(1271/1500); 
    }

    .s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shogun-image-container {
      position: relative;
    }

    .s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 img.shogun-image,
  #s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 {
    width: 100%;
    height: auto;
  }

  #s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shogun-image {
    
    
  }


.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 .shogun-image-content {
  
    align-items: center;
  
}

.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shogun-image {
  box-sizing: border-box;
}


.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 {
      --shg-aspect-ratio: calc(1271/1500); 
    }

    .s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shogun-image-container {
      position: relative;
    }

    .s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 img.shogun-image,
  #s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 {
    width: 100%;
    height: auto;
  }

  #s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shogun-image {
    
    
  }


.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 .shogun-image-content {
  
    align-items: center;
  
}

.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shogun-image {
  box-sizing: border-box;
}


.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 {
      --shg-aspect-ratio: calc(1271/1500); 
    }

    .s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shogun-image-container {
      position: relative;
    }

    .s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 img.shogun-image,
  #s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 {
    width: 100%;
    height: auto;
  }

  #s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shogun-image {
    
    
  }


.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 .shogun-image-content {
  
    align-items: center;
  
}

.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shogun-image {
  box-sizing: border-box;
}


.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 {
      --shg-aspect-ratio: calc(1271/1500); 
    }

    .s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shogun-image-container {
      position: relative;
    }

    .s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f5505e88-2ea2-4f5b-b58a-4c16980b1c66 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-068246c9-c10d-4b9a-861b-34f214cfddf9 {
  min-height: 50px;
}








#s-068246c9-c10d-4b9a-861b-34f214cfddf9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-068246c9-c10d-4b9a-861b-34f214cfddf9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5afc09db-53d4-468f-bb5c-b9641ae27479 {
  margin-top: 25px;
margin-left: 7%;
margin-bottom: 25px;
margin-right: 7%;
}

@media (min-width: 0px) {
[id="s-5afc09db-53d4-468f-bb5c-b9641ae27479"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5afc09db-53d4-468f-bb5c-b9641ae27479"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 24.0px);
}

}

@media (min-width: 992px) {
[id="s-5afc09db-53d4-468f-bb5c-b9641ae27479"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 24.0px);
}

}

@media (min-width: 1200px) {
[id="s-5afc09db-53d4-468f-bb5c-b9641ae27479"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 24.0px);
}

}

#s-78663065-b2f4-4f41-af68-c8b6eae9efc0 {
  max-width: 1042px;
aspect-ratio: 1042/1354;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-78663065-b2f4-4f41-af68-c8b6eae9efc0 {
  margin-top: 0px;
margin-bottom: 25px;
}
}@media (max-width: 767px){#s-78663065-b2f4-4f41-af68-c8b6eae9efc0 {
  margin-bottom: 25px;
}
}




  #s-78663065-b2f4-4f41-af68-c8b6eae9efc0 img.shogun-image,
  #s-78663065-b2f4-4f41-af68-c8b6eae9efc0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-78663065-b2f4-4f41-af68-c8b6eae9efc0 {
    width: 100%;
    height: auto;
  }

  #s-78663065-b2f4-4f41-af68-c8b6eae9efc0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shogun-image {
    
    
  }


.s-78663065-b2f4-4f41-af68-c8b6eae9efc0 .shogun-image-content {
  
    align-items: center;
  
}

.s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shogun-image {
  box-sizing: border-box;
}


.s-78663065-b2f4-4f41-af68-c8b6eae9efc0 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-78663065-b2f4-4f41-af68-c8b6eae9efc0 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-78663065-b2f4-4f41-af68-c8b6eae9efc0 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-78663065-b2f4-4f41-af68-c8b6eae9efc0 {
      --shg-aspect-ratio: calc(1042/1354); 
    }

    .s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shogun-image-container {
      position: relative;
    }

    .s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-78663065-b2f4-4f41-af68-c8b6eae9efc0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-78663065-b2f4-4f41-af68-c8b6eae9efc0 img.shogun-image,
  #s-78663065-b2f4-4f41-af68-c8b6eae9efc0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-78663065-b2f4-4f41-af68-c8b6eae9efc0 {
    width: 100%;
    height: auto;
  }

  #s-78663065-b2f4-4f41-af68-c8b6eae9efc0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shogun-image {
    
    
  }


.s-78663065-b2f4-4f41-af68-c8b6eae9efc0 .shogun-image-content {
  
    align-items: center;
  
}

.s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shogun-image {
  box-sizing: border-box;
}


.s-78663065-b2f4-4f41-af68-c8b6eae9efc0 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-78663065-b2f4-4f41-af68-c8b6eae9efc0 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-78663065-b2f4-4f41-af68-c8b6eae9efc0 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-78663065-b2f4-4f41-af68-c8b6eae9efc0 {
      --shg-aspect-ratio: calc(1042/1354); 
    }

    .s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shogun-image-container {
      position: relative;
    }

    .s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-78663065-b2f4-4f41-af68-c8b6eae9efc0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-78663065-b2f4-4f41-af68-c8b6eae9efc0 img.shogun-image,
  #s-78663065-b2f4-4f41-af68-c8b6eae9efc0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-78663065-b2f4-4f41-af68-c8b6eae9efc0 {
    width: 100%;
    height: auto;
  }

  #s-78663065-b2f4-4f41-af68-c8b6eae9efc0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shogun-image {
    
    
  }


.s-78663065-b2f4-4f41-af68-c8b6eae9efc0 .shogun-image-content {
  
    align-items: center;
  
}

.s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shogun-image {
  box-sizing: border-box;
}


.s-78663065-b2f4-4f41-af68-c8b6eae9efc0 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-78663065-b2f4-4f41-af68-c8b6eae9efc0 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-78663065-b2f4-4f41-af68-c8b6eae9efc0 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-78663065-b2f4-4f41-af68-c8b6eae9efc0 {
      --shg-aspect-ratio: calc(1042/1354); 
    }

    .s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shogun-image-container {
      position: relative;
    }

    .s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-78663065-b2f4-4f41-af68-c8b6eae9efc0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-78663065-b2f4-4f41-af68-c8b6eae9efc0 img.shogun-image,
  #s-78663065-b2f4-4f41-af68-c8b6eae9efc0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-78663065-b2f4-4f41-af68-c8b6eae9efc0 {
    width: 100%;
    height: auto;
  }

  #s-78663065-b2f4-4f41-af68-c8b6eae9efc0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shogun-image {
    
    
  }


.s-78663065-b2f4-4f41-af68-c8b6eae9efc0 .shogun-image-content {
  
    align-items: center;
  
}

.s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shogun-image {
  box-sizing: border-box;
}


.s-78663065-b2f4-4f41-af68-c8b6eae9efc0 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-78663065-b2f4-4f41-af68-c8b6eae9efc0 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-78663065-b2f4-4f41-af68-c8b6eae9efc0 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-78663065-b2f4-4f41-af68-c8b6eae9efc0 {
      --shg-aspect-ratio: calc(1042/1354); 
    }

    .s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shogun-image-container {
      position: relative;
    }

    .s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-78663065-b2f4-4f41-af68-c8b6eae9efc0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-78663065-b2f4-4f41-af68-c8b6eae9efc0 img.shogun-image,
  #s-78663065-b2f4-4f41-af68-c8b6eae9efc0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-78663065-b2f4-4f41-af68-c8b6eae9efc0 {
    width: 100%;
    height: auto;
  }

  #s-78663065-b2f4-4f41-af68-c8b6eae9efc0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shogun-image {
    
    
  }


.s-78663065-b2f4-4f41-af68-c8b6eae9efc0 .shogun-image-content {
  
    align-items: center;
  
}

.s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shogun-image {
  box-sizing: border-box;
}


.s-78663065-b2f4-4f41-af68-c8b6eae9efc0 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-78663065-b2f4-4f41-af68-c8b6eae9efc0 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-78663065-b2f4-4f41-af68-c8b6eae9efc0 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-78663065-b2f4-4f41-af68-c8b6eae9efc0 {
      --shg-aspect-ratio: calc(1042/1354); 
    }

    .s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shogun-image-container {
      position: relative;
    }

    .s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-78663065-b2f4-4f41-af68-c8b6eae9efc0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-78663065-b2f4-4f41-af68-c8b6eae9efc0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-73dfbbf5-0e1c-454a-acf6-75be58bea352 {
  max-width: 1042px;
aspect-ratio: 1042/1354;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-73dfbbf5-0e1c-454a-acf6-75be58bea352 {
  margin-bottom: 25px;
}
}@media (max-width: 767px){#s-73dfbbf5-0e1c-454a-acf6-75be58bea352 {
  margin-top: 0px;
margin-bottom: 25px;
}
}




  #s-73dfbbf5-0e1c-454a-acf6-75be58bea352 img.shogun-image,
  #s-73dfbbf5-0e1c-454a-acf6-75be58bea352 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-73dfbbf5-0e1c-454a-acf6-75be58bea352 {
    width: 100%;
    height: auto;
  }

  #s-73dfbbf5-0e1c-454a-acf6-75be58bea352 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shogun-image {
    
    
  }


.s-73dfbbf5-0e1c-454a-acf6-75be58bea352 .shogun-image-content {
  
    align-items: center;
  
}

.s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shogun-image {
  box-sizing: border-box;
}


.s-73dfbbf5-0e1c-454a-acf6-75be58bea352 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-73dfbbf5-0e1c-454a-acf6-75be58bea352 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-73dfbbf5-0e1c-454a-acf6-75be58bea352 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-73dfbbf5-0e1c-454a-acf6-75be58bea352 {
      --shg-aspect-ratio: calc(1042/1354); 
    }

    .s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shogun-image-container {
      position: relative;
    }

    .s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-73dfbbf5-0e1c-454a-acf6-75be58bea352 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-73dfbbf5-0e1c-454a-acf6-75be58bea352 img.shogun-image,
  #s-73dfbbf5-0e1c-454a-acf6-75be58bea352 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-73dfbbf5-0e1c-454a-acf6-75be58bea352 {
    width: 100%;
    height: auto;
  }

  #s-73dfbbf5-0e1c-454a-acf6-75be58bea352 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shogun-image {
    
    
  }


.s-73dfbbf5-0e1c-454a-acf6-75be58bea352 .shogun-image-content {
  
    align-items: center;
  
}

.s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shogun-image {
  box-sizing: border-box;
}


.s-73dfbbf5-0e1c-454a-acf6-75be58bea352 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-73dfbbf5-0e1c-454a-acf6-75be58bea352 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-73dfbbf5-0e1c-454a-acf6-75be58bea352 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-73dfbbf5-0e1c-454a-acf6-75be58bea352 {
      --shg-aspect-ratio: calc(1042/1354); 
    }

    .s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shogun-image-container {
      position: relative;
    }

    .s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-73dfbbf5-0e1c-454a-acf6-75be58bea352 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-73dfbbf5-0e1c-454a-acf6-75be58bea352 img.shogun-image,
  #s-73dfbbf5-0e1c-454a-acf6-75be58bea352 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-73dfbbf5-0e1c-454a-acf6-75be58bea352 {
    width: 100%;
    height: auto;
  }

  #s-73dfbbf5-0e1c-454a-acf6-75be58bea352 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shogun-image {
    
    
  }


.s-73dfbbf5-0e1c-454a-acf6-75be58bea352 .shogun-image-content {
  
    align-items: center;
  
}

.s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shogun-image {
  box-sizing: border-box;
}


.s-73dfbbf5-0e1c-454a-acf6-75be58bea352 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-73dfbbf5-0e1c-454a-acf6-75be58bea352 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-73dfbbf5-0e1c-454a-acf6-75be58bea352 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-73dfbbf5-0e1c-454a-acf6-75be58bea352 {
      --shg-aspect-ratio: calc(1042/1354); 
    }

    .s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shogun-image-container {
      position: relative;
    }

    .s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-73dfbbf5-0e1c-454a-acf6-75be58bea352 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-73dfbbf5-0e1c-454a-acf6-75be58bea352 img.shogun-image,
  #s-73dfbbf5-0e1c-454a-acf6-75be58bea352 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-73dfbbf5-0e1c-454a-acf6-75be58bea352 {
    width: 100%;
    height: auto;
  }

  #s-73dfbbf5-0e1c-454a-acf6-75be58bea352 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shogun-image {
    
    
  }


.s-73dfbbf5-0e1c-454a-acf6-75be58bea352 .shogun-image-content {
  
    align-items: center;
  
}

.s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shogun-image {
  box-sizing: border-box;
}


.s-73dfbbf5-0e1c-454a-acf6-75be58bea352 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-73dfbbf5-0e1c-454a-acf6-75be58bea352 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-73dfbbf5-0e1c-454a-acf6-75be58bea352 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-73dfbbf5-0e1c-454a-acf6-75be58bea352 {
      --shg-aspect-ratio: calc(1042/1354); 
    }

    .s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shogun-image-container {
      position: relative;
    }

    .s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-73dfbbf5-0e1c-454a-acf6-75be58bea352 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-73dfbbf5-0e1c-454a-acf6-75be58bea352 img.shogun-image,
  #s-73dfbbf5-0e1c-454a-acf6-75be58bea352 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-73dfbbf5-0e1c-454a-acf6-75be58bea352 {
    width: 100%;
    height: auto;
  }

  #s-73dfbbf5-0e1c-454a-acf6-75be58bea352 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shogun-image {
    
    
  }


.s-73dfbbf5-0e1c-454a-acf6-75be58bea352 .shogun-image-content {
  
    align-items: center;
  
}

.s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shogun-image {
  box-sizing: border-box;
}


.s-73dfbbf5-0e1c-454a-acf6-75be58bea352 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-73dfbbf5-0e1c-454a-acf6-75be58bea352 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-73dfbbf5-0e1c-454a-acf6-75be58bea352 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-73dfbbf5-0e1c-454a-acf6-75be58bea352 {
      --shg-aspect-ratio: calc(1042/1354); 
    }

    .s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shogun-image-container {
      position: relative;
    }

    .s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-73dfbbf5-0e1c-454a-acf6-75be58bea352.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-73dfbbf5-0e1c-454a-acf6-75be58bea352 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b {
  max-width: 1042px;
aspect-ratio: 1042/1354;
text-align: center;
}
@media (max-width: 767px){#s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b {
  margin-top: 0px;
margin-bottom: 25px;
}
}




  #s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b img.shogun-image,
  #s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b {
    width: 100%;
    height: auto;
  }

  #s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shogun-image {
    
    
  }


.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b .shogun-image-content {
  
    align-items: center;
  
}

.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shogun-image {
  box-sizing: border-box;
}


.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b {
      --shg-aspect-ratio: calc(1042/1354); 
    }

    .s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shogun-image-container {
      position: relative;
    }

    .s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b img.shogun-image,
  #s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b {
    width: 100%;
    height: auto;
  }

  #s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shogun-image {
    
    
  }


.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b .shogun-image-content {
  
    align-items: center;
  
}

.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shogun-image {
  box-sizing: border-box;
}


.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b {
      --shg-aspect-ratio: calc(1042/1354); 
    }

    .s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shogun-image-container {
      position: relative;
    }

    .s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b img.shogun-image,
  #s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b {
    width: 100%;
    height: auto;
  }

  #s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shogun-image {
    
    
  }


.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b .shogun-image-content {
  
    align-items: center;
  
}

.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shogun-image {
  box-sizing: border-box;
}


.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b {
      --shg-aspect-ratio: calc(1042/1354); 
    }

    .s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shogun-image-container {
      position: relative;
    }

    .s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b img.shogun-image,
  #s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b {
    width: 100%;
    height: auto;
  }

  #s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shogun-image {
    
    
  }


.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b .shogun-image-content {
  
    align-items: center;
  
}

.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shogun-image {
  box-sizing: border-box;
}


.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b {
      --shg-aspect-ratio: calc(1042/1354); 
    }

    .s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shogun-image-container {
      position: relative;
    }

    .s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b img.shogun-image,
  #s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b {
    width: 100%;
    height: auto;
  }

  #s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shogun-image {
    
    
  }


.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b .shogun-image-content {
  
    align-items: center;
  
}

.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shogun-image {
  box-sizing: border-box;
}


.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b {
      --shg-aspect-ratio: calc(1042/1354); 
    }

    .s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shogun-image-container {
      position: relative;
    }

    .s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e3467df-6439-4715-8f6c-6cdad2fd0e9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-e1b5e248-cd54-4b01-9679-6d25e6481960 {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}








#s-e1b5e248-cd54-4b01-9679-6d25e6481960 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e1b5e248-cd54-4b01-9679-6d25e6481960.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

#s-55d1438e-7404-4119-9f7e-ec25c5190fcf hr {
  border-top: 2px solid #ddd;
}

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

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

#s-718d2975-ef64-40ae-ba6e-538deca2bdd7 {
  margin-left: 0px;
margin-right: 0px;
padding-top: 0px;
padding-bottom: 13px;
text-align: left;
}

#s-718d2975-ef64-40ae-ba6e-538deca2bdd7 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "PT Sans";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: left;
}



#s-0e04cf6a-9d18-44c2-8603-ff922ab2e1e1 {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-0e04cf6a-9d18-44c2-8603-ff922ab2e1e1 {
  margin-left: 2%;
margin-right: 2%;
}
}@media (max-width: 767px){#s-0e04cf6a-9d18-44c2-8603-ff922ab2e1e1 {
  margin-left: 2%;
margin-right: 2%;
}
}







#s-0e04cf6a-9d18-44c2-8603-ff922ab2e1e1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0e04cf6a-9d18-44c2-8603-ff922ab2e1e1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-category-grid {
  margin: -20px 0;
}

.shg-category-row,
.shg-category-row-hor {
  display: flex;
  margin: 20px 0;
}

.shg-category-col,
.shg-category-col-1 {
  flex: 1;
  padding: 0 10px;
}

.shg-category-col:last-child {
  padding-right: 0;
}

.shg-category-col:first-child {
  padding-left: 0;
}

.shg-category-col-2 {
  flex: 2;
  padding: 0 20px;
}

.shg-category-col-3 {
  flex: 3;
  padding: 0 30px;
}

.shg-category-col-4 {
  flex: 4;
  padding: 0 40px;
}

.shg-category-col-5 {
  flex: 5;
  padding: 0 50px;
}

@media (max-width: 768px) {
  .shg-category-row.stacked {
    display: block;
  }

  .shg-category-row .shg-category-col {
    padding: 20px 0;
  }

  .shg-category-row .shg-category-col:first-child {
    padding-top: 0;
  }

  .shg-category-row .shg-category-col:last-child {
    padding-bottom: 0;
  }
}

.shg-product-image-wrapper img.shogun-image,
.shogun-component img.shogun-image {
  display: inline-block;
  vertical-align: middle;
}

.shg-product-img-placeholder img {
  padding: 3rem;
  background: rgba(0, 0, 0, 0.1);
}

.shg-product-image-wrapper {
  display: none;
  position: relative;
  width: 100%;
}

.shg-product-image-wrapper.visible {
  display: inline-block;
}

.shg-product-image-wrapper .shg-product-image-wrapper a {
  text-decoration: none !important;
  border-bottom: 0 !important;
}

.shg-product-image-wrapper .shg-image-zoom {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  max-width: 100%;
  min-height: 100%;
}

.shg-c.shg-align-center .shg-image-zoom {
  margin: 0 auto;
}

.shg-c.shg-align-right .shg-image-zoom {
  margin-left: auto;
}

.shg-image-zoom .shg-image-zoom-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform 0.5s ease-out;
  transform: scale(1);
}

/**
  Fix for IE11, as min-width does not works there.
**/
@media screen\0 {
  .shg-product-image-wrapper > .shogun-image {
    width: 100%;
  }
}

#s-9e220dd6-cf20-4e40-8cb6-4c56e386bfe4 {
  text-align: left;
}



.shg-c#s-9e220dd6-cf20-4e40-8cb6-4c56e386bfe4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9e220dd6-cf20-4e40-8cb6-4c56e386bfe4 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-9e220dd6-cf20-4e40-8cb6-4c56e386bfe4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9e220dd6-cf20-4e40-8cb6-4c56e386bfe4 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9e220dd6-cf20-4e40-8cb6-4c56e386bfe4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9e220dd6-cf20-4e40-8cb6-4c56e386bfe4 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9e220dd6-cf20-4e40-8cb6-4c56e386bfe4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9e220dd6-cf20-4e40-8cb6-4c56e386bfe4 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9e220dd6-cf20-4e40-8cb6-4c56e386bfe4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9e220dd6-cf20-4e40-8cb6-4c56e386bfe4 img.shogun-image {
  width: 100%;
}



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

.shg-product-title-component a {
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

#s-a485b358-edac-48ad-b856-f8e5e6b64909 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a485b358-edac-48ad-b856-f8e5e6b64909 .shg-product-title-component h3 {
  color: ;
  font-weight:  normal ;
  font-family: PT Sans;
  font-style:  normal ;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: ;
}

#s-903db6f0-fbc5-40ff-8f72-b66ef5c5b9af {
  text-align: left;
}



.shg-c#s-903db6f0-fbc5-40ff-8f72-b66ef5c5b9af .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-903db6f0-fbc5-40ff-8f72-b66ef5c5b9af img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-903db6f0-fbc5-40ff-8f72-b66ef5c5b9af .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-903db6f0-fbc5-40ff-8f72-b66ef5c5b9af img.shogun-image {
  width: 100%;
}



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

.shg-c#s-903db6f0-fbc5-40ff-8f72-b66ef5c5b9af .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-903db6f0-fbc5-40ff-8f72-b66ef5c5b9af img.shogun-image {
  width: 100%;
}



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

.shg-c#s-903db6f0-fbc5-40ff-8f72-b66ef5c5b9af .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-903db6f0-fbc5-40ff-8f72-b66ef5c5b9af img.shogun-image {
  width: 100%;
}



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

.shg-c#s-903db6f0-fbc5-40ff-8f72-b66ef5c5b9af .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-903db6f0-fbc5-40ff-8f72-b66ef5c5b9af img.shogun-image {
  width: 100%;
}



}
#s-ed536b5d-7d93-4e96-9a65-727427eb1fb0 {
  margin-top: 20px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-ed536b5d-7d93-4e96-9a65-727427eb1fb0 {
  margin-top: 9px;
}
}@media (max-width: 767px){#s-ed536b5d-7d93-4e96-9a65-727427eb1fb0 {
  margin-top: 6px;
}
}
#s-ed536b5d-7d93-4e96-9a65-727427eb1fb0 .shg-product-title-component h3 {
  color: ;
  font-weight:  normal ;
  font-family: PT Sans;
  font-style:  normal ;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: ;
}

#s-ea5ccc06-e523-483a-a04b-d7da9d47cb4e {
  text-align: left;
}



.shg-c#s-ea5ccc06-e523-483a-a04b-d7da9d47cb4e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ea5ccc06-e523-483a-a04b-d7da9d47cb4e img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-ea5ccc06-e523-483a-a04b-d7da9d47cb4e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ea5ccc06-e523-483a-a04b-d7da9d47cb4e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ea5ccc06-e523-483a-a04b-d7da9d47cb4e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ea5ccc06-e523-483a-a04b-d7da9d47cb4e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ea5ccc06-e523-483a-a04b-d7da9d47cb4e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ea5ccc06-e523-483a-a04b-d7da9d47cb4e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ea5ccc06-e523-483a-a04b-d7da9d47cb4e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ea5ccc06-e523-483a-a04b-d7da9d47cb4e img.shogun-image {
  width: 100%;
}



}
#s-33bbcc45-0e16-497d-a82d-23b7ea6783a8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-33bbcc45-0e16-497d-a82d-23b7ea6783a8 .shg-product-title-component h3 {
  color: ;
  font-weight:  normal ;
  font-family: PT Sans;
  font-style:  normal ;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: ;
}

#s-3835555f-71b4-4926-ad6a-cbb92e427218 {
  text-align: left;
}



.shg-c#s-3835555f-71b4-4926-ad6a-cbb92e427218 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3835555f-71b4-4926-ad6a-cbb92e427218 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-3835555f-71b4-4926-ad6a-cbb92e427218 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3835555f-71b4-4926-ad6a-cbb92e427218 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3835555f-71b4-4926-ad6a-cbb92e427218 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3835555f-71b4-4926-ad6a-cbb92e427218 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3835555f-71b4-4926-ad6a-cbb92e427218 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3835555f-71b4-4926-ad6a-cbb92e427218 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3835555f-71b4-4926-ad6a-cbb92e427218 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3835555f-71b4-4926-ad6a-cbb92e427218 img.shogun-image {
  width: 100%;
}



}
#s-d1fb7720-f235-4955-bef2-38baa9c762d1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d1fb7720-f235-4955-bef2-38baa9c762d1 .shg-product-title-component h3 {
  color: ;
  font-weight:  normal ;
  font-family: PT Sans;
  font-style:  normal ;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: ;
}

#s-ca1a2c85-d96a-44e8-b8e8-4b26edade851 hr {
  border-top: 2px solid #ddd;
}

#s-f99828f0-3fc0-4267-9361-abd7d549b04e {
  margin-left: 0px;
margin-right: 0px;
padding-top: 0px;
padding-bottom: 10px;
text-align: left;
}

#s-f99828f0-3fc0-4267-9361-abd7d549b04e .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "PT Sans";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: left;
}



#s-50b6af7c-f5f7-4ca6-80a7-be267c208d75 {
  padding-top: 0px;
}

#s-2f5448f9-55ed-4268-a962-a1dba7485588 {
  text-align: left;
}



.shg-c#s-2f5448f9-55ed-4268-a962-a1dba7485588 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2f5448f9-55ed-4268-a962-a1dba7485588 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-2f5448f9-55ed-4268-a962-a1dba7485588 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2f5448f9-55ed-4268-a962-a1dba7485588 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-2f5448f9-55ed-4268-a962-a1dba7485588 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2f5448f9-55ed-4268-a962-a1dba7485588 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-2f5448f9-55ed-4268-a962-a1dba7485588 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2f5448f9-55ed-4268-a962-a1dba7485588 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-2f5448f9-55ed-4268-a962-a1dba7485588 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2f5448f9-55ed-4268-a962-a1dba7485588 img.shogun-image {
  width: 100%;
}



}
#s-aaaa3832-9ad3-4b30-a186-b647cb237967 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-aaaa3832-9ad3-4b30-a186-b647cb237967 {
  padding-top: 16px;
padding-bottom: 16px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-aaaa3832-9ad3-4b30-a186-b647cb237967 {
  padding-top: 16px;
padding-bottom: 16px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-aaaa3832-9ad3-4b30-a186-b647cb237967 {
  padding-bottom: 12px;
}
}@media (max-width: 767px){#s-aaaa3832-9ad3-4b30-a186-b647cb237967 {
  padding-bottom: 32px;
}
}
#s-aaaa3832-9ad3-4b30-a186-b647cb237967 .shg-product-title-component h3 {
  color: ;
  font-weight:  normal ;
  font-family: PT Sans;
  font-style:  normal ;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: ;
}

#s-1dd750ef-b9ba-4c8d-af3c-5323685d2c0c {
  text-align: left;
}



.shg-c#s-1dd750ef-b9ba-4c8d-af3c-5323685d2c0c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1dd750ef-b9ba-4c8d-af3c-5323685d2c0c img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-1dd750ef-b9ba-4c8d-af3c-5323685d2c0c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1dd750ef-b9ba-4c8d-af3c-5323685d2c0c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1dd750ef-b9ba-4c8d-af3c-5323685d2c0c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1dd750ef-b9ba-4c8d-af3c-5323685d2c0c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1dd750ef-b9ba-4c8d-af3c-5323685d2c0c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1dd750ef-b9ba-4c8d-af3c-5323685d2c0c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1dd750ef-b9ba-4c8d-af3c-5323685d2c0c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1dd750ef-b9ba-4c8d-af3c-5323685d2c0c img.shogun-image {
  width: 100%;
}



}
#s-a88f3141-f7f6-4950-afcb-bcae28c6e826 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-a88f3141-f7f6-4950-afcb-bcae28c6e826 {
  padding-top: 16px;
padding-bottom: 16px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a88f3141-f7f6-4950-afcb-bcae28c6e826 {
  padding-top: 16px;
padding-bottom: 16px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-a88f3141-f7f6-4950-afcb-bcae28c6e826 {
  padding-bottom: 12px;
}
}@media (max-width: 767px){#s-a88f3141-f7f6-4950-afcb-bcae28c6e826 {
  padding-bottom: 32px;
}
}
#s-a88f3141-f7f6-4950-afcb-bcae28c6e826 .shg-product-title-component h3 {
  color: ;
  font-weight:  normal ;
  font-family: PT Sans;
  font-style:  normal ;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: ;
}

#s-b49d9144-acc4-4382-8c28-46aa229be5f4 {
  padding-top: 1px;
padding-bottom: 1px;
text-align: left;
}



.shg-c#s-b49d9144-acc4-4382-8c28-46aa229be5f4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b49d9144-acc4-4382-8c28-46aa229be5f4 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-b49d9144-acc4-4382-8c28-46aa229be5f4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b49d9144-acc4-4382-8c28-46aa229be5f4 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b49d9144-acc4-4382-8c28-46aa229be5f4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b49d9144-acc4-4382-8c28-46aa229be5f4 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b49d9144-acc4-4382-8c28-46aa229be5f4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b49d9144-acc4-4382-8c28-46aa229be5f4 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b49d9144-acc4-4382-8c28-46aa229be5f4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b49d9144-acc4-4382-8c28-46aa229be5f4 img.shogun-image {
  width: 100%;
}



}
#s-6bc02e75-98fe-4bd0-8708-35304d4fbae8 {
  padding-top: 15px;
padding-bottom: 15px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-6bc02e75-98fe-4bd0-8708-35304d4fbae8 {
  padding-top: 10px;
padding-bottom: 10px;
}
}@media (max-width: 767px){#s-6bc02e75-98fe-4bd0-8708-35304d4fbae8 {
  padding-top: 12px;
padding-bottom: 12px;
}
}
#s-6bc02e75-98fe-4bd0-8708-35304d4fbae8 .shg-product-title-component h3 {
  color: ;
  font-weight:  normal ;
  font-family: PT Sans;
  font-style:  normal ;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: ;
}

#s-7b54331f-1842-450b-96cb-42f18ce2f1b1 {
  text-align: left;
}



.shg-c#s-7b54331f-1842-450b-96cb-42f18ce2f1b1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7b54331f-1842-450b-96cb-42f18ce2f1b1 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-7b54331f-1842-450b-96cb-42f18ce2f1b1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7b54331f-1842-450b-96cb-42f18ce2f1b1 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7b54331f-1842-450b-96cb-42f18ce2f1b1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7b54331f-1842-450b-96cb-42f18ce2f1b1 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7b54331f-1842-450b-96cb-42f18ce2f1b1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7b54331f-1842-450b-96cb-42f18ce2f1b1 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7b54331f-1842-450b-96cb-42f18ce2f1b1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7b54331f-1842-450b-96cb-42f18ce2f1b1 img.shogun-image {
  width: 100%;
}



}
#s-7c17adf6-5be6-4ad7-80c6-219c519a6aa7 {
  padding-top: 10px;
padding-bottom: 22px;
text-align: center;
}
@media (min-width: 1200px){#s-7c17adf6-5be6-4ad7-80c6-219c519a6aa7 {
  padding-top: 18px;
padding-bottom: 13px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-7c17adf6-5be6-4ad7-80c6-219c519a6aa7 {
  padding-top: 17px;
padding-bottom: 16px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-7c17adf6-5be6-4ad7-80c6-219c519a6aa7 {
  padding-top: 12px;
padding-bottom: 25px;
}
}@media (max-width: 767px){#s-7c17adf6-5be6-4ad7-80c6-219c519a6aa7 {
  padding-top: 12px;
padding-bottom: 30px;
}
}
#s-7c17adf6-5be6-4ad7-80c6-219c519a6aa7 .shg-product-title-component h3 {
  color: ;
  font-weight:  normal ;
  font-family: PT Sans;
  font-style:  normal ;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: ;
}

/*
  $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}
