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

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

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

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

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

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

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

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

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

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

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

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

#s-ece7389f-3d5e-4580-b49b-c059b0609cce {
  min-height: 50px;
}








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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-image-content-wrapper .shogun-image.hover~* {
  z-index: 1;
}
#s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 {
  margin-top: 28px;
margin-bottom: 28px;
max-width: 1920px;
aspect-ratio: 1920/320;
text-align: center;
}





  #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 img.shogun-image,
  #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

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

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



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


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

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

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

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




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

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

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

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

    .s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 img.shogun-image,
  #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

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

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



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


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

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

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

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




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

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

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

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

    .s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 img.shogun-image,
  #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

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

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



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


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

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

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

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




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

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

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

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

    .s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 img.shogun-image,
  #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

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

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



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


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

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

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

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




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

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

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

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

    .s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 img.shogun-image,
  #s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

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

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



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


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

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

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

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




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

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

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

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

    .s-c0af6b50-2c30-4ced-8fd3-e2ecd35853b0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
.shogun-heading-component h1,
.shogun-heading-component h2,
.shogun-heading-component h3,
.shogun-heading-component h4,
.shogun-heading-component h5,
.shogun-heading-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: #121212;
  font-family: Serif;
  text-transform: none;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

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

#s-c4a6f7b0-8bc5-4ad5-b998-2cda3db5037b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

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



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-3df07022-636c-4e13-9173-4774f06480ad {
  margin-left: 10%;
margin-right: 10%;
}

.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-b8bc02f7-9d57-4f77-92f5-391a80a5aca8 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-b8bc02f7-9d57-4f77-92f5-391a80a5aca8 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-b8bc02f7-9d57-4f77-92f5-391a80a5aca8 .shg-sld-nav-button.shg-sld-left,
#s-b8bc02f7-9d57-4f77-92f5-391a80a5aca8 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 {
  max-width: 1080px;
aspect-ratio: 2000/1334;
text-align: center;
}





  #s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 img.shogun-image,
  #s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 {
    width: 100%;
    height: auto;
  }

  #s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shogun-image {
    
    
  }


.s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 .shogun-image-content {
  
    align-items: center;
  
}

.s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 {
      --shg-aspect-ratio: calc(2000/1334); 
    }

    .s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shogun-image-container {
      position: relative;
    }

    .s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 img.shogun-image,
  #s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 {
    width: 100%;
    height: auto;
  }

  #s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shogun-image {
    
    
  }


.s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 .shogun-image-content {
  
    align-items: center;
  
}

.s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 {
      --shg-aspect-ratio: calc(2000/1334); 
    }

    .s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shogun-image-container {
      position: relative;
    }

    .s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 img.shogun-image,
  #s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 {
    width: 100%;
    height: auto;
  }

  #s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shogun-image {
    
    
  }


.s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 .shogun-image-content {
  
    align-items: center;
  
}

.s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 {
      --shg-aspect-ratio: calc(2000/1334); 
    }

    .s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shogun-image-container {
      position: relative;
    }

    .s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 img.shogun-image,
  #s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 {
    width: 100%;
    height: auto;
  }

  #s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shogun-image {
    
    
  }


.s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 .shogun-image-content {
  
    align-items: center;
  
}

.s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 {
      --shg-aspect-ratio: calc(2000/1334); 
    }

    .s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shogun-image-container {
      position: relative;
    }

    .s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 img.shogun-image,
  #s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 {
    width: 100%;
    height: auto;
  }

  #s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shogun-image {
    
    
  }


.s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 .shogun-image-content {
  
    align-items: center;
  
}

.s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 {
      --shg-aspect-ratio: calc(2000/1334); 
    }

    .s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shogun-image-container {
      position: relative;
    }

    .s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cf749c6a-6da5-45b2-a2b3-2248cd64c4a6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-56d5244b-e6d6-46dc-9dce-40201fac97fc {
  max-width: 1080px;
aspect-ratio: 2000/1333;
text-align: center;
}





  #s-56d5244b-e6d6-46dc-9dce-40201fac97fc img.shogun-image,
  #s-56d5244b-e6d6-46dc-9dce-40201fac97fc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-56d5244b-e6d6-46dc-9dce-40201fac97fc {
    width: 100%;
    height: auto;
  }

  #s-56d5244b-e6d6-46dc-9dce-40201fac97fc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shogun-image {
    
    
  }


.s-56d5244b-e6d6-46dc-9dce-40201fac97fc .shogun-image-content {
  
    align-items: center;
  
}

.s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-56d5244b-e6d6-46dc-9dce-40201fac97fc {
      --shg-aspect-ratio: calc(2000/1333); 
    }

    .s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shogun-image-container {
      position: relative;
    }

    .s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-56d5244b-e6d6-46dc-9dce-40201fac97fc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-56d5244b-e6d6-46dc-9dce-40201fac97fc img.shogun-image,
  #s-56d5244b-e6d6-46dc-9dce-40201fac97fc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-56d5244b-e6d6-46dc-9dce-40201fac97fc {
    width: 100%;
    height: auto;
  }

  #s-56d5244b-e6d6-46dc-9dce-40201fac97fc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shogun-image {
    
    
  }


.s-56d5244b-e6d6-46dc-9dce-40201fac97fc .shogun-image-content {
  
    align-items: center;
  
}

.s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-56d5244b-e6d6-46dc-9dce-40201fac97fc {
      --shg-aspect-ratio: calc(2000/1333); 
    }

    .s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shogun-image-container {
      position: relative;
    }

    .s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-56d5244b-e6d6-46dc-9dce-40201fac97fc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-56d5244b-e6d6-46dc-9dce-40201fac97fc img.shogun-image,
  #s-56d5244b-e6d6-46dc-9dce-40201fac97fc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-56d5244b-e6d6-46dc-9dce-40201fac97fc {
    width: 100%;
    height: auto;
  }

  #s-56d5244b-e6d6-46dc-9dce-40201fac97fc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shogun-image {
    
    
  }


.s-56d5244b-e6d6-46dc-9dce-40201fac97fc .shogun-image-content {
  
    align-items: center;
  
}

.s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-56d5244b-e6d6-46dc-9dce-40201fac97fc {
      --shg-aspect-ratio: calc(2000/1333); 
    }

    .s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shogun-image-container {
      position: relative;
    }

    .s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-56d5244b-e6d6-46dc-9dce-40201fac97fc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-56d5244b-e6d6-46dc-9dce-40201fac97fc img.shogun-image,
  #s-56d5244b-e6d6-46dc-9dce-40201fac97fc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-56d5244b-e6d6-46dc-9dce-40201fac97fc {
    width: 100%;
    height: auto;
  }

  #s-56d5244b-e6d6-46dc-9dce-40201fac97fc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shogun-image {
    
    
  }


.s-56d5244b-e6d6-46dc-9dce-40201fac97fc .shogun-image-content {
  
    align-items: center;
  
}

.s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-56d5244b-e6d6-46dc-9dce-40201fac97fc {
      --shg-aspect-ratio: calc(2000/1333); 
    }

    .s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shogun-image-container {
      position: relative;
    }

    .s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-56d5244b-e6d6-46dc-9dce-40201fac97fc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-56d5244b-e6d6-46dc-9dce-40201fac97fc img.shogun-image,
  #s-56d5244b-e6d6-46dc-9dce-40201fac97fc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-56d5244b-e6d6-46dc-9dce-40201fac97fc {
    width: 100%;
    height: auto;
  }

  #s-56d5244b-e6d6-46dc-9dce-40201fac97fc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shogun-image {
    
    
  }


.s-56d5244b-e6d6-46dc-9dce-40201fac97fc .shogun-image-content {
  
    align-items: center;
  
}

.s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-56d5244b-e6d6-46dc-9dce-40201fac97fc {
      --shg-aspect-ratio: calc(2000/1333); 
    }

    .s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shogun-image-container {
      position: relative;
    }

    .s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-56d5244b-e6d6-46dc-9dce-40201fac97fc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-56d5244b-e6d6-46dc-9dce-40201fac97fc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-f65da655-b320-419f-9963-49b567fc2822 {
  max-width: 1080px;
aspect-ratio: 5898/3932;
text-align: center;
}





  #s-f65da655-b320-419f-9963-49b567fc2822 img.shogun-image,
  #s-f65da655-b320-419f-9963-49b567fc2822 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f65da655-b320-419f-9963-49b567fc2822 {
    width: 100%;
    height: auto;
  }

  #s-f65da655-b320-419f-9963-49b567fc2822 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f65da655-b320-419f-9963-49b567fc2822.shogun-image {
    
    
  }


.s-f65da655-b320-419f-9963-49b567fc2822 .shogun-image-content {
  
    align-items: center;
  
}

.s-f65da655-b320-419f-9963-49b567fc2822.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f65da655-b320-419f-9963-49b567fc2822.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f65da655-b320-419f-9963-49b567fc2822.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f65da655-b320-419f-9963-49b567fc2822 {
      --shg-aspect-ratio: calc(5898/3932); 
    }

    .s-f65da655-b320-419f-9963-49b567fc2822.shogun-image-container {
      position: relative;
    }

    .s-f65da655-b320-419f-9963-49b567fc2822.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f65da655-b320-419f-9963-49b567fc2822.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f65da655-b320-419f-9963-49b567fc2822 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-f65da655-b320-419f-9963-49b567fc2822 img.shogun-image,
  #s-f65da655-b320-419f-9963-49b567fc2822 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f65da655-b320-419f-9963-49b567fc2822 {
    width: 100%;
    height: auto;
  }

  #s-f65da655-b320-419f-9963-49b567fc2822 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f65da655-b320-419f-9963-49b567fc2822.shogun-image {
    
    
  }


.s-f65da655-b320-419f-9963-49b567fc2822 .shogun-image-content {
  
    align-items: center;
  
}

.s-f65da655-b320-419f-9963-49b567fc2822.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f65da655-b320-419f-9963-49b567fc2822.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f65da655-b320-419f-9963-49b567fc2822.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f65da655-b320-419f-9963-49b567fc2822 {
      --shg-aspect-ratio: calc(5898/3932); 
    }

    .s-f65da655-b320-419f-9963-49b567fc2822.shogun-image-container {
      position: relative;
    }

    .s-f65da655-b320-419f-9963-49b567fc2822.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f65da655-b320-419f-9963-49b567fc2822.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f65da655-b320-419f-9963-49b567fc2822 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-f65da655-b320-419f-9963-49b567fc2822 img.shogun-image,
  #s-f65da655-b320-419f-9963-49b567fc2822 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f65da655-b320-419f-9963-49b567fc2822 {
    width: 100%;
    height: auto;
  }

  #s-f65da655-b320-419f-9963-49b567fc2822 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f65da655-b320-419f-9963-49b567fc2822.shogun-image {
    
    
  }


.s-f65da655-b320-419f-9963-49b567fc2822 .shogun-image-content {
  
    align-items: center;
  
}

.s-f65da655-b320-419f-9963-49b567fc2822.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f65da655-b320-419f-9963-49b567fc2822.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f65da655-b320-419f-9963-49b567fc2822.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f65da655-b320-419f-9963-49b567fc2822 {
      --shg-aspect-ratio: calc(5898/3932); 
    }

    .s-f65da655-b320-419f-9963-49b567fc2822.shogun-image-container {
      position: relative;
    }

    .s-f65da655-b320-419f-9963-49b567fc2822.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f65da655-b320-419f-9963-49b567fc2822.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f65da655-b320-419f-9963-49b567fc2822 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-f65da655-b320-419f-9963-49b567fc2822 img.shogun-image,
  #s-f65da655-b320-419f-9963-49b567fc2822 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f65da655-b320-419f-9963-49b567fc2822 {
    width: 100%;
    height: auto;
  }

  #s-f65da655-b320-419f-9963-49b567fc2822 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f65da655-b320-419f-9963-49b567fc2822.shogun-image {
    
    
  }


.s-f65da655-b320-419f-9963-49b567fc2822 .shogun-image-content {
  
    align-items: center;
  
}

.s-f65da655-b320-419f-9963-49b567fc2822.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f65da655-b320-419f-9963-49b567fc2822.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f65da655-b320-419f-9963-49b567fc2822.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f65da655-b320-419f-9963-49b567fc2822 {
      --shg-aspect-ratio: calc(5898/3932); 
    }

    .s-f65da655-b320-419f-9963-49b567fc2822.shogun-image-container {
      position: relative;
    }

    .s-f65da655-b320-419f-9963-49b567fc2822.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f65da655-b320-419f-9963-49b567fc2822.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f65da655-b320-419f-9963-49b567fc2822 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-f65da655-b320-419f-9963-49b567fc2822 img.shogun-image,
  #s-f65da655-b320-419f-9963-49b567fc2822 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f65da655-b320-419f-9963-49b567fc2822 {
    width: 100%;
    height: auto;
  }

  #s-f65da655-b320-419f-9963-49b567fc2822 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f65da655-b320-419f-9963-49b567fc2822.shogun-image {
    
    
  }


.s-f65da655-b320-419f-9963-49b567fc2822 .shogun-image-content {
  
    align-items: center;
  
}

.s-f65da655-b320-419f-9963-49b567fc2822.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f65da655-b320-419f-9963-49b567fc2822.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f65da655-b320-419f-9963-49b567fc2822.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f65da655-b320-419f-9963-49b567fc2822 {
      --shg-aspect-ratio: calc(5898/3932); 
    }

    .s-f65da655-b320-419f-9963-49b567fc2822.shogun-image-container {
      position: relative;
    }

    .s-f65da655-b320-419f-9963-49b567fc2822.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f65da655-b320-419f-9963-49b567fc2822.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f65da655-b320-419f-9963-49b567fc2822 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-05c16f7d-5e96-4477-a1a0-1606600be08b {
  max-width: 1080px;
aspect-ratio: 1920/1280;
text-align: center;
}





  #s-05c16f7d-5e96-4477-a1a0-1606600be08b img.shogun-image,
  #s-05c16f7d-5e96-4477-a1a0-1606600be08b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-05c16f7d-5e96-4477-a1a0-1606600be08b {
    width: 100%;
    height: auto;
  }

  #s-05c16f7d-5e96-4477-a1a0-1606600be08b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-05c16f7d-5e96-4477-a1a0-1606600be08b.shogun-image {
    
    
  }


.s-05c16f7d-5e96-4477-a1a0-1606600be08b .shogun-image-content {
  
    align-items: center;
  
}

.s-05c16f7d-5e96-4477-a1a0-1606600be08b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-05c16f7d-5e96-4477-a1a0-1606600be08b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-05c16f7d-5e96-4477-a1a0-1606600be08b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-05c16f7d-5e96-4477-a1a0-1606600be08b {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-05c16f7d-5e96-4477-a1a0-1606600be08b.shogun-image-container {
      position: relative;
    }

    .s-05c16f7d-5e96-4477-a1a0-1606600be08b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-05c16f7d-5e96-4477-a1a0-1606600be08b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-05c16f7d-5e96-4477-a1a0-1606600be08b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-05c16f7d-5e96-4477-a1a0-1606600be08b img.shogun-image,
  #s-05c16f7d-5e96-4477-a1a0-1606600be08b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-05c16f7d-5e96-4477-a1a0-1606600be08b {
    width: 100%;
    height: auto;
  }

  #s-05c16f7d-5e96-4477-a1a0-1606600be08b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-05c16f7d-5e96-4477-a1a0-1606600be08b.shogun-image {
    
    
  }


.s-05c16f7d-5e96-4477-a1a0-1606600be08b .shogun-image-content {
  
    align-items: center;
  
}

.s-05c16f7d-5e96-4477-a1a0-1606600be08b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-05c16f7d-5e96-4477-a1a0-1606600be08b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-05c16f7d-5e96-4477-a1a0-1606600be08b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-05c16f7d-5e96-4477-a1a0-1606600be08b {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-05c16f7d-5e96-4477-a1a0-1606600be08b.shogun-image-container {
      position: relative;
    }

    .s-05c16f7d-5e96-4477-a1a0-1606600be08b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-05c16f7d-5e96-4477-a1a0-1606600be08b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-05c16f7d-5e96-4477-a1a0-1606600be08b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-05c16f7d-5e96-4477-a1a0-1606600be08b img.shogun-image,
  #s-05c16f7d-5e96-4477-a1a0-1606600be08b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-05c16f7d-5e96-4477-a1a0-1606600be08b {
    width: 100%;
    height: auto;
  }

  #s-05c16f7d-5e96-4477-a1a0-1606600be08b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-05c16f7d-5e96-4477-a1a0-1606600be08b.shogun-image {
    
    
  }


.s-05c16f7d-5e96-4477-a1a0-1606600be08b .shogun-image-content {
  
    align-items: center;
  
}

.s-05c16f7d-5e96-4477-a1a0-1606600be08b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-05c16f7d-5e96-4477-a1a0-1606600be08b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-05c16f7d-5e96-4477-a1a0-1606600be08b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-05c16f7d-5e96-4477-a1a0-1606600be08b {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-05c16f7d-5e96-4477-a1a0-1606600be08b.shogun-image-container {
      position: relative;
    }

    .s-05c16f7d-5e96-4477-a1a0-1606600be08b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-05c16f7d-5e96-4477-a1a0-1606600be08b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-05c16f7d-5e96-4477-a1a0-1606600be08b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-05c16f7d-5e96-4477-a1a0-1606600be08b img.shogun-image,
  #s-05c16f7d-5e96-4477-a1a0-1606600be08b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-05c16f7d-5e96-4477-a1a0-1606600be08b {
    width: 100%;
    height: auto;
  }

  #s-05c16f7d-5e96-4477-a1a0-1606600be08b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-05c16f7d-5e96-4477-a1a0-1606600be08b.shogun-image {
    
    
  }


.s-05c16f7d-5e96-4477-a1a0-1606600be08b .shogun-image-content {
  
    align-items: center;
  
}

.s-05c16f7d-5e96-4477-a1a0-1606600be08b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-05c16f7d-5e96-4477-a1a0-1606600be08b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-05c16f7d-5e96-4477-a1a0-1606600be08b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-05c16f7d-5e96-4477-a1a0-1606600be08b {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-05c16f7d-5e96-4477-a1a0-1606600be08b.shogun-image-container {
      position: relative;
    }

    .s-05c16f7d-5e96-4477-a1a0-1606600be08b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-05c16f7d-5e96-4477-a1a0-1606600be08b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-05c16f7d-5e96-4477-a1a0-1606600be08b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-05c16f7d-5e96-4477-a1a0-1606600be08b img.shogun-image,
  #s-05c16f7d-5e96-4477-a1a0-1606600be08b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-05c16f7d-5e96-4477-a1a0-1606600be08b {
    width: 100%;
    height: auto;
  }

  #s-05c16f7d-5e96-4477-a1a0-1606600be08b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-05c16f7d-5e96-4477-a1a0-1606600be08b.shogun-image {
    
    
  }


.s-05c16f7d-5e96-4477-a1a0-1606600be08b .shogun-image-content {
  
    align-items: center;
  
}

.s-05c16f7d-5e96-4477-a1a0-1606600be08b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-05c16f7d-5e96-4477-a1a0-1606600be08b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-05c16f7d-5e96-4477-a1a0-1606600be08b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-05c16f7d-5e96-4477-a1a0-1606600be08b {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-05c16f7d-5e96-4477-a1a0-1606600be08b.shogun-image-container {
      position: relative;
    }

    .s-05c16f7d-5e96-4477-a1a0-1606600be08b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-05c16f7d-5e96-4477-a1a0-1606600be08b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-05c16f7d-5e96-4477-a1a0-1606600be08b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-badc79e1-2d11-4ae5-9504-2e91f21df20a {
  max-width: 1080px;
aspect-ratio: 6192/4128;
text-align: center;
}





  #s-badc79e1-2d11-4ae5-9504-2e91f21df20a img.shogun-image,
  #s-badc79e1-2d11-4ae5-9504-2e91f21df20a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-badc79e1-2d11-4ae5-9504-2e91f21df20a {
    width: 100%;
    height: auto;
  }

  #s-badc79e1-2d11-4ae5-9504-2e91f21df20a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shogun-image {
    
    
  }


.s-badc79e1-2d11-4ae5-9504-2e91f21df20a .shogun-image-content {
  
    align-items: center;
  
}

.s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-badc79e1-2d11-4ae5-9504-2e91f21df20a {
      --shg-aspect-ratio: calc(6192/4128); 
    }

    .s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shogun-image-container {
      position: relative;
    }

    .s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-badc79e1-2d11-4ae5-9504-2e91f21df20a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-badc79e1-2d11-4ae5-9504-2e91f21df20a img.shogun-image,
  #s-badc79e1-2d11-4ae5-9504-2e91f21df20a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-badc79e1-2d11-4ae5-9504-2e91f21df20a {
    width: 100%;
    height: auto;
  }

  #s-badc79e1-2d11-4ae5-9504-2e91f21df20a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shogun-image {
    
    
  }


.s-badc79e1-2d11-4ae5-9504-2e91f21df20a .shogun-image-content {
  
    align-items: center;
  
}

.s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-badc79e1-2d11-4ae5-9504-2e91f21df20a {
      --shg-aspect-ratio: calc(6192/4128); 
    }

    .s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shogun-image-container {
      position: relative;
    }

    .s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-badc79e1-2d11-4ae5-9504-2e91f21df20a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-badc79e1-2d11-4ae5-9504-2e91f21df20a img.shogun-image,
  #s-badc79e1-2d11-4ae5-9504-2e91f21df20a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-badc79e1-2d11-4ae5-9504-2e91f21df20a {
    width: 100%;
    height: auto;
  }

  #s-badc79e1-2d11-4ae5-9504-2e91f21df20a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shogun-image {
    
    
  }


.s-badc79e1-2d11-4ae5-9504-2e91f21df20a .shogun-image-content {
  
    align-items: center;
  
}

.s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-badc79e1-2d11-4ae5-9504-2e91f21df20a {
      --shg-aspect-ratio: calc(6192/4128); 
    }

    .s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shogun-image-container {
      position: relative;
    }

    .s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-badc79e1-2d11-4ae5-9504-2e91f21df20a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-badc79e1-2d11-4ae5-9504-2e91f21df20a img.shogun-image,
  #s-badc79e1-2d11-4ae5-9504-2e91f21df20a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-badc79e1-2d11-4ae5-9504-2e91f21df20a {
    width: 100%;
    height: auto;
  }

  #s-badc79e1-2d11-4ae5-9504-2e91f21df20a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shogun-image {
    
    
  }


.s-badc79e1-2d11-4ae5-9504-2e91f21df20a .shogun-image-content {
  
    align-items: center;
  
}

.s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-badc79e1-2d11-4ae5-9504-2e91f21df20a {
      --shg-aspect-ratio: calc(6192/4128); 
    }

    .s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shogun-image-container {
      position: relative;
    }

    .s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-badc79e1-2d11-4ae5-9504-2e91f21df20a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-badc79e1-2d11-4ae5-9504-2e91f21df20a img.shogun-image,
  #s-badc79e1-2d11-4ae5-9504-2e91f21df20a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-badc79e1-2d11-4ae5-9504-2e91f21df20a {
    width: 100%;
    height: auto;
  }

  #s-badc79e1-2d11-4ae5-9504-2e91f21df20a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shogun-image {
    
    
  }


.s-badc79e1-2d11-4ae5-9504-2e91f21df20a .shogun-image-content {
  
    align-items: center;
  
}

.s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-badc79e1-2d11-4ae5-9504-2e91f21df20a {
      --shg-aspect-ratio: calc(6192/4128); 
    }

    .s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shogun-image-container {
      position: relative;
    }

    .s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-badc79e1-2d11-4ae5-9504-2e91f21df20a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-badc79e1-2d11-4ae5-9504-2e91f21df20a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e {
  max-width: 1080px;
aspect-ratio: 6192/4128;
text-align: center;
}





  #s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e img.shogun-image,
  #s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e {
    width: 100%;
    height: auto;
  }

  #s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shogun-image {
    
    
  }


.s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e .shogun-image-content {
  
    align-items: center;
  
}

.s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e {
      --shg-aspect-ratio: calc(6192/4128); 
    }

    .s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shogun-image-container {
      position: relative;
    }

    .s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e img.shogun-image,
  #s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e {
    width: 100%;
    height: auto;
  }

  #s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shogun-image {
    
    
  }


.s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e .shogun-image-content {
  
    align-items: center;
  
}

.s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e {
      --shg-aspect-ratio: calc(6192/4128); 
    }

    .s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shogun-image-container {
      position: relative;
    }

    .s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e img.shogun-image,
  #s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e {
    width: 100%;
    height: auto;
  }

  #s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shogun-image {
    
    
  }


.s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e .shogun-image-content {
  
    align-items: center;
  
}

.s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e {
      --shg-aspect-ratio: calc(6192/4128); 
    }

    .s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shogun-image-container {
      position: relative;
    }

    .s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e img.shogun-image,
  #s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e {
    width: 100%;
    height: auto;
  }

  #s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shogun-image {
    
    
  }


.s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e .shogun-image-content {
  
    align-items: center;
  
}

.s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e {
      --shg-aspect-ratio: calc(6192/4128); 
    }

    .s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shogun-image-container {
      position: relative;
    }

    .s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e img.shogun-image,
  #s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e {
    width: 100%;
    height: auto;
  }

  #s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shogun-image {
    
    
  }


.s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e .shogun-image-content {
  
    align-items: center;
  
}

.s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e {
      --shg-aspect-ratio: calc(6192/4128); 
    }

    .s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shogun-image-container {
      position: relative;
    }

    .s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24ff2ba9-203b-4600-aa74-9ba1d4faeb9e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-d6474104-6584-4fb4-a54e-89f59cafaa57 {
  max-width: 1080px;
aspect-ratio: 16/9;
text-align: center;
}





  #s-d6474104-6584-4fb4-a54e-89f59cafaa57 img.shogun-image,
  #s-d6474104-6584-4fb4-a54e-89f59cafaa57 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d6474104-6584-4fb4-a54e-89f59cafaa57 {
    width: 100%;
    height: auto;
  }

  #s-d6474104-6584-4fb4-a54e-89f59cafaa57 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d6474104-6584-4fb4-a54e-89f59cafaa57.shogun-image {
    
    
  }


.s-d6474104-6584-4fb4-a54e-89f59cafaa57 .shogun-image-content {
  
    align-items: center;
  
}

.s-d6474104-6584-4fb4-a54e-89f59cafaa57.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d6474104-6584-4fb4-a54e-89f59cafaa57.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d6474104-6584-4fb4-a54e-89f59cafaa57.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d6474104-6584-4fb4-a54e-89f59cafaa57 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-d6474104-6584-4fb4-a54e-89f59cafaa57.shogun-image-container {
      position: relative;
    }

    .s-d6474104-6584-4fb4-a54e-89f59cafaa57.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d6474104-6584-4fb4-a54e-89f59cafaa57.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d6474104-6584-4fb4-a54e-89f59cafaa57 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-d6474104-6584-4fb4-a54e-89f59cafaa57 img.shogun-image,
  #s-d6474104-6584-4fb4-a54e-89f59cafaa57 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d6474104-6584-4fb4-a54e-89f59cafaa57 {
    width: 100%;
    height: auto;
  }

  #s-d6474104-6584-4fb4-a54e-89f59cafaa57 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d6474104-6584-4fb4-a54e-89f59cafaa57.shogun-image {
    
    
  }


.s-d6474104-6584-4fb4-a54e-89f59cafaa57 .shogun-image-content {
  
    align-items: center;
  
}

.s-d6474104-6584-4fb4-a54e-89f59cafaa57.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d6474104-6584-4fb4-a54e-89f59cafaa57.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d6474104-6584-4fb4-a54e-89f59cafaa57.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d6474104-6584-4fb4-a54e-89f59cafaa57 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-d6474104-6584-4fb4-a54e-89f59cafaa57.shogun-image-container {
      position: relative;
    }

    .s-d6474104-6584-4fb4-a54e-89f59cafaa57.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d6474104-6584-4fb4-a54e-89f59cafaa57.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d6474104-6584-4fb4-a54e-89f59cafaa57 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-d6474104-6584-4fb4-a54e-89f59cafaa57 img.shogun-image,
  #s-d6474104-6584-4fb4-a54e-89f59cafaa57 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d6474104-6584-4fb4-a54e-89f59cafaa57 {
    width: 100%;
    height: auto;
  }

  #s-d6474104-6584-4fb4-a54e-89f59cafaa57 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d6474104-6584-4fb4-a54e-89f59cafaa57.shogun-image {
    
    
  }


.s-d6474104-6584-4fb4-a54e-89f59cafaa57 .shogun-image-content {
  
    align-items: center;
  
}

.s-d6474104-6584-4fb4-a54e-89f59cafaa57.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d6474104-6584-4fb4-a54e-89f59cafaa57.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d6474104-6584-4fb4-a54e-89f59cafaa57.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d6474104-6584-4fb4-a54e-89f59cafaa57 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-d6474104-6584-4fb4-a54e-89f59cafaa57.shogun-image-container {
      position: relative;
    }

    .s-d6474104-6584-4fb4-a54e-89f59cafaa57.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d6474104-6584-4fb4-a54e-89f59cafaa57.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d6474104-6584-4fb4-a54e-89f59cafaa57 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-d6474104-6584-4fb4-a54e-89f59cafaa57 img.shogun-image,
  #s-d6474104-6584-4fb4-a54e-89f59cafaa57 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d6474104-6584-4fb4-a54e-89f59cafaa57 {
    width: 100%;
    height: auto;
  }

  #s-d6474104-6584-4fb4-a54e-89f59cafaa57 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d6474104-6584-4fb4-a54e-89f59cafaa57.shogun-image {
    
    
  }


.s-d6474104-6584-4fb4-a54e-89f59cafaa57 .shogun-image-content {
  
    align-items: center;
  
}

.s-d6474104-6584-4fb4-a54e-89f59cafaa57.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d6474104-6584-4fb4-a54e-89f59cafaa57.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d6474104-6584-4fb4-a54e-89f59cafaa57.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d6474104-6584-4fb4-a54e-89f59cafaa57 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-d6474104-6584-4fb4-a54e-89f59cafaa57.shogun-image-container {
      position: relative;
    }

    .s-d6474104-6584-4fb4-a54e-89f59cafaa57.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d6474104-6584-4fb4-a54e-89f59cafaa57.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d6474104-6584-4fb4-a54e-89f59cafaa57 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-d6474104-6584-4fb4-a54e-89f59cafaa57 img.shogun-image,
  #s-d6474104-6584-4fb4-a54e-89f59cafaa57 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d6474104-6584-4fb4-a54e-89f59cafaa57 {
    width: 100%;
    height: auto;
  }

  #s-d6474104-6584-4fb4-a54e-89f59cafaa57 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d6474104-6584-4fb4-a54e-89f59cafaa57.shogun-image {
    
    
  }


.s-d6474104-6584-4fb4-a54e-89f59cafaa57 .shogun-image-content {
  
    align-items: center;
  
}

.s-d6474104-6584-4fb4-a54e-89f59cafaa57.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d6474104-6584-4fb4-a54e-89f59cafaa57.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d6474104-6584-4fb4-a54e-89f59cafaa57.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d6474104-6584-4fb4-a54e-89f59cafaa57 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-d6474104-6584-4fb4-a54e-89f59cafaa57.shogun-image-container {
      position: relative;
    }

    .s-d6474104-6584-4fb4-a54e-89f59cafaa57.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d6474104-6584-4fb4-a54e-89f59cafaa57.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d6474104-6584-4fb4-a54e-89f59cafaa57 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-cfdd45f1-b45e-453f-b893-d5ddf388800d {
  max-width: 1080px;
aspect-ratio: 1960/1307;
text-align: center;
}





  #s-cfdd45f1-b45e-453f-b893-d5ddf388800d img.shogun-image,
  #s-cfdd45f1-b45e-453f-b893-d5ddf388800d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cfdd45f1-b45e-453f-b893-d5ddf388800d {
    width: 100%;
    height: auto;
  }

  #s-cfdd45f1-b45e-453f-b893-d5ddf388800d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shogun-image {
    
    
  }


.s-cfdd45f1-b45e-453f-b893-d5ddf388800d .shogun-image-content {
  
    align-items: center;
  
}

.s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cfdd45f1-b45e-453f-b893-d5ddf388800d {
      --shg-aspect-ratio: calc(1960/1307); 
    }

    .s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shogun-image-container {
      position: relative;
    }

    .s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cfdd45f1-b45e-453f-b893-d5ddf388800d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-cfdd45f1-b45e-453f-b893-d5ddf388800d img.shogun-image,
  #s-cfdd45f1-b45e-453f-b893-d5ddf388800d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cfdd45f1-b45e-453f-b893-d5ddf388800d {
    width: 100%;
    height: auto;
  }

  #s-cfdd45f1-b45e-453f-b893-d5ddf388800d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shogun-image {
    
    
  }


.s-cfdd45f1-b45e-453f-b893-d5ddf388800d .shogun-image-content {
  
    align-items: center;
  
}

.s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cfdd45f1-b45e-453f-b893-d5ddf388800d {
      --shg-aspect-ratio: calc(1960/1307); 
    }

    .s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shogun-image-container {
      position: relative;
    }

    .s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cfdd45f1-b45e-453f-b893-d5ddf388800d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-cfdd45f1-b45e-453f-b893-d5ddf388800d img.shogun-image,
  #s-cfdd45f1-b45e-453f-b893-d5ddf388800d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cfdd45f1-b45e-453f-b893-d5ddf388800d {
    width: 100%;
    height: auto;
  }

  #s-cfdd45f1-b45e-453f-b893-d5ddf388800d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shogun-image {
    
    
  }


.s-cfdd45f1-b45e-453f-b893-d5ddf388800d .shogun-image-content {
  
    align-items: center;
  
}

.s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cfdd45f1-b45e-453f-b893-d5ddf388800d {
      --shg-aspect-ratio: calc(1960/1307); 
    }

    .s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shogun-image-container {
      position: relative;
    }

    .s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cfdd45f1-b45e-453f-b893-d5ddf388800d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-cfdd45f1-b45e-453f-b893-d5ddf388800d img.shogun-image,
  #s-cfdd45f1-b45e-453f-b893-d5ddf388800d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cfdd45f1-b45e-453f-b893-d5ddf388800d {
    width: 100%;
    height: auto;
  }

  #s-cfdd45f1-b45e-453f-b893-d5ddf388800d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shogun-image {
    
    
  }


.s-cfdd45f1-b45e-453f-b893-d5ddf388800d .shogun-image-content {
  
    align-items: center;
  
}

.s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cfdd45f1-b45e-453f-b893-d5ddf388800d {
      --shg-aspect-ratio: calc(1960/1307); 
    }

    .s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shogun-image-container {
      position: relative;
    }

    .s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cfdd45f1-b45e-453f-b893-d5ddf388800d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-cfdd45f1-b45e-453f-b893-d5ddf388800d img.shogun-image,
  #s-cfdd45f1-b45e-453f-b893-d5ddf388800d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cfdd45f1-b45e-453f-b893-d5ddf388800d {
    width: 100%;
    height: auto;
  }

  #s-cfdd45f1-b45e-453f-b893-d5ddf388800d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shogun-image {
    
    
  }


.s-cfdd45f1-b45e-453f-b893-d5ddf388800d .shogun-image-content {
  
    align-items: center;
  
}

.s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cfdd45f1-b45e-453f-b893-d5ddf388800d {
      --shg-aspect-ratio: calc(1960/1307); 
    }

    .s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shogun-image-container {
      position: relative;
    }

    .s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cfdd45f1-b45e-453f-b893-d5ddf388800d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cfdd45f1-b45e-453f-b893-d5ddf388800d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-c7ecc5c3-80c0-4efd-99dd-aa70e38caa78 {
  min-height: 50px;
}








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

#s-29834dbe-e90b-4e1f-a1ab-f7f56664a73b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-29834dbe-e90b-4e1f-a1ab-f7f56664a73b .shogun-heading-component h1 {
  color: ;
  font-weight:  600 ;
  font-family: "Inter";
  font-style:  normal ;
  
  
  
  
}



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

#s-51fd1dd5-f2e0-43a3-8a00-52996df1d92a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-51fd1dd5-f2e0-43a3-8a00-52996df1d92a .shogun-heading-component h1 {
  color: ;
  font-weight:  600 ;
  font-family: "Inter";
  font-style:  normal ;
  
  
  
  
}



#s-e615208f-eb63-4295-a0f2-726af592aed1 {
  margin-left: 10%;
margin-right: 10%;
}

#s-efcf1932-e70e-461c-9a5a-4fa9416ff5a7 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-efcf1932-e70e-461c-9a5a-4fa9416ff5a7 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-efcf1932-e70e-461c-9a5a-4fa9416ff5a7 .shg-sld-nav-button.shg-sld-left,
#s-efcf1932-e70e-461c-9a5a-4fa9416ff5a7 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 {
  max-width: 1080px;
aspect-ratio: 1920/1280;
text-align: center;
}





  #s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 img.shogun-image,
  #s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 {
    width: 100%;
    height: auto;
  }

  #s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shogun-image {
    
    
  }


.s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 .shogun-image-content {
  
    align-items: center;
  
}

.s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shogun-image-container {
      position: relative;
    }

    .s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 img.shogun-image,
  #s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 {
    width: 100%;
    height: auto;
  }

  #s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shogun-image {
    
    
  }


.s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 .shogun-image-content {
  
    align-items: center;
  
}

.s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shogun-image-container {
      position: relative;
    }

    .s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 img.shogun-image,
  #s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 {
    width: 100%;
    height: auto;
  }

  #s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shogun-image {
    
    
  }


.s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 .shogun-image-content {
  
    align-items: center;
  
}

.s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shogun-image-container {
      position: relative;
    }

    .s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 img.shogun-image,
  #s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 {
    width: 100%;
    height: auto;
  }

  #s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shogun-image {
    
    
  }


.s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 .shogun-image-content {
  
    align-items: center;
  
}

.s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shogun-image-container {
      position: relative;
    }

    .s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 img.shogun-image,
  #s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 {
    width: 100%;
    height: auto;
  }

  #s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shogun-image {
    
    
  }


.s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 .shogun-image-content {
  
    align-items: center;
  
}

.s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shogun-image-container {
      position: relative;
    }

    .s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b3d0c7bc-516f-47f3-ba30-0bf5b96667a5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c {
  max-width: 1080px;
aspect-ratio: 1920/1280;
text-align: center;
}





  #s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c img.shogun-image,
  #s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c {
    width: 100%;
    height: auto;
  }

  #s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shogun-image {
    
    
  }


.s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c .shogun-image-content {
  
    align-items: center;
  
}

.s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shogun-image-container {
      position: relative;
    }

    .s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c img.shogun-image,
  #s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c {
    width: 100%;
    height: auto;
  }

  #s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shogun-image {
    
    
  }


.s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c .shogun-image-content {
  
    align-items: center;
  
}

.s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shogun-image-container {
      position: relative;
    }

    .s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c img.shogun-image,
  #s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c {
    width: 100%;
    height: auto;
  }

  #s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shogun-image {
    
    
  }


.s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c .shogun-image-content {
  
    align-items: center;
  
}

.s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shogun-image-container {
      position: relative;
    }

    .s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c img.shogun-image,
  #s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c {
    width: 100%;
    height: auto;
  }

  #s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shogun-image {
    
    
  }


.s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c .shogun-image-content {
  
    align-items: center;
  
}

.s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shogun-image-container {
      position: relative;
    }

    .s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c img.shogun-image,
  #s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c {
    width: 100%;
    height: auto;
  }

  #s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shogun-image {
    
    
  }


.s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c .shogun-image-content {
  
    align-items: center;
  
}

.s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shogun-image-container {
      position: relative;
    }

    .s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5e1b3d15-b15e-4953-a7b4-9a281bcd477c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-3a563dac-dc96-40c4-a560-c459b377bf1b {
  max-width: 1080px;
aspect-ratio: 6192/4128;
text-align: center;
}





  #s-3a563dac-dc96-40c4-a560-c459b377bf1b img.shogun-image,
  #s-3a563dac-dc96-40c4-a560-c459b377bf1b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3a563dac-dc96-40c4-a560-c459b377bf1b {
    width: 100%;
    height: auto;
  }

  #s-3a563dac-dc96-40c4-a560-c459b377bf1b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3a563dac-dc96-40c4-a560-c459b377bf1b.shogun-image {
    
    
  }


.s-3a563dac-dc96-40c4-a560-c459b377bf1b .shogun-image-content {
  
    align-items: center;
  
}

.s-3a563dac-dc96-40c4-a560-c459b377bf1b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3a563dac-dc96-40c4-a560-c459b377bf1b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a563dac-dc96-40c4-a560-c459b377bf1b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3a563dac-dc96-40c4-a560-c459b377bf1b {
      --shg-aspect-ratio: calc(6192/4128); 
    }

    .s-3a563dac-dc96-40c4-a560-c459b377bf1b.shogun-image-container {
      position: relative;
    }

    .s-3a563dac-dc96-40c4-a560-c459b377bf1b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3a563dac-dc96-40c4-a560-c459b377bf1b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3a563dac-dc96-40c4-a560-c459b377bf1b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-3a563dac-dc96-40c4-a560-c459b377bf1b img.shogun-image,
  #s-3a563dac-dc96-40c4-a560-c459b377bf1b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3a563dac-dc96-40c4-a560-c459b377bf1b {
    width: 100%;
    height: auto;
  }

  #s-3a563dac-dc96-40c4-a560-c459b377bf1b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3a563dac-dc96-40c4-a560-c459b377bf1b.shogun-image {
    
    
  }


.s-3a563dac-dc96-40c4-a560-c459b377bf1b .shogun-image-content {
  
    align-items: center;
  
}

.s-3a563dac-dc96-40c4-a560-c459b377bf1b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3a563dac-dc96-40c4-a560-c459b377bf1b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a563dac-dc96-40c4-a560-c459b377bf1b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3a563dac-dc96-40c4-a560-c459b377bf1b {
      --shg-aspect-ratio: calc(6192/4128); 
    }

    .s-3a563dac-dc96-40c4-a560-c459b377bf1b.shogun-image-container {
      position: relative;
    }

    .s-3a563dac-dc96-40c4-a560-c459b377bf1b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3a563dac-dc96-40c4-a560-c459b377bf1b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3a563dac-dc96-40c4-a560-c459b377bf1b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-3a563dac-dc96-40c4-a560-c459b377bf1b img.shogun-image,
  #s-3a563dac-dc96-40c4-a560-c459b377bf1b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3a563dac-dc96-40c4-a560-c459b377bf1b {
    width: 100%;
    height: auto;
  }

  #s-3a563dac-dc96-40c4-a560-c459b377bf1b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3a563dac-dc96-40c4-a560-c459b377bf1b.shogun-image {
    
    
  }


.s-3a563dac-dc96-40c4-a560-c459b377bf1b .shogun-image-content {
  
    align-items: center;
  
}

.s-3a563dac-dc96-40c4-a560-c459b377bf1b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3a563dac-dc96-40c4-a560-c459b377bf1b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a563dac-dc96-40c4-a560-c459b377bf1b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3a563dac-dc96-40c4-a560-c459b377bf1b {
      --shg-aspect-ratio: calc(6192/4128); 
    }

    .s-3a563dac-dc96-40c4-a560-c459b377bf1b.shogun-image-container {
      position: relative;
    }

    .s-3a563dac-dc96-40c4-a560-c459b377bf1b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3a563dac-dc96-40c4-a560-c459b377bf1b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3a563dac-dc96-40c4-a560-c459b377bf1b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-3a563dac-dc96-40c4-a560-c459b377bf1b img.shogun-image,
  #s-3a563dac-dc96-40c4-a560-c459b377bf1b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3a563dac-dc96-40c4-a560-c459b377bf1b {
    width: 100%;
    height: auto;
  }

  #s-3a563dac-dc96-40c4-a560-c459b377bf1b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3a563dac-dc96-40c4-a560-c459b377bf1b.shogun-image {
    
    
  }


.s-3a563dac-dc96-40c4-a560-c459b377bf1b .shogun-image-content {
  
    align-items: center;
  
}

.s-3a563dac-dc96-40c4-a560-c459b377bf1b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3a563dac-dc96-40c4-a560-c459b377bf1b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a563dac-dc96-40c4-a560-c459b377bf1b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3a563dac-dc96-40c4-a560-c459b377bf1b {
      --shg-aspect-ratio: calc(6192/4128); 
    }

    .s-3a563dac-dc96-40c4-a560-c459b377bf1b.shogun-image-container {
      position: relative;
    }

    .s-3a563dac-dc96-40c4-a560-c459b377bf1b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3a563dac-dc96-40c4-a560-c459b377bf1b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3a563dac-dc96-40c4-a560-c459b377bf1b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-3a563dac-dc96-40c4-a560-c459b377bf1b img.shogun-image,
  #s-3a563dac-dc96-40c4-a560-c459b377bf1b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3a563dac-dc96-40c4-a560-c459b377bf1b {
    width: 100%;
    height: auto;
  }

  #s-3a563dac-dc96-40c4-a560-c459b377bf1b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3a563dac-dc96-40c4-a560-c459b377bf1b.shogun-image {
    
    
  }


.s-3a563dac-dc96-40c4-a560-c459b377bf1b .shogun-image-content {
  
    align-items: center;
  
}

.s-3a563dac-dc96-40c4-a560-c459b377bf1b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3a563dac-dc96-40c4-a560-c459b377bf1b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a563dac-dc96-40c4-a560-c459b377bf1b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3a563dac-dc96-40c4-a560-c459b377bf1b {
      --shg-aspect-ratio: calc(6192/4128); 
    }

    .s-3a563dac-dc96-40c4-a560-c459b377bf1b.shogun-image-container {
      position: relative;
    }

    .s-3a563dac-dc96-40c4-a560-c459b377bf1b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3a563dac-dc96-40c4-a560-c459b377bf1b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3a563dac-dc96-40c4-a560-c459b377bf1b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-fd572b54-2773-4351-b807-939e9cf7733a {
  max-width: 1080px;
aspect-ratio: 1920/1280;
text-align: center;
}





  #s-fd572b54-2773-4351-b807-939e9cf7733a img.shogun-image,
  #s-fd572b54-2773-4351-b807-939e9cf7733a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fd572b54-2773-4351-b807-939e9cf7733a {
    width: 100%;
    height: auto;
  }

  #s-fd572b54-2773-4351-b807-939e9cf7733a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fd572b54-2773-4351-b807-939e9cf7733a.shogun-image {
    
    
  }


.s-fd572b54-2773-4351-b807-939e9cf7733a .shogun-image-content {
  
    align-items: center;
  
}

.s-fd572b54-2773-4351-b807-939e9cf7733a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd572b54-2773-4351-b807-939e9cf7733a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd572b54-2773-4351-b807-939e9cf7733a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd572b54-2773-4351-b807-939e9cf7733a {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-fd572b54-2773-4351-b807-939e9cf7733a.shogun-image-container {
      position: relative;
    }

    .s-fd572b54-2773-4351-b807-939e9cf7733a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd572b54-2773-4351-b807-939e9cf7733a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd572b54-2773-4351-b807-939e9cf7733a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-fd572b54-2773-4351-b807-939e9cf7733a img.shogun-image,
  #s-fd572b54-2773-4351-b807-939e9cf7733a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fd572b54-2773-4351-b807-939e9cf7733a {
    width: 100%;
    height: auto;
  }

  #s-fd572b54-2773-4351-b807-939e9cf7733a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fd572b54-2773-4351-b807-939e9cf7733a.shogun-image {
    
    
  }


.s-fd572b54-2773-4351-b807-939e9cf7733a .shogun-image-content {
  
    align-items: center;
  
}

.s-fd572b54-2773-4351-b807-939e9cf7733a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd572b54-2773-4351-b807-939e9cf7733a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd572b54-2773-4351-b807-939e9cf7733a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd572b54-2773-4351-b807-939e9cf7733a {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-fd572b54-2773-4351-b807-939e9cf7733a.shogun-image-container {
      position: relative;
    }

    .s-fd572b54-2773-4351-b807-939e9cf7733a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd572b54-2773-4351-b807-939e9cf7733a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd572b54-2773-4351-b807-939e9cf7733a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-fd572b54-2773-4351-b807-939e9cf7733a img.shogun-image,
  #s-fd572b54-2773-4351-b807-939e9cf7733a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fd572b54-2773-4351-b807-939e9cf7733a {
    width: 100%;
    height: auto;
  }

  #s-fd572b54-2773-4351-b807-939e9cf7733a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fd572b54-2773-4351-b807-939e9cf7733a.shogun-image {
    
    
  }


.s-fd572b54-2773-4351-b807-939e9cf7733a .shogun-image-content {
  
    align-items: center;
  
}

.s-fd572b54-2773-4351-b807-939e9cf7733a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd572b54-2773-4351-b807-939e9cf7733a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd572b54-2773-4351-b807-939e9cf7733a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd572b54-2773-4351-b807-939e9cf7733a {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-fd572b54-2773-4351-b807-939e9cf7733a.shogun-image-container {
      position: relative;
    }

    .s-fd572b54-2773-4351-b807-939e9cf7733a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd572b54-2773-4351-b807-939e9cf7733a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd572b54-2773-4351-b807-939e9cf7733a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-fd572b54-2773-4351-b807-939e9cf7733a img.shogun-image,
  #s-fd572b54-2773-4351-b807-939e9cf7733a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fd572b54-2773-4351-b807-939e9cf7733a {
    width: 100%;
    height: auto;
  }

  #s-fd572b54-2773-4351-b807-939e9cf7733a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fd572b54-2773-4351-b807-939e9cf7733a.shogun-image {
    
    
  }


.s-fd572b54-2773-4351-b807-939e9cf7733a .shogun-image-content {
  
    align-items: center;
  
}

.s-fd572b54-2773-4351-b807-939e9cf7733a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd572b54-2773-4351-b807-939e9cf7733a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd572b54-2773-4351-b807-939e9cf7733a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd572b54-2773-4351-b807-939e9cf7733a {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-fd572b54-2773-4351-b807-939e9cf7733a.shogun-image-container {
      position: relative;
    }

    .s-fd572b54-2773-4351-b807-939e9cf7733a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd572b54-2773-4351-b807-939e9cf7733a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd572b54-2773-4351-b807-939e9cf7733a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-fd572b54-2773-4351-b807-939e9cf7733a img.shogun-image,
  #s-fd572b54-2773-4351-b807-939e9cf7733a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fd572b54-2773-4351-b807-939e9cf7733a {
    width: 100%;
    height: auto;
  }

  #s-fd572b54-2773-4351-b807-939e9cf7733a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fd572b54-2773-4351-b807-939e9cf7733a.shogun-image {
    
    
  }


.s-fd572b54-2773-4351-b807-939e9cf7733a .shogun-image-content {
  
    align-items: center;
  
}

.s-fd572b54-2773-4351-b807-939e9cf7733a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd572b54-2773-4351-b807-939e9cf7733a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd572b54-2773-4351-b807-939e9cf7733a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd572b54-2773-4351-b807-939e9cf7733a {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-fd572b54-2773-4351-b807-939e9cf7733a.shogun-image-container {
      position: relative;
    }

    .s-fd572b54-2773-4351-b807-939e9cf7733a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd572b54-2773-4351-b807-939e9cf7733a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd572b54-2773-4351-b807-939e9cf7733a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 {
  max-width: 1080px;
aspect-ratio: 1920/1280;
text-align: center;
}





  #s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 img.shogun-image,
  #s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 {
    width: 100%;
    height: auto;
  }

  #s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shogun-image {
    
    
  }


.s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 .shogun-image-content {
  
    align-items: center;
  
}

.s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shogun-image-container {
      position: relative;
    }

    .s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 img.shogun-image,
  #s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 {
    width: 100%;
    height: auto;
  }

  #s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shogun-image {
    
    
  }


.s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 .shogun-image-content {
  
    align-items: center;
  
}

.s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shogun-image-container {
      position: relative;
    }

    .s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 img.shogun-image,
  #s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 {
    width: 100%;
    height: auto;
  }

  #s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shogun-image {
    
    
  }


.s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 .shogun-image-content {
  
    align-items: center;
  
}

.s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shogun-image-container {
      position: relative;
    }

    .s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 img.shogun-image,
  #s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 {
    width: 100%;
    height: auto;
  }

  #s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shogun-image {
    
    
  }


.s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 .shogun-image-content {
  
    align-items: center;
  
}

.s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shogun-image-container {
      position: relative;
    }

    .s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 img.shogun-image,
  #s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 {
    width: 100%;
    height: auto;
  }

  #s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shogun-image {
    
    
  }


.s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 .shogun-image-content {
  
    align-items: center;
  
}

.s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shogun-image-container {
      position: relative;
    }

    .s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-aa02a47a-35fa-4be3-bf78-b1a9975e5665.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-aa02a47a-35fa-4be3-bf78-b1a9975e5665 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-7d843993-7af7-45d0-b96c-2c51303eaa2b {
  max-width: 1080px;
aspect-ratio: 1920/1280;
text-align: center;
}





  #s-7d843993-7af7-45d0-b96c-2c51303eaa2b img.shogun-image,
  #s-7d843993-7af7-45d0-b96c-2c51303eaa2b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7d843993-7af7-45d0-b96c-2c51303eaa2b {
    width: 100%;
    height: auto;
  }

  #s-7d843993-7af7-45d0-b96c-2c51303eaa2b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shogun-image {
    
    
  }


.s-7d843993-7af7-45d0-b96c-2c51303eaa2b .shogun-image-content {
  
    align-items: center;
  
}

.s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7d843993-7af7-45d0-b96c-2c51303eaa2b {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shogun-image-container {
      position: relative;
    }

    .s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d843993-7af7-45d0-b96c-2c51303eaa2b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-7d843993-7af7-45d0-b96c-2c51303eaa2b img.shogun-image,
  #s-7d843993-7af7-45d0-b96c-2c51303eaa2b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7d843993-7af7-45d0-b96c-2c51303eaa2b {
    width: 100%;
    height: auto;
  }

  #s-7d843993-7af7-45d0-b96c-2c51303eaa2b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shogun-image {
    
    
  }


.s-7d843993-7af7-45d0-b96c-2c51303eaa2b .shogun-image-content {
  
    align-items: center;
  
}

.s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7d843993-7af7-45d0-b96c-2c51303eaa2b {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shogun-image-container {
      position: relative;
    }

    .s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d843993-7af7-45d0-b96c-2c51303eaa2b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-7d843993-7af7-45d0-b96c-2c51303eaa2b img.shogun-image,
  #s-7d843993-7af7-45d0-b96c-2c51303eaa2b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7d843993-7af7-45d0-b96c-2c51303eaa2b {
    width: 100%;
    height: auto;
  }

  #s-7d843993-7af7-45d0-b96c-2c51303eaa2b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shogun-image {
    
    
  }


.s-7d843993-7af7-45d0-b96c-2c51303eaa2b .shogun-image-content {
  
    align-items: center;
  
}

.s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7d843993-7af7-45d0-b96c-2c51303eaa2b {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shogun-image-container {
      position: relative;
    }

    .s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d843993-7af7-45d0-b96c-2c51303eaa2b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-7d843993-7af7-45d0-b96c-2c51303eaa2b img.shogun-image,
  #s-7d843993-7af7-45d0-b96c-2c51303eaa2b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7d843993-7af7-45d0-b96c-2c51303eaa2b {
    width: 100%;
    height: auto;
  }

  #s-7d843993-7af7-45d0-b96c-2c51303eaa2b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shogun-image {
    
    
  }


.s-7d843993-7af7-45d0-b96c-2c51303eaa2b .shogun-image-content {
  
    align-items: center;
  
}

.s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7d843993-7af7-45d0-b96c-2c51303eaa2b {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shogun-image-container {
      position: relative;
    }

    .s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d843993-7af7-45d0-b96c-2c51303eaa2b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-7d843993-7af7-45d0-b96c-2c51303eaa2b img.shogun-image,
  #s-7d843993-7af7-45d0-b96c-2c51303eaa2b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7d843993-7af7-45d0-b96c-2c51303eaa2b {
    width: 100%;
    height: auto;
  }

  #s-7d843993-7af7-45d0-b96c-2c51303eaa2b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shogun-image {
    
    
  }


.s-7d843993-7af7-45d0-b96c-2c51303eaa2b .shogun-image-content {
  
    align-items: center;
  
}

.s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7d843993-7af7-45d0-b96c-2c51303eaa2b {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shogun-image-container {
      position: relative;
    }

    .s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d843993-7af7-45d0-b96c-2c51303eaa2b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d843993-7af7-45d0-b96c-2c51303eaa2b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-6ee4be19-02f1-4771-9862-a7d5001fd43e {
  max-width: 1080px;
aspect-ratio: 1920/1280;
text-align: center;
}





  #s-6ee4be19-02f1-4771-9862-a7d5001fd43e img.shogun-image,
  #s-6ee4be19-02f1-4771-9862-a7d5001fd43e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6ee4be19-02f1-4771-9862-a7d5001fd43e {
    width: 100%;
    height: auto;
  }

  #s-6ee4be19-02f1-4771-9862-a7d5001fd43e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shogun-image {
    
    
  }


.s-6ee4be19-02f1-4771-9862-a7d5001fd43e .shogun-image-content {
  
    align-items: center;
  
}

.s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6ee4be19-02f1-4771-9862-a7d5001fd43e {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shogun-image-container {
      position: relative;
    }

    .s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6ee4be19-02f1-4771-9862-a7d5001fd43e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-6ee4be19-02f1-4771-9862-a7d5001fd43e img.shogun-image,
  #s-6ee4be19-02f1-4771-9862-a7d5001fd43e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6ee4be19-02f1-4771-9862-a7d5001fd43e {
    width: 100%;
    height: auto;
  }

  #s-6ee4be19-02f1-4771-9862-a7d5001fd43e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shogun-image {
    
    
  }


.s-6ee4be19-02f1-4771-9862-a7d5001fd43e .shogun-image-content {
  
    align-items: center;
  
}

.s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6ee4be19-02f1-4771-9862-a7d5001fd43e {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shogun-image-container {
      position: relative;
    }

    .s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6ee4be19-02f1-4771-9862-a7d5001fd43e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-6ee4be19-02f1-4771-9862-a7d5001fd43e img.shogun-image,
  #s-6ee4be19-02f1-4771-9862-a7d5001fd43e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6ee4be19-02f1-4771-9862-a7d5001fd43e {
    width: 100%;
    height: auto;
  }

  #s-6ee4be19-02f1-4771-9862-a7d5001fd43e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shogun-image {
    
    
  }


.s-6ee4be19-02f1-4771-9862-a7d5001fd43e .shogun-image-content {
  
    align-items: center;
  
}

.s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6ee4be19-02f1-4771-9862-a7d5001fd43e {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shogun-image-container {
      position: relative;
    }

    .s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6ee4be19-02f1-4771-9862-a7d5001fd43e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-6ee4be19-02f1-4771-9862-a7d5001fd43e img.shogun-image,
  #s-6ee4be19-02f1-4771-9862-a7d5001fd43e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6ee4be19-02f1-4771-9862-a7d5001fd43e {
    width: 100%;
    height: auto;
  }

  #s-6ee4be19-02f1-4771-9862-a7d5001fd43e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shogun-image {
    
    
  }


.s-6ee4be19-02f1-4771-9862-a7d5001fd43e .shogun-image-content {
  
    align-items: center;
  
}

.s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6ee4be19-02f1-4771-9862-a7d5001fd43e {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shogun-image-container {
      position: relative;
    }

    .s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6ee4be19-02f1-4771-9862-a7d5001fd43e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-6ee4be19-02f1-4771-9862-a7d5001fd43e img.shogun-image,
  #s-6ee4be19-02f1-4771-9862-a7d5001fd43e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6ee4be19-02f1-4771-9862-a7d5001fd43e {
    width: 100%;
    height: auto;
  }

  #s-6ee4be19-02f1-4771-9862-a7d5001fd43e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shogun-image {
    
    
  }


.s-6ee4be19-02f1-4771-9862-a7d5001fd43e .shogun-image-content {
  
    align-items: center;
  
}

.s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6ee4be19-02f1-4771-9862-a7d5001fd43e {
      --shg-aspect-ratio: calc(1920/1280); 
    }

    .s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shogun-image-container {
      position: relative;
    }

    .s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6ee4be19-02f1-4771-9862-a7d5001fd43e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6ee4be19-02f1-4771-9862-a7d5001fd43e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-efbbf1ee-67c0-420f-96f1-e7076a30735c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-efbbf1ee-67c0-420f-96f1-e7076a30735c .shogun-heading-component h1 {
  color: ;
  font-weight:  600 ;
  font-family: "Inter";
  font-style:  normal ;
  
  
  
  
}



#s-6415990e-2561-494b-9400-4d0bf595da6e {
  margin-left: 10%;
margin-right: 10%;
}

#s-bf15afb6-cead-471c-8eae-5eb176c46472 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-bf15afb6-cead-471c-8eae-5eb176c46472 .shogun-heading-component h1 {
  color: ;
  font-weight:  600 ;
  font-family: "Inter";
  font-style:  normal ;
  
  
  
  
}



#s-e8e7025c-9abc-4336-8187-59ec5a29b8d1 {
  margin-left: 10%;
margin-right: 10%;
}

#s-e00090ed-18da-4ccd-b535-edbd35049a00 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-e00090ed-18da-4ccd-b535-edbd35049a00 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-e00090ed-18da-4ccd-b535-edbd35049a00 .shg-sld-nav-button.shg-sld-left,
#s-e00090ed-18da-4ccd-b535-edbd35049a00 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-60445d71-d454-4efd-98c9-e6f123ac48bf {
  max-width: 640px;
aspect-ratio: 1170/1200;
text-align: center;
}





  #s-60445d71-d454-4efd-98c9-e6f123ac48bf img.shogun-image,
  #s-60445d71-d454-4efd-98c9-e6f123ac48bf .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-60445d71-d454-4efd-98c9-e6f123ac48bf {
    width: 100%;
    height: auto;
  }

  #s-60445d71-d454-4efd-98c9-e6f123ac48bf img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-60445d71-d454-4efd-98c9-e6f123ac48bf.shogun-image {
    
    
  }


.s-60445d71-d454-4efd-98c9-e6f123ac48bf .shogun-image-content {
  
    align-items: center;
  
}

.s-60445d71-d454-4efd-98c9-e6f123ac48bf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60445d71-d454-4efd-98c9-e6f123ac48bf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60445d71-d454-4efd-98c9-e6f123ac48bf.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60445d71-d454-4efd-98c9-e6f123ac48bf {
      --shg-aspect-ratio: calc(1170/1200); 
    }

    .s-60445d71-d454-4efd-98c9-e6f123ac48bf.shogun-image-container {
      position: relative;
    }

    .s-60445d71-d454-4efd-98c9-e6f123ac48bf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60445d71-d454-4efd-98c9-e6f123ac48bf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60445d71-d454-4efd-98c9-e6f123ac48bf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-60445d71-d454-4efd-98c9-e6f123ac48bf img.shogun-image,
  #s-60445d71-d454-4efd-98c9-e6f123ac48bf .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-60445d71-d454-4efd-98c9-e6f123ac48bf {
    width: 100%;
    height: auto;
  }

  #s-60445d71-d454-4efd-98c9-e6f123ac48bf img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-60445d71-d454-4efd-98c9-e6f123ac48bf.shogun-image {
    
    
  }


.s-60445d71-d454-4efd-98c9-e6f123ac48bf .shogun-image-content {
  
    align-items: center;
  
}

.s-60445d71-d454-4efd-98c9-e6f123ac48bf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60445d71-d454-4efd-98c9-e6f123ac48bf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60445d71-d454-4efd-98c9-e6f123ac48bf.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60445d71-d454-4efd-98c9-e6f123ac48bf {
      --shg-aspect-ratio: calc(1170/1200); 
    }

    .s-60445d71-d454-4efd-98c9-e6f123ac48bf.shogun-image-container {
      position: relative;
    }

    .s-60445d71-d454-4efd-98c9-e6f123ac48bf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60445d71-d454-4efd-98c9-e6f123ac48bf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60445d71-d454-4efd-98c9-e6f123ac48bf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-60445d71-d454-4efd-98c9-e6f123ac48bf img.shogun-image,
  #s-60445d71-d454-4efd-98c9-e6f123ac48bf .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-60445d71-d454-4efd-98c9-e6f123ac48bf {
    width: 100%;
    height: auto;
  }

  #s-60445d71-d454-4efd-98c9-e6f123ac48bf img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-60445d71-d454-4efd-98c9-e6f123ac48bf.shogun-image {
    
    
  }


.s-60445d71-d454-4efd-98c9-e6f123ac48bf .shogun-image-content {
  
    align-items: center;
  
}

.s-60445d71-d454-4efd-98c9-e6f123ac48bf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60445d71-d454-4efd-98c9-e6f123ac48bf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60445d71-d454-4efd-98c9-e6f123ac48bf.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60445d71-d454-4efd-98c9-e6f123ac48bf {
      --shg-aspect-ratio: calc(1170/1200); 
    }

    .s-60445d71-d454-4efd-98c9-e6f123ac48bf.shogun-image-container {
      position: relative;
    }

    .s-60445d71-d454-4efd-98c9-e6f123ac48bf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60445d71-d454-4efd-98c9-e6f123ac48bf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60445d71-d454-4efd-98c9-e6f123ac48bf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-60445d71-d454-4efd-98c9-e6f123ac48bf img.shogun-image,
  #s-60445d71-d454-4efd-98c9-e6f123ac48bf .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-60445d71-d454-4efd-98c9-e6f123ac48bf {
    width: 100%;
    height: auto;
  }

  #s-60445d71-d454-4efd-98c9-e6f123ac48bf img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-60445d71-d454-4efd-98c9-e6f123ac48bf.shogun-image {
    
    
  }


.s-60445d71-d454-4efd-98c9-e6f123ac48bf .shogun-image-content {
  
    align-items: center;
  
}

.s-60445d71-d454-4efd-98c9-e6f123ac48bf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60445d71-d454-4efd-98c9-e6f123ac48bf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60445d71-d454-4efd-98c9-e6f123ac48bf.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60445d71-d454-4efd-98c9-e6f123ac48bf {
      --shg-aspect-ratio: calc(1170/1200); 
    }

    .s-60445d71-d454-4efd-98c9-e6f123ac48bf.shogun-image-container {
      position: relative;
    }

    .s-60445d71-d454-4efd-98c9-e6f123ac48bf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60445d71-d454-4efd-98c9-e6f123ac48bf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60445d71-d454-4efd-98c9-e6f123ac48bf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-60445d71-d454-4efd-98c9-e6f123ac48bf img.shogun-image,
  #s-60445d71-d454-4efd-98c9-e6f123ac48bf .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-60445d71-d454-4efd-98c9-e6f123ac48bf {
    width: 100%;
    height: auto;
  }

  #s-60445d71-d454-4efd-98c9-e6f123ac48bf img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-60445d71-d454-4efd-98c9-e6f123ac48bf.shogun-image {
    
    
  }


.s-60445d71-d454-4efd-98c9-e6f123ac48bf .shogun-image-content {
  
    align-items: center;
  
}

.s-60445d71-d454-4efd-98c9-e6f123ac48bf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60445d71-d454-4efd-98c9-e6f123ac48bf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60445d71-d454-4efd-98c9-e6f123ac48bf.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60445d71-d454-4efd-98c9-e6f123ac48bf {
      --shg-aspect-ratio: calc(1170/1200); 
    }

    .s-60445d71-d454-4efd-98c9-e6f123ac48bf.shogun-image-container {
      position: relative;
    }

    .s-60445d71-d454-4efd-98c9-e6f123ac48bf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60445d71-d454-4efd-98c9-e6f123ac48bf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60445d71-d454-4efd-98c9-e6f123ac48bf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 {
  max-width: 640px;
aspect-ratio: 1247/1200;
text-align: center;
}





  #s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 img.shogun-image,
  #s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 {
    width: 100%;
    height: auto;
  }

  #s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shogun-image {
    
    
  }


.s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 .shogun-image-content {
  
    align-items: center;
  
}

.s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 {
      --shg-aspect-ratio: calc(1247/1200); 
    }

    .s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shogun-image-container {
      position: relative;
    }

    .s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 img.shogun-image,
  #s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 {
    width: 100%;
    height: auto;
  }

  #s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shogun-image {
    
    
  }


.s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 .shogun-image-content {
  
    align-items: center;
  
}

.s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 {
      --shg-aspect-ratio: calc(1247/1200); 
    }

    .s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shogun-image-container {
      position: relative;
    }

    .s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 img.shogun-image,
  #s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 {
    width: 100%;
    height: auto;
  }

  #s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shogun-image {
    
    
  }


.s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 .shogun-image-content {
  
    align-items: center;
  
}

.s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 {
      --shg-aspect-ratio: calc(1247/1200); 
    }

    .s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shogun-image-container {
      position: relative;
    }

    .s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 img.shogun-image,
  #s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 {
    width: 100%;
    height: auto;
  }

  #s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shogun-image {
    
    
  }


.s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 .shogun-image-content {
  
    align-items: center;
  
}

.s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 {
      --shg-aspect-ratio: calc(1247/1200); 
    }

    .s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shogun-image-container {
      position: relative;
    }

    .s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 img.shogun-image,
  #s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 {
    width: 100%;
    height: auto;
  }

  #s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shogun-image {
    
    
  }


.s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 .shogun-image-content {
  
    align-items: center;
  
}

.s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 {
      --shg-aspect-ratio: calc(1247/1200); 
    }

    .s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shogun-image-container {
      position: relative;
    }

    .s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9f0b14a8-f1f5-481d-9489-7e6f8e4123a2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-783e8428-2c18-4508-8d71-1dace5c1040d {
  max-width: 640px;
aspect-ratio: 1960/1778;
text-align: center;
}





  #s-783e8428-2c18-4508-8d71-1dace5c1040d img.shogun-image,
  #s-783e8428-2c18-4508-8d71-1dace5c1040d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-783e8428-2c18-4508-8d71-1dace5c1040d {
    width: 100%;
    height: auto;
  }

  #s-783e8428-2c18-4508-8d71-1dace5c1040d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-783e8428-2c18-4508-8d71-1dace5c1040d.shogun-image {
    
    
  }


.s-783e8428-2c18-4508-8d71-1dace5c1040d .shogun-image-content {
  
    align-items: center;
  
}

.s-783e8428-2c18-4508-8d71-1dace5c1040d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-783e8428-2c18-4508-8d71-1dace5c1040d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-783e8428-2c18-4508-8d71-1dace5c1040d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-783e8428-2c18-4508-8d71-1dace5c1040d {
      --shg-aspect-ratio: calc(1960/1778); 
    }

    .s-783e8428-2c18-4508-8d71-1dace5c1040d.shogun-image-container {
      position: relative;
    }

    .s-783e8428-2c18-4508-8d71-1dace5c1040d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-783e8428-2c18-4508-8d71-1dace5c1040d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-783e8428-2c18-4508-8d71-1dace5c1040d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-783e8428-2c18-4508-8d71-1dace5c1040d img.shogun-image,
  #s-783e8428-2c18-4508-8d71-1dace5c1040d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-783e8428-2c18-4508-8d71-1dace5c1040d {
    width: 100%;
    height: auto;
  }

  #s-783e8428-2c18-4508-8d71-1dace5c1040d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-783e8428-2c18-4508-8d71-1dace5c1040d.shogun-image {
    
    
  }


.s-783e8428-2c18-4508-8d71-1dace5c1040d .shogun-image-content {
  
    align-items: center;
  
}

.s-783e8428-2c18-4508-8d71-1dace5c1040d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-783e8428-2c18-4508-8d71-1dace5c1040d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-783e8428-2c18-4508-8d71-1dace5c1040d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-783e8428-2c18-4508-8d71-1dace5c1040d {
      --shg-aspect-ratio: calc(1960/1778); 
    }

    .s-783e8428-2c18-4508-8d71-1dace5c1040d.shogun-image-container {
      position: relative;
    }

    .s-783e8428-2c18-4508-8d71-1dace5c1040d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-783e8428-2c18-4508-8d71-1dace5c1040d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-783e8428-2c18-4508-8d71-1dace5c1040d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-783e8428-2c18-4508-8d71-1dace5c1040d img.shogun-image,
  #s-783e8428-2c18-4508-8d71-1dace5c1040d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-783e8428-2c18-4508-8d71-1dace5c1040d {
    width: 100%;
    height: auto;
  }

  #s-783e8428-2c18-4508-8d71-1dace5c1040d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-783e8428-2c18-4508-8d71-1dace5c1040d.shogun-image {
    
    
  }


.s-783e8428-2c18-4508-8d71-1dace5c1040d .shogun-image-content {
  
    align-items: center;
  
}

.s-783e8428-2c18-4508-8d71-1dace5c1040d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-783e8428-2c18-4508-8d71-1dace5c1040d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-783e8428-2c18-4508-8d71-1dace5c1040d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-783e8428-2c18-4508-8d71-1dace5c1040d {
      --shg-aspect-ratio: calc(1960/1778); 
    }

    .s-783e8428-2c18-4508-8d71-1dace5c1040d.shogun-image-container {
      position: relative;
    }

    .s-783e8428-2c18-4508-8d71-1dace5c1040d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-783e8428-2c18-4508-8d71-1dace5c1040d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-783e8428-2c18-4508-8d71-1dace5c1040d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-783e8428-2c18-4508-8d71-1dace5c1040d img.shogun-image,
  #s-783e8428-2c18-4508-8d71-1dace5c1040d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-783e8428-2c18-4508-8d71-1dace5c1040d {
    width: 100%;
    height: auto;
  }

  #s-783e8428-2c18-4508-8d71-1dace5c1040d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-783e8428-2c18-4508-8d71-1dace5c1040d.shogun-image {
    
    
  }


.s-783e8428-2c18-4508-8d71-1dace5c1040d .shogun-image-content {
  
    align-items: center;
  
}

.s-783e8428-2c18-4508-8d71-1dace5c1040d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-783e8428-2c18-4508-8d71-1dace5c1040d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-783e8428-2c18-4508-8d71-1dace5c1040d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-783e8428-2c18-4508-8d71-1dace5c1040d {
      --shg-aspect-ratio: calc(1960/1778); 
    }

    .s-783e8428-2c18-4508-8d71-1dace5c1040d.shogun-image-container {
      position: relative;
    }

    .s-783e8428-2c18-4508-8d71-1dace5c1040d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-783e8428-2c18-4508-8d71-1dace5c1040d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-783e8428-2c18-4508-8d71-1dace5c1040d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-783e8428-2c18-4508-8d71-1dace5c1040d img.shogun-image,
  #s-783e8428-2c18-4508-8d71-1dace5c1040d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-783e8428-2c18-4508-8d71-1dace5c1040d {
    width: 100%;
    height: auto;
  }

  #s-783e8428-2c18-4508-8d71-1dace5c1040d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-783e8428-2c18-4508-8d71-1dace5c1040d.shogun-image {
    
    
  }


.s-783e8428-2c18-4508-8d71-1dace5c1040d .shogun-image-content {
  
    align-items: center;
  
}

.s-783e8428-2c18-4508-8d71-1dace5c1040d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-783e8428-2c18-4508-8d71-1dace5c1040d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-783e8428-2c18-4508-8d71-1dace5c1040d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-783e8428-2c18-4508-8d71-1dace5c1040d {
      --shg-aspect-ratio: calc(1960/1778); 
    }

    .s-783e8428-2c18-4508-8d71-1dace5c1040d.shogun-image-container {
      position: relative;
    }

    .s-783e8428-2c18-4508-8d71-1dace5c1040d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-783e8428-2c18-4508-8d71-1dace5c1040d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-783e8428-2c18-4508-8d71-1dace5c1040d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-082721b4-e11c-4c4d-933b-25b7306f1d59 {
  max-width: 1080px;
aspect-ratio: 1930/1322;
text-align: center;
}





  #s-082721b4-e11c-4c4d-933b-25b7306f1d59 img.shogun-image,
  #s-082721b4-e11c-4c4d-933b-25b7306f1d59 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-082721b4-e11c-4c4d-933b-25b7306f1d59 {
    width: 100%;
    height: auto;
  }

  #s-082721b4-e11c-4c4d-933b-25b7306f1d59 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-082721b4-e11c-4c4d-933b-25b7306f1d59.shogun-image {
    
    
  }


.s-082721b4-e11c-4c4d-933b-25b7306f1d59 .shogun-image-content {
  
    align-items: center;
  
}

.s-082721b4-e11c-4c4d-933b-25b7306f1d59.shg-align-container {
  display: flex;
  justify-content: center
}

.s-082721b4-e11c-4c4d-933b-25b7306f1d59.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-082721b4-e11c-4c4d-933b-25b7306f1d59.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-082721b4-e11c-4c4d-933b-25b7306f1d59 {
      --shg-aspect-ratio: calc(1930/1322); 
    }

    .s-082721b4-e11c-4c4d-933b-25b7306f1d59.shogun-image-container {
      position: relative;
    }

    .s-082721b4-e11c-4c4d-933b-25b7306f1d59.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-082721b4-e11c-4c4d-933b-25b7306f1d59.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-082721b4-e11c-4c4d-933b-25b7306f1d59 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-082721b4-e11c-4c4d-933b-25b7306f1d59 img.shogun-image,
  #s-082721b4-e11c-4c4d-933b-25b7306f1d59 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-082721b4-e11c-4c4d-933b-25b7306f1d59 {
    width: 100%;
    height: auto;
  }

  #s-082721b4-e11c-4c4d-933b-25b7306f1d59 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-082721b4-e11c-4c4d-933b-25b7306f1d59.shogun-image {
    
    
  }


.s-082721b4-e11c-4c4d-933b-25b7306f1d59 .shogun-image-content {
  
    align-items: center;
  
}

.s-082721b4-e11c-4c4d-933b-25b7306f1d59.shg-align-container {
  display: flex;
  justify-content: center
}

.s-082721b4-e11c-4c4d-933b-25b7306f1d59.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-082721b4-e11c-4c4d-933b-25b7306f1d59.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-082721b4-e11c-4c4d-933b-25b7306f1d59 {
      --shg-aspect-ratio: calc(1930/1322); 
    }

    .s-082721b4-e11c-4c4d-933b-25b7306f1d59.shogun-image-container {
      position: relative;
    }

    .s-082721b4-e11c-4c4d-933b-25b7306f1d59.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-082721b4-e11c-4c4d-933b-25b7306f1d59.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-082721b4-e11c-4c4d-933b-25b7306f1d59 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-082721b4-e11c-4c4d-933b-25b7306f1d59 img.shogun-image,
  #s-082721b4-e11c-4c4d-933b-25b7306f1d59 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-082721b4-e11c-4c4d-933b-25b7306f1d59 {
    width: 100%;
    height: auto;
  }

  #s-082721b4-e11c-4c4d-933b-25b7306f1d59 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-082721b4-e11c-4c4d-933b-25b7306f1d59.shogun-image {
    
    
  }


.s-082721b4-e11c-4c4d-933b-25b7306f1d59 .shogun-image-content {
  
    align-items: center;
  
}

.s-082721b4-e11c-4c4d-933b-25b7306f1d59.shg-align-container {
  display: flex;
  justify-content: center
}

.s-082721b4-e11c-4c4d-933b-25b7306f1d59.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-082721b4-e11c-4c4d-933b-25b7306f1d59.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-082721b4-e11c-4c4d-933b-25b7306f1d59 {
      --shg-aspect-ratio: calc(1930/1322); 
    }

    .s-082721b4-e11c-4c4d-933b-25b7306f1d59.shogun-image-container {
      position: relative;
    }

    .s-082721b4-e11c-4c4d-933b-25b7306f1d59.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-082721b4-e11c-4c4d-933b-25b7306f1d59.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-082721b4-e11c-4c4d-933b-25b7306f1d59 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-082721b4-e11c-4c4d-933b-25b7306f1d59 img.shogun-image,
  #s-082721b4-e11c-4c4d-933b-25b7306f1d59 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-082721b4-e11c-4c4d-933b-25b7306f1d59 {
    width: 100%;
    height: auto;
  }

  #s-082721b4-e11c-4c4d-933b-25b7306f1d59 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-082721b4-e11c-4c4d-933b-25b7306f1d59.shogun-image {
    
    
  }


.s-082721b4-e11c-4c4d-933b-25b7306f1d59 .shogun-image-content {
  
    align-items: center;
  
}

.s-082721b4-e11c-4c4d-933b-25b7306f1d59.shg-align-container {
  display: flex;
  justify-content: center
}

.s-082721b4-e11c-4c4d-933b-25b7306f1d59.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-082721b4-e11c-4c4d-933b-25b7306f1d59.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-082721b4-e11c-4c4d-933b-25b7306f1d59 {
      --shg-aspect-ratio: calc(1930/1322); 
    }

    .s-082721b4-e11c-4c4d-933b-25b7306f1d59.shogun-image-container {
      position: relative;
    }

    .s-082721b4-e11c-4c4d-933b-25b7306f1d59.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-082721b4-e11c-4c4d-933b-25b7306f1d59.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-082721b4-e11c-4c4d-933b-25b7306f1d59 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-082721b4-e11c-4c4d-933b-25b7306f1d59 img.shogun-image,
  #s-082721b4-e11c-4c4d-933b-25b7306f1d59 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-082721b4-e11c-4c4d-933b-25b7306f1d59 {
    width: 100%;
    height: auto;
  }

  #s-082721b4-e11c-4c4d-933b-25b7306f1d59 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-082721b4-e11c-4c4d-933b-25b7306f1d59.shogun-image {
    
    
  }


.s-082721b4-e11c-4c4d-933b-25b7306f1d59 .shogun-image-content {
  
    align-items: center;
  
}

.s-082721b4-e11c-4c4d-933b-25b7306f1d59.shg-align-container {
  display: flex;
  justify-content: center
}

.s-082721b4-e11c-4c4d-933b-25b7306f1d59.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-082721b4-e11c-4c4d-933b-25b7306f1d59.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-082721b4-e11c-4c4d-933b-25b7306f1d59 {
      --shg-aspect-ratio: calc(1930/1322); 
    }

    .s-082721b4-e11c-4c4d-933b-25b7306f1d59.shogun-image-container {
      position: relative;
    }

    .s-082721b4-e11c-4c4d-933b-25b7306f1d59.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-082721b4-e11c-4c4d-933b-25b7306f1d59.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-082721b4-e11c-4c4d-933b-25b7306f1d59 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-fb76d2be-f4d7-4450-84ce-984a6a46a80c {
  max-width: 1080px;
aspect-ratio: 5656/3771;
text-align: center;
}





  #s-fb76d2be-f4d7-4450-84ce-984a6a46a80c img.shogun-image,
  #s-fb76d2be-f4d7-4450-84ce-984a6a46a80c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fb76d2be-f4d7-4450-84ce-984a6a46a80c {
    width: 100%;
    height: auto;
  }

  #s-fb76d2be-f4d7-4450-84ce-984a6a46a80c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shogun-image {
    
    
  }


.s-fb76d2be-f4d7-4450-84ce-984a6a46a80c .shogun-image-content {
  
    align-items: center;
  
}

.s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fb76d2be-f4d7-4450-84ce-984a6a46a80c {
      --shg-aspect-ratio: calc(5656/3771); 
    }

    .s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shogun-image-container {
      position: relative;
    }

    .s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fb76d2be-f4d7-4450-84ce-984a6a46a80c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-fb76d2be-f4d7-4450-84ce-984a6a46a80c img.shogun-image,
  #s-fb76d2be-f4d7-4450-84ce-984a6a46a80c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fb76d2be-f4d7-4450-84ce-984a6a46a80c {
    width: 100%;
    height: auto;
  }

  #s-fb76d2be-f4d7-4450-84ce-984a6a46a80c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shogun-image {
    
    
  }


.s-fb76d2be-f4d7-4450-84ce-984a6a46a80c .shogun-image-content {
  
    align-items: center;
  
}

.s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fb76d2be-f4d7-4450-84ce-984a6a46a80c {
      --shg-aspect-ratio: calc(5656/3771); 
    }

    .s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shogun-image-container {
      position: relative;
    }

    .s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fb76d2be-f4d7-4450-84ce-984a6a46a80c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-fb76d2be-f4d7-4450-84ce-984a6a46a80c img.shogun-image,
  #s-fb76d2be-f4d7-4450-84ce-984a6a46a80c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fb76d2be-f4d7-4450-84ce-984a6a46a80c {
    width: 100%;
    height: auto;
  }

  #s-fb76d2be-f4d7-4450-84ce-984a6a46a80c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shogun-image {
    
    
  }


.s-fb76d2be-f4d7-4450-84ce-984a6a46a80c .shogun-image-content {
  
    align-items: center;
  
}

.s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fb76d2be-f4d7-4450-84ce-984a6a46a80c {
      --shg-aspect-ratio: calc(5656/3771); 
    }

    .s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shogun-image-container {
      position: relative;
    }

    .s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fb76d2be-f4d7-4450-84ce-984a6a46a80c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-fb76d2be-f4d7-4450-84ce-984a6a46a80c img.shogun-image,
  #s-fb76d2be-f4d7-4450-84ce-984a6a46a80c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fb76d2be-f4d7-4450-84ce-984a6a46a80c {
    width: 100%;
    height: auto;
  }

  #s-fb76d2be-f4d7-4450-84ce-984a6a46a80c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shogun-image {
    
    
  }


.s-fb76d2be-f4d7-4450-84ce-984a6a46a80c .shogun-image-content {
  
    align-items: center;
  
}

.s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fb76d2be-f4d7-4450-84ce-984a6a46a80c {
      --shg-aspect-ratio: calc(5656/3771); 
    }

    .s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shogun-image-container {
      position: relative;
    }

    .s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fb76d2be-f4d7-4450-84ce-984a6a46a80c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-fb76d2be-f4d7-4450-84ce-984a6a46a80c img.shogun-image,
  #s-fb76d2be-f4d7-4450-84ce-984a6a46a80c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fb76d2be-f4d7-4450-84ce-984a6a46a80c {
    width: 100%;
    height: auto;
  }

  #s-fb76d2be-f4d7-4450-84ce-984a6a46a80c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shogun-image {
    
    
  }


.s-fb76d2be-f4d7-4450-84ce-984a6a46a80c .shogun-image-content {
  
    align-items: center;
  
}

.s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fb76d2be-f4d7-4450-84ce-984a6a46a80c {
      --shg-aspect-ratio: calc(5656/3771); 
    }

    .s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shogun-image-container {
      position: relative;
    }

    .s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fb76d2be-f4d7-4450-84ce-984a6a46a80c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fb76d2be-f4d7-4450-84ce-984a6a46a80c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-0e029bb2-a2ce-4d17-ac4b-795858486046 {
  max-width: 1080px;
aspect-ratio: 1930/1287;
text-align: center;
}





  #s-0e029bb2-a2ce-4d17-ac4b-795858486046 img.shogun-image,
  #s-0e029bb2-a2ce-4d17-ac4b-795858486046 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0e029bb2-a2ce-4d17-ac4b-795858486046 {
    width: 100%;
    height: auto;
  }

  #s-0e029bb2-a2ce-4d17-ac4b-795858486046 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0e029bb2-a2ce-4d17-ac4b-795858486046.shogun-image {
    
    
  }


.s-0e029bb2-a2ce-4d17-ac4b-795858486046 .shogun-image-content {
  
    align-items: center;
  
}

.s-0e029bb2-a2ce-4d17-ac4b-795858486046.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0e029bb2-a2ce-4d17-ac4b-795858486046.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0e029bb2-a2ce-4d17-ac4b-795858486046.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0e029bb2-a2ce-4d17-ac4b-795858486046 {
      --shg-aspect-ratio: calc(1930/1287); 
    }

    .s-0e029bb2-a2ce-4d17-ac4b-795858486046.shogun-image-container {
      position: relative;
    }

    .s-0e029bb2-a2ce-4d17-ac4b-795858486046.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0e029bb2-a2ce-4d17-ac4b-795858486046.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0e029bb2-a2ce-4d17-ac4b-795858486046 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-0e029bb2-a2ce-4d17-ac4b-795858486046 img.shogun-image,
  #s-0e029bb2-a2ce-4d17-ac4b-795858486046 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0e029bb2-a2ce-4d17-ac4b-795858486046 {
    width: 100%;
    height: auto;
  }

  #s-0e029bb2-a2ce-4d17-ac4b-795858486046 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0e029bb2-a2ce-4d17-ac4b-795858486046.shogun-image {
    
    
  }


.s-0e029bb2-a2ce-4d17-ac4b-795858486046 .shogun-image-content {
  
    align-items: center;
  
}

.s-0e029bb2-a2ce-4d17-ac4b-795858486046.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0e029bb2-a2ce-4d17-ac4b-795858486046.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0e029bb2-a2ce-4d17-ac4b-795858486046.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0e029bb2-a2ce-4d17-ac4b-795858486046 {
      --shg-aspect-ratio: calc(1930/1287); 
    }

    .s-0e029bb2-a2ce-4d17-ac4b-795858486046.shogun-image-container {
      position: relative;
    }

    .s-0e029bb2-a2ce-4d17-ac4b-795858486046.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0e029bb2-a2ce-4d17-ac4b-795858486046.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0e029bb2-a2ce-4d17-ac4b-795858486046 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-0e029bb2-a2ce-4d17-ac4b-795858486046 img.shogun-image,
  #s-0e029bb2-a2ce-4d17-ac4b-795858486046 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0e029bb2-a2ce-4d17-ac4b-795858486046 {
    width: 100%;
    height: auto;
  }

  #s-0e029bb2-a2ce-4d17-ac4b-795858486046 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0e029bb2-a2ce-4d17-ac4b-795858486046.shogun-image {
    
    
  }


.s-0e029bb2-a2ce-4d17-ac4b-795858486046 .shogun-image-content {
  
    align-items: center;
  
}

.s-0e029bb2-a2ce-4d17-ac4b-795858486046.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0e029bb2-a2ce-4d17-ac4b-795858486046.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0e029bb2-a2ce-4d17-ac4b-795858486046.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0e029bb2-a2ce-4d17-ac4b-795858486046 {
      --shg-aspect-ratio: calc(1930/1287); 
    }

    .s-0e029bb2-a2ce-4d17-ac4b-795858486046.shogun-image-container {
      position: relative;
    }

    .s-0e029bb2-a2ce-4d17-ac4b-795858486046.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0e029bb2-a2ce-4d17-ac4b-795858486046.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0e029bb2-a2ce-4d17-ac4b-795858486046 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-0e029bb2-a2ce-4d17-ac4b-795858486046 img.shogun-image,
  #s-0e029bb2-a2ce-4d17-ac4b-795858486046 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0e029bb2-a2ce-4d17-ac4b-795858486046 {
    width: 100%;
    height: auto;
  }

  #s-0e029bb2-a2ce-4d17-ac4b-795858486046 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0e029bb2-a2ce-4d17-ac4b-795858486046.shogun-image {
    
    
  }


.s-0e029bb2-a2ce-4d17-ac4b-795858486046 .shogun-image-content {
  
    align-items: center;
  
}

.s-0e029bb2-a2ce-4d17-ac4b-795858486046.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0e029bb2-a2ce-4d17-ac4b-795858486046.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0e029bb2-a2ce-4d17-ac4b-795858486046.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0e029bb2-a2ce-4d17-ac4b-795858486046 {
      --shg-aspect-ratio: calc(1930/1287); 
    }

    .s-0e029bb2-a2ce-4d17-ac4b-795858486046.shogun-image-container {
      position: relative;
    }

    .s-0e029bb2-a2ce-4d17-ac4b-795858486046.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0e029bb2-a2ce-4d17-ac4b-795858486046.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0e029bb2-a2ce-4d17-ac4b-795858486046 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-0e029bb2-a2ce-4d17-ac4b-795858486046 img.shogun-image,
  #s-0e029bb2-a2ce-4d17-ac4b-795858486046 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0e029bb2-a2ce-4d17-ac4b-795858486046 {
    width: 100%;
    height: auto;
  }

  #s-0e029bb2-a2ce-4d17-ac4b-795858486046 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0e029bb2-a2ce-4d17-ac4b-795858486046.shogun-image {
    
    
  }


.s-0e029bb2-a2ce-4d17-ac4b-795858486046 .shogun-image-content {
  
    align-items: center;
  
}

.s-0e029bb2-a2ce-4d17-ac4b-795858486046.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0e029bb2-a2ce-4d17-ac4b-795858486046.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0e029bb2-a2ce-4d17-ac4b-795858486046.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0e029bb2-a2ce-4d17-ac4b-795858486046 {
      --shg-aspect-ratio: calc(1930/1287); 
    }

    .s-0e029bb2-a2ce-4d17-ac4b-795858486046.shogun-image-container {
      position: relative;
    }

    .s-0e029bb2-a2ce-4d17-ac4b-795858486046.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0e029bb2-a2ce-4d17-ac4b-795858486046.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0e029bb2-a2ce-4d17-ac4b-795858486046 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-deb9e888-ed82-42f7-906c-d668fb5c0b17 {
  max-width: 1080px;
aspect-ratio: 6192/4128;
text-align: center;
}





  #s-deb9e888-ed82-42f7-906c-d668fb5c0b17 img.shogun-image,
  #s-deb9e888-ed82-42f7-906c-d668fb5c0b17 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-deb9e888-ed82-42f7-906c-d668fb5c0b17 {
    width: 100%;
    height: auto;
  }

  #s-deb9e888-ed82-42f7-906c-d668fb5c0b17 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shogun-image {
    
    
  }


.s-deb9e888-ed82-42f7-906c-d668fb5c0b17 .shogun-image-content {
  
    align-items: center;
  
}

.s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shg-align-container {
  display: flex;
  justify-content: center
}

.s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-deb9e888-ed82-42f7-906c-d668fb5c0b17 {
      --shg-aspect-ratio: calc(6192/4128); 
    }

    .s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shogun-image-container {
      position: relative;
    }

    .s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-deb9e888-ed82-42f7-906c-d668fb5c0b17 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-deb9e888-ed82-42f7-906c-d668fb5c0b17 img.shogun-image,
  #s-deb9e888-ed82-42f7-906c-d668fb5c0b17 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-deb9e888-ed82-42f7-906c-d668fb5c0b17 {
    width: 100%;
    height: auto;
  }

  #s-deb9e888-ed82-42f7-906c-d668fb5c0b17 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shogun-image {
    
    
  }


.s-deb9e888-ed82-42f7-906c-d668fb5c0b17 .shogun-image-content {
  
    align-items: center;
  
}

.s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shg-align-container {
  display: flex;
  justify-content: center
}

.s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-deb9e888-ed82-42f7-906c-d668fb5c0b17 {
      --shg-aspect-ratio: calc(6192/4128); 
    }

    .s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shogun-image-container {
      position: relative;
    }

    .s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-deb9e888-ed82-42f7-906c-d668fb5c0b17 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-deb9e888-ed82-42f7-906c-d668fb5c0b17 img.shogun-image,
  #s-deb9e888-ed82-42f7-906c-d668fb5c0b17 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-deb9e888-ed82-42f7-906c-d668fb5c0b17 {
    width: 100%;
    height: auto;
  }

  #s-deb9e888-ed82-42f7-906c-d668fb5c0b17 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shogun-image {
    
    
  }


.s-deb9e888-ed82-42f7-906c-d668fb5c0b17 .shogun-image-content {
  
    align-items: center;
  
}

.s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shg-align-container {
  display: flex;
  justify-content: center
}

.s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-deb9e888-ed82-42f7-906c-d668fb5c0b17 {
      --shg-aspect-ratio: calc(6192/4128); 
    }

    .s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shogun-image-container {
      position: relative;
    }

    .s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-deb9e888-ed82-42f7-906c-d668fb5c0b17 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-deb9e888-ed82-42f7-906c-d668fb5c0b17 img.shogun-image,
  #s-deb9e888-ed82-42f7-906c-d668fb5c0b17 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-deb9e888-ed82-42f7-906c-d668fb5c0b17 {
    width: 100%;
    height: auto;
  }

  #s-deb9e888-ed82-42f7-906c-d668fb5c0b17 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shogun-image {
    
    
  }


.s-deb9e888-ed82-42f7-906c-d668fb5c0b17 .shogun-image-content {
  
    align-items: center;
  
}

.s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shg-align-container {
  display: flex;
  justify-content: center
}

.s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-deb9e888-ed82-42f7-906c-d668fb5c0b17 {
      --shg-aspect-ratio: calc(6192/4128); 
    }

    .s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shogun-image-container {
      position: relative;
    }

    .s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-deb9e888-ed82-42f7-906c-d668fb5c0b17 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-deb9e888-ed82-42f7-906c-d668fb5c0b17 img.shogun-image,
  #s-deb9e888-ed82-42f7-906c-d668fb5c0b17 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-deb9e888-ed82-42f7-906c-d668fb5c0b17 {
    width: 100%;
    height: auto;
  }

  #s-deb9e888-ed82-42f7-906c-d668fb5c0b17 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shogun-image {
    
    
  }


.s-deb9e888-ed82-42f7-906c-d668fb5c0b17 .shogun-image-content {
  
    align-items: center;
  
}

.s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shg-align-container {
  display: flex;
  justify-content: center
}

.s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-deb9e888-ed82-42f7-906c-d668fb5c0b17 {
      --shg-aspect-ratio: calc(6192/4128); 
    }

    .s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shogun-image-container {
      position: relative;
    }

    .s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-deb9e888-ed82-42f7-906c-d668fb5c0b17.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-deb9e888-ed82-42f7-906c-d668fb5c0b17 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-df117782-1d6c-43a5-88cd-f4963750a7a1 {
  max-width: 1080px;
aspect-ratio: 1930/1287;
text-align: center;
}





  #s-df117782-1d6c-43a5-88cd-f4963750a7a1 img.shogun-image,
  #s-df117782-1d6c-43a5-88cd-f4963750a7a1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-df117782-1d6c-43a5-88cd-f4963750a7a1 {
    width: 100%;
    height: auto;
  }

  #s-df117782-1d6c-43a5-88cd-f4963750a7a1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-df117782-1d6c-43a5-88cd-f4963750a7a1.shogun-image {
    
    
  }


.s-df117782-1d6c-43a5-88cd-f4963750a7a1 .shogun-image-content {
  
    align-items: center;
  
}

.s-df117782-1d6c-43a5-88cd-f4963750a7a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df117782-1d6c-43a5-88cd-f4963750a7a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df117782-1d6c-43a5-88cd-f4963750a7a1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-df117782-1d6c-43a5-88cd-f4963750a7a1 {
      --shg-aspect-ratio: calc(1930/1287); 
    }

    .s-df117782-1d6c-43a5-88cd-f4963750a7a1.shogun-image-container {
      position: relative;
    }

    .s-df117782-1d6c-43a5-88cd-f4963750a7a1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df117782-1d6c-43a5-88cd-f4963750a7a1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df117782-1d6c-43a5-88cd-f4963750a7a1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-df117782-1d6c-43a5-88cd-f4963750a7a1 img.shogun-image,
  #s-df117782-1d6c-43a5-88cd-f4963750a7a1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-df117782-1d6c-43a5-88cd-f4963750a7a1 {
    width: 100%;
    height: auto;
  }

  #s-df117782-1d6c-43a5-88cd-f4963750a7a1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-df117782-1d6c-43a5-88cd-f4963750a7a1.shogun-image {
    
    
  }


.s-df117782-1d6c-43a5-88cd-f4963750a7a1 .shogun-image-content {
  
    align-items: center;
  
}

.s-df117782-1d6c-43a5-88cd-f4963750a7a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df117782-1d6c-43a5-88cd-f4963750a7a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df117782-1d6c-43a5-88cd-f4963750a7a1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-df117782-1d6c-43a5-88cd-f4963750a7a1 {
      --shg-aspect-ratio: calc(1930/1287); 
    }

    .s-df117782-1d6c-43a5-88cd-f4963750a7a1.shogun-image-container {
      position: relative;
    }

    .s-df117782-1d6c-43a5-88cd-f4963750a7a1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df117782-1d6c-43a5-88cd-f4963750a7a1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df117782-1d6c-43a5-88cd-f4963750a7a1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-df117782-1d6c-43a5-88cd-f4963750a7a1 img.shogun-image,
  #s-df117782-1d6c-43a5-88cd-f4963750a7a1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-df117782-1d6c-43a5-88cd-f4963750a7a1 {
    width: 100%;
    height: auto;
  }

  #s-df117782-1d6c-43a5-88cd-f4963750a7a1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-df117782-1d6c-43a5-88cd-f4963750a7a1.shogun-image {
    
    
  }


.s-df117782-1d6c-43a5-88cd-f4963750a7a1 .shogun-image-content {
  
    align-items: center;
  
}

.s-df117782-1d6c-43a5-88cd-f4963750a7a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df117782-1d6c-43a5-88cd-f4963750a7a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df117782-1d6c-43a5-88cd-f4963750a7a1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-df117782-1d6c-43a5-88cd-f4963750a7a1 {
      --shg-aspect-ratio: calc(1930/1287); 
    }

    .s-df117782-1d6c-43a5-88cd-f4963750a7a1.shogun-image-container {
      position: relative;
    }

    .s-df117782-1d6c-43a5-88cd-f4963750a7a1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df117782-1d6c-43a5-88cd-f4963750a7a1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df117782-1d6c-43a5-88cd-f4963750a7a1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-df117782-1d6c-43a5-88cd-f4963750a7a1 img.shogun-image,
  #s-df117782-1d6c-43a5-88cd-f4963750a7a1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-df117782-1d6c-43a5-88cd-f4963750a7a1 {
    width: 100%;
    height: auto;
  }

  #s-df117782-1d6c-43a5-88cd-f4963750a7a1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-df117782-1d6c-43a5-88cd-f4963750a7a1.shogun-image {
    
    
  }


.s-df117782-1d6c-43a5-88cd-f4963750a7a1 .shogun-image-content {
  
    align-items: center;
  
}

.s-df117782-1d6c-43a5-88cd-f4963750a7a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df117782-1d6c-43a5-88cd-f4963750a7a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df117782-1d6c-43a5-88cd-f4963750a7a1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-df117782-1d6c-43a5-88cd-f4963750a7a1 {
      --shg-aspect-ratio: calc(1930/1287); 
    }

    .s-df117782-1d6c-43a5-88cd-f4963750a7a1.shogun-image-container {
      position: relative;
    }

    .s-df117782-1d6c-43a5-88cd-f4963750a7a1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df117782-1d6c-43a5-88cd-f4963750a7a1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df117782-1d6c-43a5-88cd-f4963750a7a1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-df117782-1d6c-43a5-88cd-f4963750a7a1 img.shogun-image,
  #s-df117782-1d6c-43a5-88cd-f4963750a7a1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-df117782-1d6c-43a5-88cd-f4963750a7a1 {
    width: 100%;
    height: auto;
  }

  #s-df117782-1d6c-43a5-88cd-f4963750a7a1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-df117782-1d6c-43a5-88cd-f4963750a7a1.shogun-image {
    
    
  }


.s-df117782-1d6c-43a5-88cd-f4963750a7a1 .shogun-image-content {
  
    align-items: center;
  
}

.s-df117782-1d6c-43a5-88cd-f4963750a7a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df117782-1d6c-43a5-88cd-f4963750a7a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df117782-1d6c-43a5-88cd-f4963750a7a1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-df117782-1d6c-43a5-88cd-f4963750a7a1 {
      --shg-aspect-ratio: calc(1930/1287); 
    }

    .s-df117782-1d6c-43a5-88cd-f4963750a7a1.shogun-image-container {
      position: relative;
    }

    .s-df117782-1d6c-43a5-88cd-f4963750a7a1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df117782-1d6c-43a5-88cd-f4963750a7a1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df117782-1d6c-43a5-88cd-f4963750a7a1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-c4bd24e4-24da-48ec-b5c1-4b9f461fd0a6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c4bd24e4-24da-48ec-b5c1-4b9f461fd0a6 .shogun-heading-component h1 {
  color: ;
  font-weight:  600 ;
  font-family: "Inter";
  font-style:  normal ;
  
  
  
  
}



#s-b256ca08-41f3-4a89-b273-1b3f24f618df {
  margin-left: 10%;
margin-right: 10%;
}

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

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

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

@media (min-width: 0px) {
[id="s-faac875f-6084-4d12-8024-8bfbd1e0b451"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-faac875f-6084-4d12-8024-8bfbd1e0b451"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-faac875f-6084-4d12-8024-8bfbd1e0b451"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-faac875f-6084-4d12-8024-8bfbd1e0b451"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-3cb86e4c-b342-40a0-b75f-0f948a9417b9 {
  min-height: 50px;
}








#s-3cb86e4c-b342-40a0-b75f-0f948a9417b9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3cb86e4c-b342-40a0-b75f-0f948a9417b9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 {
  max-width: 480px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 img.shogun-image,
  #s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 {
    width: 100%;
    height: auto;
  }

  #s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shogun-image {
    
    
  }


.s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 .shogun-image-content {
  
    align-items: center;
  
}

.s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shogun-image-container {
      position: relative;
    }

    .s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 img.shogun-image,
  #s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 {
    width: 100%;
    height: auto;
  }

  #s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shogun-image {
    
    
  }


.s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 .shogun-image-content {
  
    align-items: center;
  
}

.s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shogun-image-container {
      position: relative;
    }

    .s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 img.shogun-image,
  #s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 {
    width: 100%;
    height: auto;
  }

  #s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shogun-image {
    
    
  }


.s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 .shogun-image-content {
  
    align-items: center;
  
}

.s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shogun-image-container {
      position: relative;
    }

    .s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 img.shogun-image,
  #s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 {
    width: 100%;
    height: auto;
  }

  #s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shogun-image {
    
    
  }


.s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 .shogun-image-content {
  
    align-items: center;
  
}

.s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shogun-image-container {
      position: relative;
    }

    .s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 img.shogun-image,
  #s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 {
    width: 100%;
    height: auto;
  }

  #s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shogun-image {
    
    
  }


.s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 .shogun-image-content {
  
    align-items: center;
  
}

.s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shogun-image-container {
      position: relative;
    }

    .s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0e11a2ea-732f-4f14-8f41-7c062f5356f0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0e11a2ea-732f-4f14-8f41-7c062f5356f0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-ed42d198-bcb0-4297-be8e-0364bc79eb5c {
  margin-left: 5%;
margin-right: 5%;
padding-left: 15%;
padding-right: 15%;
}

#s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a {
  max-width: 480px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a img.shogun-image,
  #s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a {
    width: 100%;
    height: auto;
  }

  #s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shogun-image {
    
    
  }


.s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a .shogun-image-content {
  
    align-items: center;
  
}

.s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shogun-image-container {
      position: relative;
    }

    .s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a img.shogun-image,
  #s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a {
    width: 100%;
    height: auto;
  }

  #s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shogun-image {
    
    
  }


.s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a .shogun-image-content {
  
    align-items: center;
  
}

.s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shogun-image-container {
      position: relative;
    }

    .s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a img.shogun-image,
  #s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a {
    width: 100%;
    height: auto;
  }

  #s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shogun-image {
    
    
  }


.s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a .shogun-image-content {
  
    align-items: center;
  
}

.s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shogun-image-container {
      position: relative;
    }

    .s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a img.shogun-image,
  #s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a {
    width: 100%;
    height: auto;
  }

  #s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shogun-image {
    
    
  }


.s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a .shogun-image-content {
  
    align-items: center;
  
}

.s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shogun-image-container {
      position: relative;
    }

    .s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a img.shogun-image,
  #s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a {
    width: 100%;
    height: auto;
  }

  #s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shogun-image {
    
    
  }


.s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a .shogun-image-content {
  
    align-items: center;
  
}

.s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shogun-image-container {
      position: relative;
    }

    .s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fe9daa06-a209-4447-8859-cbfbe5ce2f4a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-36ac0717-fffa-4538-8dd9-5954d53b0d06 {
  margin-left: 5%;
margin-right: 5%;
padding-left: 15%;
padding-right: 15%;
}

#s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 {
  max-width: 480px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 img.shogun-image,
  #s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 {
    width: 100%;
    height: auto;
  }

  #s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shogun-image {
    
    
  }


.s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 .shogun-image-content {
  
    align-items: center;
  
}

.s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shogun-image-container {
      position: relative;
    }

    .s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 img.shogun-image,
  #s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 {
    width: 100%;
    height: auto;
  }

  #s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shogun-image {
    
    
  }


.s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 .shogun-image-content {
  
    align-items: center;
  
}

.s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shogun-image-container {
      position: relative;
    }

    .s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 img.shogun-image,
  #s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 {
    width: 100%;
    height: auto;
  }

  #s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shogun-image {
    
    
  }


.s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 .shogun-image-content {
  
    align-items: center;
  
}

.s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shogun-image-container {
      position: relative;
    }

    .s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 img.shogun-image,
  #s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 {
    width: 100%;
    height: auto;
  }

  #s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shogun-image {
    
    
  }


.s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 .shogun-image-content {
  
    align-items: center;
  
}

.s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shogun-image-container {
      position: relative;
    }

    .s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 img.shogun-image,
  #s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 {
    width: 100%;
    height: auto;
  }

  #s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shogun-image {
    
    
  }


.s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 .shogun-image-content {
  
    align-items: center;
  
}

.s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shogun-image-container {
      position: relative;
    }

    .s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77dfea73-b3d7-4658-801b-9d5c3ab14ad8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-a1339709-2402-43ab-83de-ece381a8b1cd {
  margin-left: 5%;
margin-right: 5%;
padding-left: 15%;
padding-right: 15%;
}

@media (min-width: 0px) {
[id="s-7af215ee-c5e8-41d2-9188-9003f4e4328a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7af215ee-c5e8-41d2-9188-9003f4e4328a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-7af215ee-c5e8-41d2-9188-9003f4e4328a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-7af215ee-c5e8-41d2-9188-9003f4e4328a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-6aecb9ed-9662-4e59-837b-c06ce8870bfb {
  max-width: 480px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-6aecb9ed-9662-4e59-837b-c06ce8870bfb img.shogun-image,
  #s-6aecb9ed-9662-4e59-837b-c06ce8870bfb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6aecb9ed-9662-4e59-837b-c06ce8870bfb {
    width: 100%;
    height: auto;
  }

  #s-6aecb9ed-9662-4e59-837b-c06ce8870bfb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shogun-image {
    
    
  }


.s-6aecb9ed-9662-4e59-837b-c06ce8870bfb .shogun-image-content {
  
    align-items: center;
  
}

.s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6aecb9ed-9662-4e59-837b-c06ce8870bfb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shogun-image-container {
      position: relative;
    }

    .s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6aecb9ed-9662-4e59-837b-c06ce8870bfb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-6aecb9ed-9662-4e59-837b-c06ce8870bfb img.shogun-image,
  #s-6aecb9ed-9662-4e59-837b-c06ce8870bfb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6aecb9ed-9662-4e59-837b-c06ce8870bfb {
    width: 100%;
    height: auto;
  }

  #s-6aecb9ed-9662-4e59-837b-c06ce8870bfb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shogun-image {
    
    
  }


.s-6aecb9ed-9662-4e59-837b-c06ce8870bfb .shogun-image-content {
  
    align-items: center;
  
}

.s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6aecb9ed-9662-4e59-837b-c06ce8870bfb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shogun-image-container {
      position: relative;
    }

    .s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6aecb9ed-9662-4e59-837b-c06ce8870bfb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-6aecb9ed-9662-4e59-837b-c06ce8870bfb img.shogun-image,
  #s-6aecb9ed-9662-4e59-837b-c06ce8870bfb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6aecb9ed-9662-4e59-837b-c06ce8870bfb {
    width: 100%;
    height: auto;
  }

  #s-6aecb9ed-9662-4e59-837b-c06ce8870bfb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shogun-image {
    
    
  }


.s-6aecb9ed-9662-4e59-837b-c06ce8870bfb .shogun-image-content {
  
    align-items: center;
  
}

.s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6aecb9ed-9662-4e59-837b-c06ce8870bfb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shogun-image-container {
      position: relative;
    }

    .s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6aecb9ed-9662-4e59-837b-c06ce8870bfb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-6aecb9ed-9662-4e59-837b-c06ce8870bfb img.shogun-image,
  #s-6aecb9ed-9662-4e59-837b-c06ce8870bfb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6aecb9ed-9662-4e59-837b-c06ce8870bfb {
    width: 100%;
    height: auto;
  }

  #s-6aecb9ed-9662-4e59-837b-c06ce8870bfb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shogun-image {
    
    
  }


.s-6aecb9ed-9662-4e59-837b-c06ce8870bfb .shogun-image-content {
  
    align-items: center;
  
}

.s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6aecb9ed-9662-4e59-837b-c06ce8870bfb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shogun-image-container {
      position: relative;
    }

    .s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6aecb9ed-9662-4e59-837b-c06ce8870bfb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-6aecb9ed-9662-4e59-837b-c06ce8870bfb img.shogun-image,
  #s-6aecb9ed-9662-4e59-837b-c06ce8870bfb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6aecb9ed-9662-4e59-837b-c06ce8870bfb {
    width: 100%;
    height: auto;
  }

  #s-6aecb9ed-9662-4e59-837b-c06ce8870bfb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shogun-image {
    
    
  }


.s-6aecb9ed-9662-4e59-837b-c06ce8870bfb .shogun-image-content {
  
    align-items: center;
  
}

.s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6aecb9ed-9662-4e59-837b-c06ce8870bfb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shogun-image-container {
      position: relative;
    }

    .s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6aecb9ed-9662-4e59-837b-c06ce8870bfb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6aecb9ed-9662-4e59-837b-c06ce8870bfb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-23e02919-6093-4e8c-816f-119ce5b4a596 {
  margin-left: 5%;
margin-right: 5%;
padding-left: 15%;
padding-right: 15%;
}

#s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 {
  max-width: 480px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 img.shogun-image,
  #s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 {
    width: 100%;
    height: auto;
  }

  #s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shogun-image {
    
    
  }


.s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 .shogun-image-content {
  
    align-items: center;
  
}

.s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shogun-image-container {
      position: relative;
    }

    .s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 img.shogun-image,
  #s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 {
    width: 100%;
    height: auto;
  }

  #s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shogun-image {
    
    
  }


.s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 .shogun-image-content {
  
    align-items: center;
  
}

.s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shogun-image-container {
      position: relative;
    }

    .s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 img.shogun-image,
  #s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 {
    width: 100%;
    height: auto;
  }

  #s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shogun-image {
    
    
  }


.s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 .shogun-image-content {
  
    align-items: center;
  
}

.s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shogun-image-container {
      position: relative;
    }

    .s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 img.shogun-image,
  #s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 {
    width: 100%;
    height: auto;
  }

  #s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shogun-image {
    
    
  }


.s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 .shogun-image-content {
  
    align-items: center;
  
}

.s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shogun-image-container {
      position: relative;
    }

    .s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 img.shogun-image,
  #s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 {
    width: 100%;
    height: auto;
  }

  #s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shogun-image {
    
    
  }


.s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 .shogun-image-content {
  
    align-items: center;
  
}

.s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shogun-image-container {
      position: relative;
    }

    .s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cb3b3d95-ef06-4573-aa4e-f1de01448c71.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cb3b3d95-ef06-4573-aa4e-f1de01448c71 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-3bfde1da-3812-407b-b2c8-630fa1e7b79f {
  margin-left: 5%;
margin-right: 5%;
padding-left: 15%;
padding-right: 15%;
}

#s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 {
  max-width: 480px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 img.shogun-image,
  #s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 {
    width: 100%;
    height: auto;
  }

  #s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shogun-image {
    
    
  }


.s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 .shogun-image-content {
  
    align-items: center;
  
}

.s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shogun-image-container {
      position: relative;
    }

    .s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 img.shogun-image,
  #s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 {
    width: 100%;
    height: auto;
  }

  #s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shogun-image {
    
    
  }


.s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 .shogun-image-content {
  
    align-items: center;
  
}

.s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shogun-image-container {
      position: relative;
    }

    .s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 img.shogun-image,
  #s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 {
    width: 100%;
    height: auto;
  }

  #s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shogun-image {
    
    
  }


.s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 .shogun-image-content {
  
    align-items: center;
  
}

.s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shogun-image-container {
      position: relative;
    }

    .s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 img.shogun-image,
  #s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 {
    width: 100%;
    height: auto;
  }

  #s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shogun-image {
    
    
  }


.s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 .shogun-image-content {
  
    align-items: center;
  
}

.s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shogun-image-container {
      position: relative;
    }

    .s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 img.shogun-image,
  #s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 {
    width: 100%;
    height: auto;
  }

  #s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shogun-image {
    
    
  }


.s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 .shogun-image-content {
  
    align-items: center;
  
}

.s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shogun-image-container {
      position: relative;
    }

    .s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e9ab1ad3-b431-47e5-bf5b-33253e706cc6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-38fca58e-2c86-49c7-b264-7a2125a16377 {
  margin-left: 5%;
margin-right: 5%;
padding-left: 15%;
padding-right: 15%;
}

#s-0d6f5ee4-3dcc-42d5-8bf9-8af662c28e39 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0d6f5ee4-3dcc-42d5-8bf9-8af662c28e39 .shogun-heading-component h1 {
  color: ;
  font-weight:  600 ;
  font-family: "Inter";
  font-style:  normal ;
  
  
  
  
}



#s-20f6926e-7108-4bd1-8232-2d864c02d659 {
  margin-left: 10%;
margin-right: 10%;
}

@media (min-width: 0px) {
[id="s-121e4852-2652-4ba4-a018-764fde0e13c4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-121e4852-2652-4ba4-a018-764fde0e13c4"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-121e4852-2652-4ba4-a018-764fde0e13c4"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-121e4852-2652-4ba4-a018-764fde0e13c4"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

.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-502b10cc-4df8-4923-a37a-a5feb18543b7 {
  text-align: center;
}


.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 {
  max-width:  100%;
}

.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 .shg-image-zoom,
.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 img.shogun-image {
  max-width: 480px !important;
  
}

.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 {
  max-width:  100%;
}

.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 .shg-image-zoom,
.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 img.shogun-image {
  max-width: 480px !important;
  
}

.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 {
  max-width:  100%;
}

.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 .shg-image-zoom,
.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 img.shogun-image {
  max-width: 480px !important;
  
}

.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 {
  max-width:  100%;
}

.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 .shg-image-zoom,
.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 img.shogun-image {
  max-width: 480px !important;
  
}

.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 {
  max-width:  100%;
}

.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 .shg-image-zoom,
.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 img.shogun-image {
  max-width: 480px !important;
  
}

.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-502b10cc-4df8-4923-a37a-a5feb18543b7 img.shogun-image {
  width: 100%;
}



}
#s-e3794e67-ff46-47fc-b270-5e8805def43a {
  margin-left: 5%;
margin-right: 5%;
padding-left: 15%;
padding-right: 15%;
}

#s-e0bc983a-8fd3-46ea-a97b-a9afb6d6bdfc {
  min-height: 50px;
}








#s-e0bc983a-8fd3-46ea-a97b-a9afb6d6bdfc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e0bc983a-8fd3-46ea-a97b-a9afb6d6bdfc.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-9fa13775-ee95-4b7f-93bd-9af0c273d0d0 {
  opacity: 0;
}

#s-9fa13775-ee95-4b7f-93bd-9af0c273d0d0 hr {
  border-top: 1px solid #ddd;
}

@media (min-width: 0px) {
[id="s-ac0eb54e-8b5e-4843-b7f1-2a3399c585d3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ac0eb54e-8b5e-4843-b7f1-2a3399c585d3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ac0eb54e-8b5e-4843-b7f1-2a3399c585d3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ac0eb54e-8b5e-4843-b7f1-2a3399c585d3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 {
  text-align: center;
}


.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 {
  max-width:  100%;
}

.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 .shg-image-zoom,
.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 img.shogun-image {
  max-width: 480px !important;
  
}

.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 {
  max-width:  100%;
}

.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 .shg-image-zoom,
.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 img.shogun-image {
  max-width: 480px !important;
  
}

.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 {
  max-width:  100%;
}

.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 .shg-image-zoom,
.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 img.shogun-image {
  max-width: 480px !important;
  
}

.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 {
  max-width:  100%;
}

.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 .shg-image-zoom,
.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 img.shogun-image {
  max-width: 480px !important;
  
}

.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 {
  max-width:  100%;
}

.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 .shg-image-zoom,
.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 img.shogun-image {
  max-width: 480px !important;
  
}

.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2f3f9c67-b746-4734-ab2c-0002e152eb19 img.shogun-image {
  width: 100%;
}



}
#s-450f67cb-a927-42d7-bd8e-e74b9dce8e08 {
  margin-left: 5%;
margin-right: 5%;
padding-left: 15%;
padding-right: 15%;
}

#s-4f75a390-efcd-446e-af79-48ad1f9b21f9 {
  opacity: 0;
}

#s-4f75a390-efcd-446e-af79-48ad1f9b21f9 hr {
  border-top: 1px solid #ddd;
}

@media (min-width: 0px) {
[id="s-01e9747f-0564-41b7-83bd-9a22bb4385a8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-01e9747f-0564-41b7-83bd-9a22bb4385a8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-01e9747f-0564-41b7-83bd-9a22bb4385a8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-01e9747f-0564-41b7-83bd-9a22bb4385a8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 {
  text-align: center;
}


.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 {
  max-width:  100%;
}

.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 .shg-image-zoom,
.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 img.shogun-image {
  max-width: 480px !important;
  
}

.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 {
  max-width:  100%;
}

.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 .shg-image-zoom,
.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 img.shogun-image {
  max-width: 480px !important;
  
}

.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 {
  max-width:  100%;
}

.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 .shg-image-zoom,
.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 img.shogun-image {
  max-width: 480px !important;
  
}

.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 {
  max-width:  100%;
}

.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 .shg-image-zoom,
.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 img.shogun-image {
  max-width: 480px !important;
  
}

.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 {
  max-width:  100%;
}

.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 .shg-image-zoom,
.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 img.shogun-image {
  max-width: 480px !important;
  
}

.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-47dc2971-88a0-430c-ba24-2c1fbd38b5c1 img.shogun-image {
  width: 100%;
}



}
#s-de8d20c8-a39d-4e00-9fab-77b1c9edfb54 {
  margin-left: 5%;
margin-right: 5%;
padding-left: 15%;
padding-right: 15%;
}

#s-27a52d75-c84c-4740-9e22-5b11281b9976 {
  opacity: 0;
}

#s-27a52d75-c84c-4740-9e22-5b11281b9976 hr {
  border-top: 1px solid #ddd;
}

@media (min-width: 0px) {
[id="s-cffef0e4-169a-4d2f-b3db-044cba44c65a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cffef0e4-169a-4d2f-b3db-044cba44c65a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-cffef0e4-169a-4d2f-b3db-044cba44c65a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-cffef0e4-169a-4d2f-b3db-044cba44c65a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-1a25c393-b566-4f38-b2d5-c69321d4b973 {
  text-align: center;
}


.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 {
  max-width:  100%;
}

.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 .shg-image-zoom,
.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 img.shogun-image {
  max-width: 480px !important;
  
}

.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 {
  max-width:  100%;
}

.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 .shg-image-zoom,
.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 img.shogun-image {
  max-width: 480px !important;
  
}

.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 {
  max-width:  100%;
}

.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 .shg-image-zoom,
.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 img.shogun-image {
  max-width: 480px !important;
  
}

.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 {
  max-width:  100%;
}

.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 .shg-image-zoom,
.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 img.shogun-image {
  max-width: 480px !important;
  
}

.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 {
  max-width:  100%;
}

.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 .shg-image-zoom,
.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 img.shogun-image {
  max-width: 480px !important;
  
}

.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1a25c393-b566-4f38-b2d5-c69321d4b973 img.shogun-image {
  width: 100%;
}



}
#s-4ad18db4-324d-43b1-97b9-2953826f5f62 {
  opacity: 0;
}

#s-4ad18db4-324d-43b1-97b9-2953826f5f62 hr {
  border-top: 1px solid #ddd;
}

#s-015388a3-c11d-44f6-9466-6fa695cf855a {
  margin-left: 5%;
margin-right: 5%;
padding-left: 15%;
padding-right: 15%;
}

@media (min-width: 0px) {
[id="s-96fa3fb1-8e54-41eb-af71-a5304c953c00"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-96fa3fb1-8e54-41eb-af71-a5304c953c00"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-96fa3fb1-8e54-41eb-af71-a5304c953c00"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-96fa3fb1-8e54-41eb-af71-a5304c953c00"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-312b4df2-d11e-4e8d-8a80-babcce883bcc {
  text-align: center;
}


.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc {
  max-width:  100%;
}

.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc .shg-image-zoom,
.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc img.shogun-image {
  max-width: 480px !important;
  
}

.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc {
  max-width:  100%;
}

.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc .shg-image-zoom,
.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc img.shogun-image {
  max-width: 480px !important;
  
}

.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc {
  max-width:  100%;
}

.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc .shg-image-zoom,
.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc img.shogun-image {
  max-width: 480px !important;
  
}

.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc {
  max-width:  100%;
}

.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc .shg-image-zoom,
.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc img.shogun-image {
  max-width: 480px !important;
  
}

.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc {
  max-width:  100%;
}

.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc .shg-image-zoom,
.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc img.shogun-image {
  max-width: 480px !important;
  
}

.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-312b4df2-d11e-4e8d-8a80-babcce883bcc img.shogun-image {
  width: 100%;
}



}
#s-05d369ff-e03c-444b-9137-ca0811a6e7af {
  opacity: 0;
}

#s-05d369ff-e03c-444b-9137-ca0811a6e7af hr {
  border-top: 1px solid #ddd;
}

#s-31491535-3146-4a3e-9ec6-c788ec11c8b2 {
  margin-left: 5%;
margin-right: 5%;
padding-left: 15%;
padding-right: 15%;
}

#s-159d90d0-c107-46c4-8768-04ad0eef2cb7 {
  opacity: 0;
}

#s-159d90d0-c107-46c4-8768-04ad0eef2cb7 hr {
  border-top: 1px solid #ddd;
}

#s-f1d88d55-860d-4156-8329-3f5205ab067f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f1d88d55-860d-4156-8329-3f5205ab067f .shogun-heading-component h1 {
  color: ;
  font-weight:  600 ;
  font-family: "Inter";
  font-style:  normal ;
  
  
  
  
}



#s-140dd0a6-d808-4c4f-bcde-9c77f5b4eed1 {
  min-height: 50px;
}








#s-140dd0a6-d808-4c4f-bcde-9c77f5b4eed1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-140dd0a6-d808-4c4f-bcde-9c77f5b4eed1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d3cfcdab-fa8d-4ac6-8a2c-570025c1c3c3 {
  margin-left: 10%;
margin-right: 10%;
}

#s-621a50e6-2e50-41bb-a3e1-66d64d5b3421 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-621a50e6-2e50-41bb-a3e1-66d64d5b3421 .shogun-heading-component h1 {
  color: ;
  font-weight:  600 ;
  font-family: "Inter";
  font-style:  normal ;
  
  
  
  
}



#s-cd99f9bb-e473-4bbb-960b-24cc5e51d98b {
  margin-left: 10%;
margin-right: 10%;
}

/*
  $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}
