.shg-box {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  /**
   * 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;
}

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

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

.shg-box-vertical-align-center, .shg-box-vertical-center {
  justify-content: center;
}

.shg-box-vertical-align-bottom {
  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-56164e18-1693-47b0-99a4-9d4e9d1953fc {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}








#s-56164e18-1693-47b0-99a4-9d4e9d1953fc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-56164e18-1693-47b0-99a4-9d4e9d1953fc.shg-box.shg-c {
  justify-content: center;
}

#s-f8497674-f85a-454e-85f0-1c75ae7fb6ab {
  margin-left: auto;
margin-right: auto;
padding-left: 5%;
padding-right: 5%;
min-height: 50px;
max-width: 1500px;
}
@media (max-width: 767px){#s-f8497674-f85a-454e-85f0-1c75ae7fb6ab {
  padding-left: 2%;
padding-right: 2%;
}
}







#s-f8497674-f85a-454e-85f0-1c75ae7fb6ab > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f8497674-f85a-454e-85f0-1c75ae7fb6ab.shg-box.shg-c {
  justify-content: center;
}

.shg-row {
  display: flex;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
  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;
}

/* 
  Shopify base css adds display none to empty divs
  This causes items in the second column position to shift when
  the first column is empty. In order to overwrite that style,
  we have to manually set empty divs in the column to display block 
  so the whole element holds its positioning on published pages.
*/

.shg-row > div:empty {
  display: block;
}

#s-a72bbee0-6581-4ecd-a3f3-65ea6a74aa07 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-a72bbee0-6581-4ecd-a3f3-65ea6a74aa07"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a72bbee0-6581-4ecd-a3f3-65ea6a74aa07"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-a72bbee0-6581-4ecd-a3f3-65ea6a74aa07"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a72bbee0-6581-4ecd-a3f3-65ea6a74aa07"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-a72bbee0-6581-4ecd-a3f3-65ea6a74aa07"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a72bbee0-6581-4ecd-a3f3-65ea6a74aa07"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-a72bbee0-6581-4ecd-a3f3-65ea6a74aa07"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

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

.shg-image-content-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}

.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;
  flex-direction: column;
  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 {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

.shogun-image-contain {
  font-family: "object-fit: contain;";
  -o-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;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  min-width: 100%;
  min-height: 100%;
  /* Ensures that the content children fills the container */
  align-items: stretch;
}

.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-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;
}

.shogun-image-content > * {
  flex-shrink: 0; /* Prevents children from shrinking maintaining natural size*/
  width: 100%;
}
#s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b {
  margin-top: 5%;
margin-left: auto;
margin-bottom: 5%;
margin-right: auto;
max-width: 3096px;
aspect-ratio: 3096/556;
text-align: center;
}

#s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b {
  margin: 0 !important;
  overflow: visible;
}

#s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 5%;
  margin-bottom: 5%;
}

.shg-image-content-margin-container-s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b img.shogun-image {
  /* Add background color handling */
  
}

#s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b .shg-image-content-wrapper {
      aspect-ratio: 3096/556;
      min-width: 100%;
      height: auto;
    }

    #s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b .shogun-image-link {
      aspect-ratio: 3096/556;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3096px;
  }



  img.s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image {
    
    
    
    max-height: 3096px;
  }


.s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b .shogun-image-content {
  
    justify-content: center;
  
}

.s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image {
  box-sizing: border-box;
}



.s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b {
      --shg-aspect-ratio: calc(3096/556); 
    }

    .s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image-container {
      position: relative;
    }

    .s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3096px;
    }
  }

@media (min-width: 1200px){#s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b {
  margin: 0 !important;
  overflow: visible;
}

#s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b img.shogun-image {
  /* Add background color handling */
  
}

#s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b .shg-image-content-wrapper {
      aspect-ratio: 3096/556;
      min-width: 100%;
      height: auto;
    }

    #s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b .shogun-image-link {
      aspect-ratio: 3096/556;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3096px;
  }



  img.s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image {
    
    
    
    max-height: 3096px;
  }


.s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b .shogun-image-content {
  
    justify-content: center;
  
}

.s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image {
  box-sizing: border-box;
}



.s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b {
      --shg-aspect-ratio: calc(3096/556); 
    }

    .s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image-container {
      position: relative;
    }

    .s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3096px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b {
  margin: 0 !important;
  overflow: visible;
}

#s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b img.shogun-image {
  /* Add background color handling */
  
}

#s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b .shg-image-content-wrapper {
      aspect-ratio: 3096/556;
      min-width: 100%;
      height: auto;
    }

    #s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b .shogun-image-link {
      aspect-ratio: 3096/556;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3096px;
  }



  img.s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image {
    
    
    
    max-height: 3096px;
  }


.s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b .shogun-image-content {
  
    justify-content: center;
  
}

.s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image {
  box-sizing: border-box;
}



.s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b {
      --shg-aspect-ratio: calc(3096/556); 
    }

    .s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image-container {
      position: relative;
    }

    .s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3096px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b {
  margin: 0 !important;
  overflow: visible;
}

#s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b img.shogun-image {
  /* Add background color handling */
  
}

#s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b .shg-image-content-wrapper {
      aspect-ratio: 3096/556;
      min-width: 100%;
      height: auto;
    }

    #s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b .shogun-image-link {
      aspect-ratio: 3096/556;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3096px;
  }



  img.s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image {
    
    
    
    max-height: 3096px;
  }


.s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b .shogun-image-content {
  
    justify-content: center;
  
}

.s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image {
  box-sizing: border-box;
}



.s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b {
      --shg-aspect-ratio: calc(3096/556); 
    }

    .s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image-container {
      position: relative;
    }

    .s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3096px;
    }
  }

}@media (max-width: 767px){#s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b {
  margin: 0 !important;
  overflow: visible;
}

#s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b img.shogun-image {
  /* Add background color handling */
  
}

#s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b .shg-image-content-wrapper {
      aspect-ratio: 3096/556;
      min-width: 100%;
      height: auto;
    }

    #s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b .shogun-image-link {
      aspect-ratio: 3096/556;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3096px;
  }



  img.s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image {
    
    
    
    max-height: 3096px;
  }


.s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b .shogun-image-content {
  
    justify-content: center;
  
}

.s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image {
  box-sizing: border-box;
}



.s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b {
      --shg-aspect-ratio: calc(3096/556); 
    }

    .s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image-container {
      position: relative;
    }

    .s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a5702379-d9c3-4ae5-9d36-6b00fd20a51b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3096px;
    }
  }

}
.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;
  
  
  text-transform: none;
  
  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-cd187590-cdab-4c7b-920c-9916a53ccac0 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (max-width: 767px){#s-cd187590-cdab-4c7b-920c-9916a53ccac0 {
  text-align: center;
}
}
#s-cd187590-cdab-4c7b-920c-9916a53ccac0 .shogun-heading-component h5 {
  
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 65px;
  line-height: 1.3em;
  
  
}


@media (min-width: 1200px){#s-cd187590-cdab-4c7b-920c-9916a53ccac0 .shogun-heading-component h5 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1.5em;
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-cd187590-cdab-4c7b-920c-9916a53ccac0 .shogun-heading-component h5 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.5em;
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-cd187590-cdab-4c7b-920c-9916a53ccac0 .shogun-heading-component h5 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  
  
}


}@media (max-width: 767px){#s-cd187590-cdab-4c7b-920c-9916a53ccac0 .shogun-heading-component h5 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  
}


}
#s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 {
  margin-top: 0%;
margin-left: auto;
margin-bottom: 0%;
margin-right: auto;
max-width: 12290px;
aspect-ratio: 12290/3153;
text-align: center;
}
@media (min-width: 1200px){#s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 {
  margin-top: 10%;
margin-bottom: 10%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 {
  margin-top: 10%;
margin-bottom: 10%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 {
  margin-top: 10%;
margin-bottom: 10%;
}
}@media (max-width: 767px){#s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 {
  
}
}
#s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 {
  margin: 0 !important;
  overflow: visible;
}

#s-acfabf11-5b38-46c5-b4fc-2e82e02e9481-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 0%;
  margin-bottom: 0%;
}

.shg-image-content-margin-container-s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 img.shogun-image {
  /* Add background color handling */
  
}

#s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 .shg-image-content-wrapper {
      aspect-ratio: 12290/3153;
      min-width: 100%;
      height: auto;
    }

    #s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 .shogun-image-link {
      aspect-ratio: 12290/3153;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 12290px;
  }



  img.s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image {
    
    
    
    max-height: 12290px;
  }


.s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 .shogun-image-content {
  
    justify-content: center;
  
}

.s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shg-align-container {
  display: flex;
  justify-content: center
}

.s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image {
  box-sizing: border-box;
}



.s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 {
      --shg-aspect-ratio: calc(12290/3153); 
    }

    .s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image-container {
      position: relative;
    }

    .s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 12290px;
    }
  }

@media (min-width: 1200px){#s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 {
  margin: 0 !important;
  overflow: visible;
}

#s-acfabf11-5b38-46c5-b4fc-2e82e02e9481-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 10%;
  margin-bottom: 10%;
}

.shg-image-content-margin-container-s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 img.shogun-image {
  /* Add background color handling */
  
}

#s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 .shg-image-content-wrapper {
      aspect-ratio: 12290/3153;
      min-width: 100%;
      height: auto;
    }

    #s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 .shogun-image-link {
      aspect-ratio: 12290/3153;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 12290px;
  }



  img.s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image {
    
    
    
    max-height: 12290px;
  }


.s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 .shogun-image-content {
  
    justify-content: center;
  
}

.s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shg-align-container {
  display: flex;
  justify-content: center
}

.s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image {
  box-sizing: border-box;
}



.s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 {
      --shg-aspect-ratio: calc(12290/3153); 
    }

    .s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image-container {
      position: relative;
    }

    .s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 12290px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 {
  margin: 0 !important;
  overflow: visible;
}

#s-acfabf11-5b38-46c5-b4fc-2e82e02e9481-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 10%;
  margin-bottom: 10%;
}

.shg-image-content-margin-container-s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 img.shogun-image {
  /* Add background color handling */
  
}

#s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 .shg-image-content-wrapper {
      aspect-ratio: 12290/3153;
      min-width: 100%;
      height: auto;
    }

    #s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 .shogun-image-link {
      aspect-ratio: 12290/3153;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 12290px;
  }



  img.s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image {
    
    
    
    max-height: 12290px;
  }


.s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 .shogun-image-content {
  
    justify-content: center;
  
}

.s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shg-align-container {
  display: flex;
  justify-content: center
}

.s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image {
  box-sizing: border-box;
}



.s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 {
      --shg-aspect-ratio: calc(12290/3153); 
    }

    .s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image-container {
      position: relative;
    }

    .s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 12290px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 {
  margin: 0 !important;
  overflow: visible;
}

#s-acfabf11-5b38-46c5-b4fc-2e82e02e9481-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 10%;
  margin-bottom: 10%;
}

.shg-image-content-margin-container-s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 img.shogun-image {
  /* Add background color handling */
  
}

#s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 .shg-image-content-wrapper {
      aspect-ratio: 12290/3153;
      min-width: 100%;
      height: auto;
    }

    #s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 .shogun-image-link {
      aspect-ratio: 12290/3153;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 12290px;
  }



  img.s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image {
    
    
    
    max-height: 12290px;
  }


.s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 .shogun-image-content {
  
    justify-content: center;
  
}

.s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shg-align-container {
  display: flex;
  justify-content: center
}

.s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image {
  box-sizing: border-box;
}



.s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 {
      --shg-aspect-ratio: calc(12290/3153); 
    }

    .s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image-container {
      position: relative;
    }

    .s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 12290px;
    }
  }

}@media (max-width: 767px){#s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 {
  margin: 0 !important;
  overflow: visible;
}

#s-acfabf11-5b38-46c5-b4fc-2e82e02e9481-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 img.shogun-image {
  /* Add background color handling */
  
}

#s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 .shg-image-content-wrapper {
      aspect-ratio: 12290/3153;
      min-width: 100%;
      height: auto;
    }

    #s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 .shogun-image-link {
      aspect-ratio: 12290/3153;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 12290px;
  }



  img.s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image {
    
    
    
    max-height: 12290px;
  }


.s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 .shogun-image-content {
  
    justify-content: center;
  
}

.s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shg-align-container {
  display: flex;
  justify-content: center
}

.s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image {
  box-sizing: border-box;
}



.s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 {
      --shg-aspect-ratio: calc(12290/3153); 
    }

    .s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image-container {
      position: relative;
    }

    .s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-acfabf11-5b38-46c5-b4fc-2e82e02e9481.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-acfabf11-5b38-46c5-b4fc-2e82e02e9481 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 12290px;
    }
  }

}
#s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 {
  margin-left: auto;
margin-right: auto;
max-width: 1650px;
aspect-ratio: 1650/2294;
text-align: center;
}
@media (max-width: 767px){#s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 {
  display: none;
}
#s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207, #wrap-s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207, #wrap-content-s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 { display: none !important; }}
#s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 {
  margin: 0 !important;
  overflow: visible;
}

#s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 img.shogun-image {
  /* Add background color handling */
  
}

#s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 .shg-image-content-wrapper {
      aspect-ratio: 1650/2294;
      min-width: 100%;
      height: auto;
    }

    #s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 .shogun-image-link {
      aspect-ratio: 1650/2294;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1650px;
  }



  img.s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image {
    
    
    
    max-height: 1650px;
  }


.s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image {
  box-sizing: border-box;
}



.s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 {
      --shg-aspect-ratio: calc(1650/2294); 
    }

    .s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image-container {
      position: relative;
    }

    .s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1650px;
    }
  }

@media (min-width: 1200px){#s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 {
  margin: 0 !important;
  overflow: visible;
}

#s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 img.shogun-image {
  /* Add background color handling */
  
}

#s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 .shg-image-content-wrapper {
      aspect-ratio: 1650/2294;
      min-width: 100%;
      height: auto;
    }

    #s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 .shogun-image-link {
      aspect-ratio: 1650/2294;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1650px;
  }



  img.s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image {
    
    
    
    max-height: 1650px;
  }


.s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image {
  box-sizing: border-box;
}



.s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 {
      --shg-aspect-ratio: calc(1650/2294); 
    }

    .s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image-container {
      position: relative;
    }

    .s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1650px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 {
  margin: 0 !important;
  overflow: visible;
}

#s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 img.shogun-image {
  /* Add background color handling */
  
}

#s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 .shg-image-content-wrapper {
      aspect-ratio: 1650/2294;
      min-width: 100%;
      height: auto;
    }

    #s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 .shogun-image-link {
      aspect-ratio: 1650/2294;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1650px;
  }



  img.s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image {
    
    
    
    max-height: 1650px;
  }


.s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image {
  box-sizing: border-box;
}



.s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 {
      --shg-aspect-ratio: calc(1650/2294); 
    }

    .s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image-container {
      position: relative;
    }

    .s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1650px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 {
  margin: 0 !important;
  overflow: visible;
}

#s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 img.shogun-image {
  /* Add background color handling */
  
}

#s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 .shg-image-content-wrapper {
      aspect-ratio: 1650/2294;
      min-width: 100%;
      height: auto;
    }

    #s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 .shogun-image-link {
      aspect-ratio: 1650/2294;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1650px;
  }



  img.s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image {
    
    
    
    max-height: 1650px;
  }


.s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image {
  box-sizing: border-box;
}



.s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 {
      --shg-aspect-ratio: calc(1650/2294); 
    }

    .s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image-container {
      position: relative;
    }

    .s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1650px;
    }
  }

}@media (max-width: 767px){#s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 {
  margin: 0 !important;
  overflow: visible;
}

#s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 img.shogun-image {
  /* Add background color handling */
  
}

#s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 .shg-image-content-wrapper {
      aspect-ratio: 1650/2294;
      min-width: 100%;
      height: auto;
    }

    #s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 .shogun-image-link {
      aspect-ratio: 1650/2294;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1650px;
  }



  img.s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image {
    
    
    
    max-height: 1650px;
  }


.s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image {
  box-sizing: border-box;
}



.s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 {
      --shg-aspect-ratio: calc(1650/2294); 
    }

    .s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image-container {
      position: relative;
    }

    .s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3fd24e5c-c9b0-4968-9b00-4915c9ecf207 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1650px;
    }
  }

}
#s-8edfd11f-039f-4707-8372-108bf9bfcbb0 {
  margin-top: 2%;
margin-left: 0%;
margin-right: 0%;
min-height: 50px;
}
@media (min-width: 1200px){#s-8edfd11f-039f-4707-8372-108bf9bfcbb0 {
  margin-left: 12%;
margin-right: 12%;
display: none;
}
#s-8edfd11f-039f-4707-8372-108bf9bfcbb0, #wrap-s-8edfd11f-039f-4707-8372-108bf9bfcbb0, #wrap-content-s-8edfd11f-039f-4707-8372-108bf9bfcbb0 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8edfd11f-039f-4707-8372-108bf9bfcbb0 {
  margin-left: 8%;
margin-right: 8%;
display: none;
}
#s-8edfd11f-039f-4707-8372-108bf9bfcbb0, #wrap-s-8edfd11f-039f-4707-8372-108bf9bfcbb0, #wrap-content-s-8edfd11f-039f-4707-8372-108bf9bfcbb0 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-8edfd11f-039f-4707-8372-108bf9bfcbb0 {
  margin-left: 4%;
margin-right: 4%;
display: none;
}
#s-8edfd11f-039f-4707-8372-108bf9bfcbb0, #wrap-s-8edfd11f-039f-4707-8372-108bf9bfcbb0, #wrap-content-s-8edfd11f-039f-4707-8372-108bf9bfcbb0 { display: none !important; }}@media (max-width: 767px){#s-8edfd11f-039f-4707-8372-108bf9bfcbb0 {
  margin-left: 2%;
margin-right: 2%;
display: none;
}
#s-8edfd11f-039f-4707-8372-108bf9bfcbb0, #wrap-s-8edfd11f-039f-4707-8372-108bf9bfcbb0, #wrap-content-s-8edfd11f-039f-4707-8372-108bf9bfcbb0 { display: none !important; }}







#s-8edfd11f-039f-4707-8372-108bf9bfcbb0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8edfd11f-039f-4707-8372-108bf9bfcbb0.shg-box.shg-c {
  justify-content: center;
}

#s-9cdfa4bf-6eec-4ad8-9ea0-856f2124eede {
  margin-left: auto;
margin-right: auto;
min-height: 500px;
background-color: rgba(0, 0, 0, 1);
}








#s-9cdfa4bf-6eec-4ad8-9ea0-856f2124eede > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9cdfa4bf-6eec-4ad8-9ea0-856f2124eede.shg-box.shg-c {
  justify-content: center;
}

#s-d0adb977-fb75-459a-834f-2a081c90a2dd {
  margin-left: auto;
margin-right: auto;
padding-left: 5%;
padding-right: 5%;
min-height: 50px;
max-width: 1500px;
}
@media (min-width: 1200px){#s-d0adb977-fb75-459a-834f-2a081c90a2dd {
  display: none;
}
#s-d0adb977-fb75-459a-834f-2a081c90a2dd, #wrap-s-d0adb977-fb75-459a-834f-2a081c90a2dd, #wrap-content-s-d0adb977-fb75-459a-834f-2a081c90a2dd { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d0adb977-fb75-459a-834f-2a081c90a2dd {
  display: none;
}
#s-d0adb977-fb75-459a-834f-2a081c90a2dd, #wrap-s-d0adb977-fb75-459a-834f-2a081c90a2dd, #wrap-content-s-d0adb977-fb75-459a-834f-2a081c90a2dd { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d0adb977-fb75-459a-834f-2a081c90a2dd {
  display: none;
}
#s-d0adb977-fb75-459a-834f-2a081c90a2dd, #wrap-s-d0adb977-fb75-459a-834f-2a081c90a2dd, #wrap-content-s-d0adb977-fb75-459a-834f-2a081c90a2dd { display: none !important; }}@media (max-width: 767px){#s-d0adb977-fb75-459a-834f-2a081c90a2dd {
  padding-left: 2%;
padding-right: 2%;
display: none;
}
#s-d0adb977-fb75-459a-834f-2a081c90a2dd, #wrap-s-d0adb977-fb75-459a-834f-2a081c90a2dd, #wrap-content-s-d0adb977-fb75-459a-834f-2a081c90a2dd { display: none !important; }}







#s-d0adb977-fb75-459a-834f-2a081c90a2dd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d0adb977-fb75-459a-834f-2a081c90a2dd.shg-box.shg-c {
  justify-content: center;
}

#s-b302633a-c563-4dab-b4b2-faec75cc491f {
  margin-left: 0%;
margin-right: 0%;
min-height: 50px;
}
@media (min-width: 1200px){#s-b302633a-c563-4dab-b4b2-faec75cc491f {
  margin-left: 18%;
margin-right: 18%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b302633a-c563-4dab-b4b2-faec75cc491f {
  margin-left: 8%;
margin-right: 8%;
}
}







#s-b302633a-c563-4dab-b4b2-faec75cc491f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b302633a-c563-4dab-b4b2-faec75cc491f.shg-box.shg-c {
  justify-content: center;
}

#s-8a0057d9-20f3-471a-b011-98c821ea8718 {
  margin-top: 2%;
margin-left: auto;
margin-bottom: 0%;
margin-right: auto;
padding-top: 0%;
padding-bottom: 0%;
text-align: center;
}

#s-8a0057d9-20f3-471a-b011-98c821ea8718 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}


@media (min-width: 1200px){#s-8a0057d9-20f3-471a-b011-98c821ea8718 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: center;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-8a0057d9-20f3-471a-b011-98c821ea8718 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: center;
}


}@media (max-width: 767px){#s-8a0057d9-20f3-471a-b011-98c821ea8718 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: center;
}


}
.shogun-tabs {
  margin: 0 !important;
  list-style: none !important;
  padding: 0 0 0 0;
  overflow: visible;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.shogun-tabs.shogun-modern {
  padding-left: 10px;
  padding-right: 5px;
  overflow: hidden;
  transform: translate(0px, 0px);
}

.shogun-tabs li {
  text-decoration: none;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
}

.shogun-tabs.shogun-modern li {
  width: 200px;
  height: 45px;
  margin: 0 5px 0 0;
}

.shogun-tabs.shogun-rounded li {
  margin-bottom: 0;
  float: left;
  box-sizing: border-box;
  margin-right: 2px;
  line-height: 1.42857143;
  position: relative;
  display: block;
  overflow: visible;
}

.shogun-tabs.shogun-rounded li .shogun-tab-box {
  padding: 10px 15px !important;
  border-radius: 4px 4px 0 0;
}

.shogun-tabs.shogun-modern li .shogun-tab-box {
  padding: 12px 5px !important;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .shogun-tabs.shogun-rounded li .shogun-tab-box {
    padding: 10px 5px !important;
    text-align: center;
  }

  .shogun-tabs.shogun-modern li .shogun-tab-box {
    padding: 12px 15px !important;
  }
}

.shogun-tabs.shogun-rounded .shogun-tab-box {
  border-bottom: none !important;
}

.shogun-tabs.shogun-modern li.active {
  z-index: 40;
}

.shogun-tabs.shogun-modern li .shogun-tab-box::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: -1;
  outline: 1px solid transparent;
  border-radius: 4px 4px 0 0;
  content: "";
  transform: perspective(100px) rotateX(30deg);
  -webkit-transform: perspective(100px) rotateX(30deg);
}

.shogun-tabs.shogun-modern li.shogun-tab-active .shogun-tab-box::after {
  border-bottom: none !important;
  height: 46px;
}

.shogun-tabs-body {
  padding-top: 10px;
}

.shogun-tabs-body.shogun-rounded {
  margin-top: 0px !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.shogun-tabs-body > .shogun-tab-content {
  display: none;
}

.shogun-tabs-body > .shogun-tab-content.shogun-tab-active {
  animation: fadeIn 0.5s;
  display: block;
}

.shogun-tab-border {
  position: absolute;
}

.shogun-tab-title {
  white-space: nowrap;
  text-align: center;

  display: inline-block;
  width: 100%;
}

.shogun-tabs.shogun-modern .shogun-tab-title {
  /** Hack for Safari weird bug */
  /* https://stackoverflow.com/questions/18146511/bug-in-css3-rotatey-transition-on-safari */
  transform: translateZ(1000px);
}

#s-27006758-b0b3-494c-84c8-4c841f3d7c08 {
  margin-top: 2%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
}


  #s-27006758-b0b3-494c-84c8-4c841f3d7c08 .shogun-tabs > li > .shogun-tab-box {
    background: rgba(203, 203, 203, 1);
    border: 6px solid rgba(0, 0, 0, 1);
  }
  #s-27006758-b0b3-494c-84c8-4c841f3d7c08 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(52, 190, 174, 1);
    border: 6px solid rgba(0, 0, 0, 1);
  }
#s-27006758-b0b3-494c-84c8-4c841f3d7c08 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(0, 0, 0, 1);
  font-family: Montserrat;
  font-weight: 600;
  
  font-size: 18px;
}

#s-27006758-b0b3-494c-84c8-4c841f3d7c08 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(255, 255, 255, 1);
}

#s-27006758-b0b3-494c-84c8-4c841f3d7c08 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 6px);
  left: 6px;
  bottom: -6px;
  height: 6px;
  background: rgba(52, 190, 174, 1);
}

#s-27006758-b0b3-494c-84c8-4c841f3d7c08 .shogun-tabs-body {
  margin-top: -6px;
  border-top: 6px solid rgba(0, 0, 0, 1);
}
@media (max-width: 767px){
  #s-27006758-b0b3-494c-84c8-4c841f3d7c08 .shogun-tabs > li > .shogun-tab-box {
    background: rgba(203, 203, 203, 1);
    border: 4px solid rgba(0, 0, 0, 1);
  }
  #s-27006758-b0b3-494c-84c8-4c841f3d7c08 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(52, 190, 174, 1);
    border: 4px solid rgba(0, 0, 0, 1);
  }
#s-27006758-b0b3-494c-84c8-4c841f3d7c08 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(0, 0, 0, 1);
  font-family: Montserrat;
  font-weight: 600;
  
  font-size: 14px;
}

#s-27006758-b0b3-494c-84c8-4c841f3d7c08 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(255, 255, 255, 1);
}

#s-27006758-b0b3-494c-84c8-4c841f3d7c08 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 4px);
  left: 4px;
  bottom: -4px;
  height: 4px;
  background: rgba(52, 190, 174, 1);
}

#s-27006758-b0b3-494c-84c8-4c841f3d7c08 .shogun-tabs-body {
  margin-top: -4px;
  border-top: 4px solid rgba(0, 0, 0, 1);
}
}
#s-cc731577-b78b-4307-80e5-a878eecceb53 {
  margin-top: 2%;
margin-left: auto;
margin-right: auto;
max-width: 3984px;
aspect-ratio: 3984/633;
text-align: center;
}

#s-cc731577-b78b-4307-80e5-a878eecceb53 {
  margin: 0 !important;
  overflow: visible;
}

#s-cc731577-b78b-4307-80e5-a878eecceb53-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cc731577-b78b-4307-80e5-a878eecceb53 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 2%;
  
}

.shg-image-content-margin-container-s-cc731577-b78b-4307-80e5-a878eecceb53 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cc731577-b78b-4307-80e5-a878eecceb53 img.shogun-image {
  /* Add background color handling */
  
}

#s-cc731577-b78b-4307-80e5-a878eecceb53 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cc731577-b78b-4307-80e5-a878eecceb53 .shg-image-content-wrapper {
      aspect-ratio: 3984/633;
      min-width: 100%;
      height: auto;
    }

    #s-cc731577-b78b-4307-80e5-a878eecceb53 .shogun-image-link {
      aspect-ratio: 3984/633;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cc731577-b78b-4307-80e5-a878eecceb53 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cc731577-b78b-4307-80e5-a878eecceb53 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-cc731577-b78b-4307-80e5-a878eecceb53 .shogun-image-content {
  
    justify-content: center;
  
}

.s-cc731577-b78b-4307-80e5-a878eecceb53.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image {
  box-sizing: border-box;
}



.s-cc731577-b78b-4307-80e5-a878eecceb53 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-cc731577-b78b-4307-80e5-a878eecceb53 {
      --shg-aspect-ratio: calc(3984/633); 
    }

    .s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image-container {
      position: relative;
    }

    .s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cc731577-b78b-4307-80e5-a878eecceb53 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

@media (min-width: 1200px){#s-cc731577-b78b-4307-80e5-a878eecceb53 {
  margin: 0 !important;
  overflow: visible;
}

#s-cc731577-b78b-4307-80e5-a878eecceb53-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cc731577-b78b-4307-80e5-a878eecceb53 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cc731577-b78b-4307-80e5-a878eecceb53 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cc731577-b78b-4307-80e5-a878eecceb53 img.shogun-image {
  /* Add background color handling */
  
}

#s-cc731577-b78b-4307-80e5-a878eecceb53 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cc731577-b78b-4307-80e5-a878eecceb53 .shg-image-content-wrapper {
      aspect-ratio: 3984/633;
      min-width: 100%;
      height: auto;
    }

    #s-cc731577-b78b-4307-80e5-a878eecceb53 .shogun-image-link {
      aspect-ratio: 3984/633;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cc731577-b78b-4307-80e5-a878eecceb53 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cc731577-b78b-4307-80e5-a878eecceb53 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-cc731577-b78b-4307-80e5-a878eecceb53 .shogun-image-content {
  
    justify-content: center;
  
}

.s-cc731577-b78b-4307-80e5-a878eecceb53.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image {
  box-sizing: border-box;
}



.s-cc731577-b78b-4307-80e5-a878eecceb53 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-cc731577-b78b-4307-80e5-a878eecceb53 {
      --shg-aspect-ratio: calc(3984/633); 
    }

    .s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image-container {
      position: relative;
    }

    .s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cc731577-b78b-4307-80e5-a878eecceb53 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-cc731577-b78b-4307-80e5-a878eecceb53 {
  margin: 0 !important;
  overflow: visible;
}

#s-cc731577-b78b-4307-80e5-a878eecceb53-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cc731577-b78b-4307-80e5-a878eecceb53 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cc731577-b78b-4307-80e5-a878eecceb53 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cc731577-b78b-4307-80e5-a878eecceb53 img.shogun-image {
  /* Add background color handling */
  
}

#s-cc731577-b78b-4307-80e5-a878eecceb53 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cc731577-b78b-4307-80e5-a878eecceb53 .shg-image-content-wrapper {
      aspect-ratio: 3984/633;
      min-width: 100%;
      height: auto;
    }

    #s-cc731577-b78b-4307-80e5-a878eecceb53 .shogun-image-link {
      aspect-ratio: 3984/633;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cc731577-b78b-4307-80e5-a878eecceb53 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cc731577-b78b-4307-80e5-a878eecceb53 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-cc731577-b78b-4307-80e5-a878eecceb53 .shogun-image-content {
  
    justify-content: center;
  
}

.s-cc731577-b78b-4307-80e5-a878eecceb53.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image {
  box-sizing: border-box;
}



.s-cc731577-b78b-4307-80e5-a878eecceb53 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-cc731577-b78b-4307-80e5-a878eecceb53 {
      --shg-aspect-ratio: calc(3984/633); 
    }

    .s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image-container {
      position: relative;
    }

    .s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cc731577-b78b-4307-80e5-a878eecceb53 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-cc731577-b78b-4307-80e5-a878eecceb53 {
  margin: 0 !important;
  overflow: visible;
}

#s-cc731577-b78b-4307-80e5-a878eecceb53-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cc731577-b78b-4307-80e5-a878eecceb53 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cc731577-b78b-4307-80e5-a878eecceb53 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cc731577-b78b-4307-80e5-a878eecceb53 img.shogun-image {
  /* Add background color handling */
  
}

#s-cc731577-b78b-4307-80e5-a878eecceb53 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cc731577-b78b-4307-80e5-a878eecceb53 .shg-image-content-wrapper {
      aspect-ratio: 3984/633;
      min-width: 100%;
      height: auto;
    }

    #s-cc731577-b78b-4307-80e5-a878eecceb53 .shogun-image-link {
      aspect-ratio: 3984/633;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cc731577-b78b-4307-80e5-a878eecceb53 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cc731577-b78b-4307-80e5-a878eecceb53 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-cc731577-b78b-4307-80e5-a878eecceb53 .shogun-image-content {
  
    justify-content: center;
  
}

.s-cc731577-b78b-4307-80e5-a878eecceb53.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image {
  box-sizing: border-box;
}



.s-cc731577-b78b-4307-80e5-a878eecceb53 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-cc731577-b78b-4307-80e5-a878eecceb53 {
      --shg-aspect-ratio: calc(3984/633); 
    }

    .s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image-container {
      position: relative;
    }

    .s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cc731577-b78b-4307-80e5-a878eecceb53 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (max-width: 767px){#s-cc731577-b78b-4307-80e5-a878eecceb53 {
  margin: 0 !important;
  overflow: visible;
}

#s-cc731577-b78b-4307-80e5-a878eecceb53-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cc731577-b78b-4307-80e5-a878eecceb53 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cc731577-b78b-4307-80e5-a878eecceb53 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cc731577-b78b-4307-80e5-a878eecceb53 img.shogun-image {
  /* Add background color handling */
  
}

#s-cc731577-b78b-4307-80e5-a878eecceb53 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cc731577-b78b-4307-80e5-a878eecceb53 .shg-image-content-wrapper {
      aspect-ratio: 3984/633;
      min-width: 100%;
      height: auto;
    }

    #s-cc731577-b78b-4307-80e5-a878eecceb53 .shogun-image-link {
      aspect-ratio: 3984/633;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cc731577-b78b-4307-80e5-a878eecceb53 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cc731577-b78b-4307-80e5-a878eecceb53 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-cc731577-b78b-4307-80e5-a878eecceb53 .shogun-image-content {
  
    justify-content: center;
  
}

.s-cc731577-b78b-4307-80e5-a878eecceb53.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image {
  box-sizing: border-box;
}



.s-cc731577-b78b-4307-80e5-a878eecceb53 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-cc731577-b78b-4307-80e5-a878eecceb53 {
      --shg-aspect-ratio: calc(3984/633); 
    }

    .s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image-container {
      position: relative;
    }

    .s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cc731577-b78b-4307-80e5-a878eecceb53.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cc731577-b78b-4307-80e5-a878eecceb53 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}
#s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b {
  margin-top: 2%;
margin-left: auto;
margin-right: auto;
max-width: 3984px;
aspect-ratio: 3984/633;
text-align: center;
}

#s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b {
  margin: 0 !important;
  overflow: visible;
}

#s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 2%;
  
}

.shg-image-content-margin-container-s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b img.shogun-image {
  /* Add background color handling */
  
}

#s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b .shg-image-content-wrapper {
      aspect-ratio: 3984/633;
      min-width: 100%;
      height: auto;
    }

    #s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b .shogun-image-link {
      aspect-ratio: 3984/633;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b .shogun-image-content {
  
    justify-content: center;
  
}

.s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image {
  box-sizing: border-box;
}



.s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b {
      --shg-aspect-ratio: calc(3984/633); 
    }

    .s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image-container {
      position: relative;
    }

    .s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

@media (min-width: 1200px){#s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b {
  margin: 0 !important;
  overflow: visible;
}

#s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b img.shogun-image {
  /* Add background color handling */
  
}

#s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b .shg-image-content-wrapper {
      aspect-ratio: 3984/633;
      min-width: 100%;
      height: auto;
    }

    #s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b .shogun-image-link {
      aspect-ratio: 3984/633;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b .shogun-image-content {
  
    justify-content: center;
  
}

.s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image {
  box-sizing: border-box;
}



.s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b {
      --shg-aspect-ratio: calc(3984/633); 
    }

    .s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image-container {
      position: relative;
    }

    .s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b {
  margin: 0 !important;
  overflow: visible;
}

#s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b img.shogun-image {
  /* Add background color handling */
  
}

#s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b .shg-image-content-wrapper {
      aspect-ratio: 3984/633;
      min-width: 100%;
      height: auto;
    }

    #s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b .shogun-image-link {
      aspect-ratio: 3984/633;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b .shogun-image-content {
  
    justify-content: center;
  
}

.s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image {
  box-sizing: border-box;
}



.s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b {
      --shg-aspect-ratio: calc(3984/633); 
    }

    .s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image-container {
      position: relative;
    }

    .s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b {
  margin: 0 !important;
  overflow: visible;
}

#s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b img.shogun-image {
  /* Add background color handling */
  
}

#s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b .shg-image-content-wrapper {
      aspect-ratio: 3984/633;
      min-width: 100%;
      height: auto;
    }

    #s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b .shogun-image-link {
      aspect-ratio: 3984/633;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b .shogun-image-content {
  
    justify-content: center;
  
}

.s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image {
  box-sizing: border-box;
}



.s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b {
      --shg-aspect-ratio: calc(3984/633); 
    }

    .s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image-container {
      position: relative;
    }

    .s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (max-width: 767px){#s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b {
  margin: 0 !important;
  overflow: visible;
}

#s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b img.shogun-image {
  /* Add background color handling */
  
}

#s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b .shg-image-content-wrapper {
      aspect-ratio: 3984/633;
      min-width: 100%;
      height: auto;
    }

    #s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b .shogun-image-link {
      aspect-ratio: 3984/633;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b .shogun-image-content {
  
    justify-content: center;
  
}

.s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image {
  box-sizing: border-box;
}



.s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b {
      --shg-aspect-ratio: calc(3984/633); 
    }

    .s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image-container {
      position: relative;
    }

    .s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4ed57f08-1c2f-4641-ba6a-0787101cbf9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}
#s-29a621bb-428b-4205-8e19-6f487aafc814 {
  margin-left: auto;
margin-right: auto;
max-width: 3984px;
aspect-ratio: 3984/368;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-29a621bb-428b-4205-8e19-6f487aafc814 {
  display: none;
}
#s-29a621bb-428b-4205-8e19-6f487aafc814, #wrap-s-29a621bb-428b-4205-8e19-6f487aafc814, #wrap-content-s-29a621bb-428b-4205-8e19-6f487aafc814 { display: none !important; }}@media (max-width: 767px){#s-29a621bb-428b-4205-8e19-6f487aafc814 {
  display: none;
}
#s-29a621bb-428b-4205-8e19-6f487aafc814, #wrap-s-29a621bb-428b-4205-8e19-6f487aafc814, #wrap-content-s-29a621bb-428b-4205-8e19-6f487aafc814 { display: none !important; }}
#s-29a621bb-428b-4205-8e19-6f487aafc814 {
  margin: 0 !important;
  overflow: visible;
}

#s-29a621bb-428b-4205-8e19-6f487aafc814-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-29a621bb-428b-4205-8e19-6f487aafc814 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-29a621bb-428b-4205-8e19-6f487aafc814 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-29a621bb-428b-4205-8e19-6f487aafc814 img.shogun-image {
  /* Add background color handling */
  
}

#s-29a621bb-428b-4205-8e19-6f487aafc814 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-29a621bb-428b-4205-8e19-6f487aafc814 .shg-image-content-wrapper {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }

    #s-29a621bb-428b-4205-8e19-6f487aafc814 .shogun-image-link {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-29a621bb-428b-4205-8e19-6f487aafc814 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-29a621bb-428b-4205-8e19-6f487aafc814 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-29a621bb-428b-4205-8e19-6f487aafc814 .shogun-image-content {
  
    justify-content: center;
  
}

.s-29a621bb-428b-4205-8e19-6f487aafc814.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image {
  box-sizing: border-box;
}


.s-29a621bb-428b-4205-8e19-6f487aafc814 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-29a621bb-428b-4205-8e19-6f487aafc814 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-29a621bb-428b-4205-8e19-6f487aafc814 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-29a621bb-428b-4205-8e19-6f487aafc814 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-29a621bb-428b-4205-8e19-6f487aafc814 {
      --shg-aspect-ratio: calc(3984/368); 
    }

    .s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image-container {
      position: relative;
    }

    .s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-29a621bb-428b-4205-8e19-6f487aafc814 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

@media (min-width: 1200px){#s-29a621bb-428b-4205-8e19-6f487aafc814 {
  margin: 0 !important;
  overflow: visible;
}

#s-29a621bb-428b-4205-8e19-6f487aafc814-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-29a621bb-428b-4205-8e19-6f487aafc814 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-29a621bb-428b-4205-8e19-6f487aafc814 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-29a621bb-428b-4205-8e19-6f487aafc814 img.shogun-image {
  /* Add background color handling */
  
}

#s-29a621bb-428b-4205-8e19-6f487aafc814 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-29a621bb-428b-4205-8e19-6f487aafc814 .shg-image-content-wrapper {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }

    #s-29a621bb-428b-4205-8e19-6f487aafc814 .shogun-image-link {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-29a621bb-428b-4205-8e19-6f487aafc814 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-29a621bb-428b-4205-8e19-6f487aafc814 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-29a621bb-428b-4205-8e19-6f487aafc814 .shogun-image-content {
  
    justify-content: center;
  
}

.s-29a621bb-428b-4205-8e19-6f487aafc814.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image {
  box-sizing: border-box;
}


.s-29a621bb-428b-4205-8e19-6f487aafc814 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-29a621bb-428b-4205-8e19-6f487aafc814 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-29a621bb-428b-4205-8e19-6f487aafc814 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-29a621bb-428b-4205-8e19-6f487aafc814 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-29a621bb-428b-4205-8e19-6f487aafc814 {
      --shg-aspect-ratio: calc(3984/368); 
    }

    .s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image-container {
      position: relative;
    }

    .s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-29a621bb-428b-4205-8e19-6f487aafc814 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-29a621bb-428b-4205-8e19-6f487aafc814 {
  margin: 0 !important;
  overflow: visible;
}

#s-29a621bb-428b-4205-8e19-6f487aafc814-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-29a621bb-428b-4205-8e19-6f487aafc814 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-29a621bb-428b-4205-8e19-6f487aafc814 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-29a621bb-428b-4205-8e19-6f487aafc814 img.shogun-image {
  /* Add background color handling */
  
}

#s-29a621bb-428b-4205-8e19-6f487aafc814 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-29a621bb-428b-4205-8e19-6f487aafc814 .shg-image-content-wrapper {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }

    #s-29a621bb-428b-4205-8e19-6f487aafc814 .shogun-image-link {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-29a621bb-428b-4205-8e19-6f487aafc814 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-29a621bb-428b-4205-8e19-6f487aafc814 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-29a621bb-428b-4205-8e19-6f487aafc814 .shogun-image-content {
  
    justify-content: center;
  
}

.s-29a621bb-428b-4205-8e19-6f487aafc814.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image {
  box-sizing: border-box;
}


.s-29a621bb-428b-4205-8e19-6f487aafc814 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-29a621bb-428b-4205-8e19-6f487aafc814 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-29a621bb-428b-4205-8e19-6f487aafc814 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-29a621bb-428b-4205-8e19-6f487aafc814 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-29a621bb-428b-4205-8e19-6f487aafc814 {
      --shg-aspect-ratio: calc(3984/368); 
    }

    .s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image-container {
      position: relative;
    }

    .s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-29a621bb-428b-4205-8e19-6f487aafc814 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-29a621bb-428b-4205-8e19-6f487aafc814 {
  margin: 0 !important;
  overflow: visible;
}

#s-29a621bb-428b-4205-8e19-6f487aafc814-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-29a621bb-428b-4205-8e19-6f487aafc814 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-29a621bb-428b-4205-8e19-6f487aafc814 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-29a621bb-428b-4205-8e19-6f487aafc814 img.shogun-image {
  /* Add background color handling */
  
}

#s-29a621bb-428b-4205-8e19-6f487aafc814 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-29a621bb-428b-4205-8e19-6f487aafc814 .shg-image-content-wrapper {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }

    #s-29a621bb-428b-4205-8e19-6f487aafc814 .shogun-image-link {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-29a621bb-428b-4205-8e19-6f487aafc814 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-29a621bb-428b-4205-8e19-6f487aafc814 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-29a621bb-428b-4205-8e19-6f487aafc814 .shogun-image-content {
  
    justify-content: center;
  
}

.s-29a621bb-428b-4205-8e19-6f487aafc814.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image {
  box-sizing: border-box;
}


.s-29a621bb-428b-4205-8e19-6f487aafc814 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-29a621bb-428b-4205-8e19-6f487aafc814 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-29a621bb-428b-4205-8e19-6f487aafc814 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-29a621bb-428b-4205-8e19-6f487aafc814 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-29a621bb-428b-4205-8e19-6f487aafc814 {
      --shg-aspect-ratio: calc(3984/368); 
    }

    .s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image-container {
      position: relative;
    }

    .s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-29a621bb-428b-4205-8e19-6f487aafc814 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (max-width: 767px){#s-29a621bb-428b-4205-8e19-6f487aafc814 {
  margin: 0 !important;
  overflow: visible;
}

#s-29a621bb-428b-4205-8e19-6f487aafc814-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-29a621bb-428b-4205-8e19-6f487aafc814 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-29a621bb-428b-4205-8e19-6f487aafc814 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-29a621bb-428b-4205-8e19-6f487aafc814 img.shogun-image {
  /* Add background color handling */
  
}

#s-29a621bb-428b-4205-8e19-6f487aafc814 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-29a621bb-428b-4205-8e19-6f487aafc814 .shg-image-content-wrapper {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }

    #s-29a621bb-428b-4205-8e19-6f487aafc814 .shogun-image-link {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-29a621bb-428b-4205-8e19-6f487aafc814 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-29a621bb-428b-4205-8e19-6f487aafc814 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-29a621bb-428b-4205-8e19-6f487aafc814 .shogun-image-content {
  
    justify-content: center;
  
}

.s-29a621bb-428b-4205-8e19-6f487aafc814.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image {
  box-sizing: border-box;
}


.s-29a621bb-428b-4205-8e19-6f487aafc814 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-29a621bb-428b-4205-8e19-6f487aafc814 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-29a621bb-428b-4205-8e19-6f487aafc814 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-29a621bb-428b-4205-8e19-6f487aafc814 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-29a621bb-428b-4205-8e19-6f487aafc814 {
      --shg-aspect-ratio: calc(3984/368); 
    }

    .s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image-container {
      position: relative;
    }

    .s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-29a621bb-428b-4205-8e19-6f487aafc814.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-29a621bb-428b-4205-8e19-6f487aafc814 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}
#s-e7482ace-1e41-4158-b64d-356a8c1da02a {
  margin-left: auto;
margin-right: auto;
max-width: 3984px;
aspect-ratio: 3984/369;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-e7482ace-1e41-4158-b64d-356a8c1da02a {
  display: none;
}
#s-e7482ace-1e41-4158-b64d-356a8c1da02a, #wrap-s-e7482ace-1e41-4158-b64d-356a8c1da02a, #wrap-content-s-e7482ace-1e41-4158-b64d-356a8c1da02a { display: none !important; }}@media (max-width: 767px){#s-e7482ace-1e41-4158-b64d-356a8c1da02a {
  display: none;
}
#s-e7482ace-1e41-4158-b64d-356a8c1da02a, #wrap-s-e7482ace-1e41-4158-b64d-356a8c1da02a, #wrap-content-s-e7482ace-1e41-4158-b64d-356a8c1da02a { display: none !important; }}
#s-e7482ace-1e41-4158-b64d-356a8c1da02a {
  margin: 0 !important;
  overflow: visible;
}

#s-e7482ace-1e41-4158-b64d-356a8c1da02a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e7482ace-1e41-4158-b64d-356a8c1da02a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e7482ace-1e41-4158-b64d-356a8c1da02a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e7482ace-1e41-4158-b64d-356a8c1da02a img.shogun-image {
  /* Add background color handling */
  
}

#s-e7482ace-1e41-4158-b64d-356a8c1da02a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e7482ace-1e41-4158-b64d-356a8c1da02a .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-e7482ace-1e41-4158-b64d-356a8c1da02a .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e7482ace-1e41-4158-b64d-356a8c1da02a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e7482ace-1e41-4158-b64d-356a8c1da02a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-e7482ace-1e41-4158-b64d-356a8c1da02a .shogun-image-content {
  
    justify-content: center;
  
}

.s-e7482ace-1e41-4158-b64d-356a8c1da02a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image {
  box-sizing: border-box;
}


.s-e7482ace-1e41-4158-b64d-356a8c1da02a .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-e7482ace-1e41-4158-b64d-356a8c1da02a .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-e7482ace-1e41-4158-b64d-356a8c1da02a .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-e7482ace-1e41-4158-b64d-356a8c1da02a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e7482ace-1e41-4158-b64d-356a8c1da02a {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image-container {
      position: relative;
    }

    .s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e7482ace-1e41-4158-b64d-356a8c1da02a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

@media (min-width: 1200px){#s-e7482ace-1e41-4158-b64d-356a8c1da02a {
  margin: 0 !important;
  overflow: visible;
}

#s-e7482ace-1e41-4158-b64d-356a8c1da02a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e7482ace-1e41-4158-b64d-356a8c1da02a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e7482ace-1e41-4158-b64d-356a8c1da02a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e7482ace-1e41-4158-b64d-356a8c1da02a img.shogun-image {
  /* Add background color handling */
  
}

#s-e7482ace-1e41-4158-b64d-356a8c1da02a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e7482ace-1e41-4158-b64d-356a8c1da02a .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-e7482ace-1e41-4158-b64d-356a8c1da02a .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e7482ace-1e41-4158-b64d-356a8c1da02a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e7482ace-1e41-4158-b64d-356a8c1da02a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-e7482ace-1e41-4158-b64d-356a8c1da02a .shogun-image-content {
  
    justify-content: center;
  
}

.s-e7482ace-1e41-4158-b64d-356a8c1da02a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image {
  box-sizing: border-box;
}


.s-e7482ace-1e41-4158-b64d-356a8c1da02a .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-e7482ace-1e41-4158-b64d-356a8c1da02a .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-e7482ace-1e41-4158-b64d-356a8c1da02a .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-e7482ace-1e41-4158-b64d-356a8c1da02a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e7482ace-1e41-4158-b64d-356a8c1da02a {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image-container {
      position: relative;
    }

    .s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e7482ace-1e41-4158-b64d-356a8c1da02a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-e7482ace-1e41-4158-b64d-356a8c1da02a {
  margin: 0 !important;
  overflow: visible;
}

#s-e7482ace-1e41-4158-b64d-356a8c1da02a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e7482ace-1e41-4158-b64d-356a8c1da02a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e7482ace-1e41-4158-b64d-356a8c1da02a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e7482ace-1e41-4158-b64d-356a8c1da02a img.shogun-image {
  /* Add background color handling */
  
}

#s-e7482ace-1e41-4158-b64d-356a8c1da02a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e7482ace-1e41-4158-b64d-356a8c1da02a .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-e7482ace-1e41-4158-b64d-356a8c1da02a .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e7482ace-1e41-4158-b64d-356a8c1da02a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e7482ace-1e41-4158-b64d-356a8c1da02a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-e7482ace-1e41-4158-b64d-356a8c1da02a .shogun-image-content {
  
    justify-content: center;
  
}

.s-e7482ace-1e41-4158-b64d-356a8c1da02a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image {
  box-sizing: border-box;
}


.s-e7482ace-1e41-4158-b64d-356a8c1da02a .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-e7482ace-1e41-4158-b64d-356a8c1da02a .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-e7482ace-1e41-4158-b64d-356a8c1da02a .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-e7482ace-1e41-4158-b64d-356a8c1da02a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e7482ace-1e41-4158-b64d-356a8c1da02a {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image-container {
      position: relative;
    }

    .s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e7482ace-1e41-4158-b64d-356a8c1da02a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-e7482ace-1e41-4158-b64d-356a8c1da02a {
  margin: 0 !important;
  overflow: visible;
}

#s-e7482ace-1e41-4158-b64d-356a8c1da02a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e7482ace-1e41-4158-b64d-356a8c1da02a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e7482ace-1e41-4158-b64d-356a8c1da02a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e7482ace-1e41-4158-b64d-356a8c1da02a img.shogun-image {
  /* Add background color handling */
  
}

#s-e7482ace-1e41-4158-b64d-356a8c1da02a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e7482ace-1e41-4158-b64d-356a8c1da02a .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-e7482ace-1e41-4158-b64d-356a8c1da02a .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e7482ace-1e41-4158-b64d-356a8c1da02a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e7482ace-1e41-4158-b64d-356a8c1da02a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-e7482ace-1e41-4158-b64d-356a8c1da02a .shogun-image-content {
  
    justify-content: center;
  
}

.s-e7482ace-1e41-4158-b64d-356a8c1da02a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image {
  box-sizing: border-box;
}


.s-e7482ace-1e41-4158-b64d-356a8c1da02a .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-e7482ace-1e41-4158-b64d-356a8c1da02a .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-e7482ace-1e41-4158-b64d-356a8c1da02a .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-e7482ace-1e41-4158-b64d-356a8c1da02a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e7482ace-1e41-4158-b64d-356a8c1da02a {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image-container {
      position: relative;
    }

    .s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e7482ace-1e41-4158-b64d-356a8c1da02a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (max-width: 767px){#s-e7482ace-1e41-4158-b64d-356a8c1da02a {
  margin: 0 !important;
  overflow: visible;
}

#s-e7482ace-1e41-4158-b64d-356a8c1da02a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e7482ace-1e41-4158-b64d-356a8c1da02a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e7482ace-1e41-4158-b64d-356a8c1da02a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e7482ace-1e41-4158-b64d-356a8c1da02a img.shogun-image {
  /* Add background color handling */
  
}

#s-e7482ace-1e41-4158-b64d-356a8c1da02a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e7482ace-1e41-4158-b64d-356a8c1da02a .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-e7482ace-1e41-4158-b64d-356a8c1da02a .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e7482ace-1e41-4158-b64d-356a8c1da02a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e7482ace-1e41-4158-b64d-356a8c1da02a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-e7482ace-1e41-4158-b64d-356a8c1da02a .shogun-image-content {
  
    justify-content: center;
  
}

.s-e7482ace-1e41-4158-b64d-356a8c1da02a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image {
  box-sizing: border-box;
}


.s-e7482ace-1e41-4158-b64d-356a8c1da02a .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-e7482ace-1e41-4158-b64d-356a8c1da02a .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-e7482ace-1e41-4158-b64d-356a8c1da02a .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-e7482ace-1e41-4158-b64d-356a8c1da02a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e7482ace-1e41-4158-b64d-356a8c1da02a {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image-container {
      position: relative;
    }

    .s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e7482ace-1e41-4158-b64d-356a8c1da02a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e7482ace-1e41-4158-b64d-356a8c1da02a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}
#s-7c7dfa10-76f7-477c-b2db-d6780cf828cf {
  margin-left: auto;
margin-right: auto;
max-width: 3984px;
aspect-ratio: 3984/369;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-7c7dfa10-76f7-477c-b2db-d6780cf828cf {
  display: none;
}
#s-7c7dfa10-76f7-477c-b2db-d6780cf828cf, #wrap-s-7c7dfa10-76f7-477c-b2db-d6780cf828cf, #wrap-content-s-7c7dfa10-76f7-477c-b2db-d6780cf828cf { display: none !important; }}@media (max-width: 767px){#s-7c7dfa10-76f7-477c-b2db-d6780cf828cf {
  display: none;
}
#s-7c7dfa10-76f7-477c-b2db-d6780cf828cf, #wrap-s-7c7dfa10-76f7-477c-b2db-d6780cf828cf, #wrap-content-s-7c7dfa10-76f7-477c-b2db-d6780cf828cf { display: none !important; }}
#s-7c7dfa10-76f7-477c-b2db-d6780cf828cf {
  margin: 0 !important;
  overflow: visible;
}

#s-7c7dfa10-76f7-477c-b2db-d6780cf828cf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7c7dfa10-76f7-477c-b2db-d6780cf828cf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7c7dfa10-76f7-477c-b2db-d6780cf828cf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7c7dfa10-76f7-477c-b2db-d6780cf828cf img.shogun-image {
  /* Add background color handling */
  
}

#s-7c7dfa10-76f7-477c-b2db-d6780cf828cf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7c7dfa10-76f7-477c-b2db-d6780cf828cf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shogun-image-content {
  
    justify-content: center;
  
}

.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image {
  box-sizing: border-box;
}


.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7c7dfa10-76f7-477c-b2db-d6780cf828cf {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image-container {
      position: relative;
    }

    .s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7c7dfa10-76f7-477c-b2db-d6780cf828cf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

@media (min-width: 1200px){#s-7c7dfa10-76f7-477c-b2db-d6780cf828cf {
  margin: 0 !important;
  overflow: visible;
}

#s-7c7dfa10-76f7-477c-b2db-d6780cf828cf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7c7dfa10-76f7-477c-b2db-d6780cf828cf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7c7dfa10-76f7-477c-b2db-d6780cf828cf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7c7dfa10-76f7-477c-b2db-d6780cf828cf img.shogun-image {
  /* Add background color handling */
  
}

#s-7c7dfa10-76f7-477c-b2db-d6780cf828cf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7c7dfa10-76f7-477c-b2db-d6780cf828cf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shogun-image-content {
  
    justify-content: center;
  
}

.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image {
  box-sizing: border-box;
}


.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7c7dfa10-76f7-477c-b2db-d6780cf828cf {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image-container {
      position: relative;
    }

    .s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7c7dfa10-76f7-477c-b2db-d6780cf828cf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-7c7dfa10-76f7-477c-b2db-d6780cf828cf {
  margin: 0 !important;
  overflow: visible;
}

#s-7c7dfa10-76f7-477c-b2db-d6780cf828cf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7c7dfa10-76f7-477c-b2db-d6780cf828cf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7c7dfa10-76f7-477c-b2db-d6780cf828cf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7c7dfa10-76f7-477c-b2db-d6780cf828cf img.shogun-image {
  /* Add background color handling */
  
}

#s-7c7dfa10-76f7-477c-b2db-d6780cf828cf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7c7dfa10-76f7-477c-b2db-d6780cf828cf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shogun-image-content {
  
    justify-content: center;
  
}

.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image {
  box-sizing: border-box;
}


.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7c7dfa10-76f7-477c-b2db-d6780cf828cf {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image-container {
      position: relative;
    }

    .s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7c7dfa10-76f7-477c-b2db-d6780cf828cf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-7c7dfa10-76f7-477c-b2db-d6780cf828cf {
  margin: 0 !important;
  overflow: visible;
}

#s-7c7dfa10-76f7-477c-b2db-d6780cf828cf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7c7dfa10-76f7-477c-b2db-d6780cf828cf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7c7dfa10-76f7-477c-b2db-d6780cf828cf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7c7dfa10-76f7-477c-b2db-d6780cf828cf img.shogun-image {
  /* Add background color handling */
  
}

#s-7c7dfa10-76f7-477c-b2db-d6780cf828cf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7c7dfa10-76f7-477c-b2db-d6780cf828cf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shogun-image-content {
  
    justify-content: center;
  
}

.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image {
  box-sizing: border-box;
}


.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7c7dfa10-76f7-477c-b2db-d6780cf828cf {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image-container {
      position: relative;
    }

    .s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7c7dfa10-76f7-477c-b2db-d6780cf828cf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (max-width: 767px){#s-7c7dfa10-76f7-477c-b2db-d6780cf828cf {
  margin: 0 !important;
  overflow: visible;
}

#s-7c7dfa10-76f7-477c-b2db-d6780cf828cf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7c7dfa10-76f7-477c-b2db-d6780cf828cf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7c7dfa10-76f7-477c-b2db-d6780cf828cf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7c7dfa10-76f7-477c-b2db-d6780cf828cf img.shogun-image {
  /* Add background color handling */
  
}

#s-7c7dfa10-76f7-477c-b2db-d6780cf828cf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7c7dfa10-76f7-477c-b2db-d6780cf828cf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shogun-image-content {
  
    justify-content: center;
  
}

.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image {
  box-sizing: border-box;
}


.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-7c7dfa10-76f7-477c-b2db-d6780cf828cf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7c7dfa10-76f7-477c-b2db-d6780cf828cf {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image-container {
      position: relative;
    }

    .s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7c7dfa10-76f7-477c-b2db-d6780cf828cf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7c7dfa10-76f7-477c-b2db-d6780cf828cf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}
#s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf {
  margin-left: auto;
margin-right: auto;
max-width: 3984px;
aspect-ratio: 3984/369;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf {
  display: none;
}
#s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf, #wrap-s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf, #wrap-content-s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf { display: none !important; }}@media (max-width: 767px){#s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf {
  display: none;
}
#s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf, #wrap-s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf, #wrap-content-s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf { display: none !important; }}
#s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf {
  margin: 0 !important;
  overflow: visible;
}

#s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf img.shogun-image {
  /* Add background color handling */
  
}

#s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shogun-image-content {
  
    justify-content: center;
  
}

.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image {
  box-sizing: border-box;
}


.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image-container {
      position: relative;
    }

    .s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

@media (min-width: 1200px){#s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf {
  margin: 0 !important;
  overflow: visible;
}

#s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf img.shogun-image {
  /* Add background color handling */
  
}

#s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shogun-image-content {
  
    justify-content: center;
  
}

.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image {
  box-sizing: border-box;
}


.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image-container {
      position: relative;
    }

    .s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf {
  margin: 0 !important;
  overflow: visible;
}

#s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf img.shogun-image {
  /* Add background color handling */
  
}

#s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shogun-image-content {
  
    justify-content: center;
  
}

.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image {
  box-sizing: border-box;
}


.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image-container {
      position: relative;
    }

    .s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf {
  margin: 0 !important;
  overflow: visible;
}

#s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf img.shogun-image {
  /* Add background color handling */
  
}

#s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shogun-image-content {
  
    justify-content: center;
  
}

.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image {
  box-sizing: border-box;
}


.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image-container {
      position: relative;
    }

    .s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (max-width: 767px){#s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf {
  margin: 0 !important;
  overflow: visible;
}

#s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf img.shogun-image {
  /* Add background color handling */
  
}

#s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shogun-image-content {
  
    justify-content: center;
  
}

.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image {
  box-sizing: border-box;
}


.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image-container {
      position: relative;
    }

    .s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ae3206d5-9eb4-4c31-bf63-1c71a4282cdf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}
#s-d14beeb7-cb74-48dd-ac41-71f600f9844e {
  margin-left: auto;
margin-right: auto;
max-width: 3984px;
aspect-ratio: 3984/368;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-d14beeb7-cb74-48dd-ac41-71f600f9844e {
  display: none;
}
#s-d14beeb7-cb74-48dd-ac41-71f600f9844e, #wrap-s-d14beeb7-cb74-48dd-ac41-71f600f9844e, #wrap-content-s-d14beeb7-cb74-48dd-ac41-71f600f9844e { display: none !important; }}@media (max-width: 767px){#s-d14beeb7-cb74-48dd-ac41-71f600f9844e {
  display: none;
}
#s-d14beeb7-cb74-48dd-ac41-71f600f9844e, #wrap-s-d14beeb7-cb74-48dd-ac41-71f600f9844e, #wrap-content-s-d14beeb7-cb74-48dd-ac41-71f600f9844e { display: none !important; }}
#s-d14beeb7-cb74-48dd-ac41-71f600f9844e {
  margin: 0 !important;
  overflow: visible;
}

#s-d14beeb7-cb74-48dd-ac41-71f600f9844e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d14beeb7-cb74-48dd-ac41-71f600f9844e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d14beeb7-cb74-48dd-ac41-71f600f9844e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d14beeb7-cb74-48dd-ac41-71f600f9844e img.shogun-image {
  /* Add background color handling */
  
}

#s-d14beeb7-cb74-48dd-ac41-71f600f9844e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shg-image-content-wrapper {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }

    #s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shogun-image-link {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d14beeb7-cb74-48dd-ac41-71f600f9844e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shogun-image-content {
  
    justify-content: center;
  
}

.s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image {
  box-sizing: border-box;
}


.s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-d14beeb7-cb74-48dd-ac41-71f600f9844e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d14beeb7-cb74-48dd-ac41-71f600f9844e {
      --shg-aspect-ratio: calc(3984/368); 
    }

    .s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image-container {
      position: relative;
    }

    .s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d14beeb7-cb74-48dd-ac41-71f600f9844e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

@media (min-width: 1200px){#s-d14beeb7-cb74-48dd-ac41-71f600f9844e {
  margin: 0 !important;
  overflow: visible;
}

#s-d14beeb7-cb74-48dd-ac41-71f600f9844e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d14beeb7-cb74-48dd-ac41-71f600f9844e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d14beeb7-cb74-48dd-ac41-71f600f9844e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d14beeb7-cb74-48dd-ac41-71f600f9844e img.shogun-image {
  /* Add background color handling */
  
}

#s-d14beeb7-cb74-48dd-ac41-71f600f9844e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shg-image-content-wrapper {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }

    #s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shogun-image-link {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d14beeb7-cb74-48dd-ac41-71f600f9844e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shogun-image-content {
  
    justify-content: center;
  
}

.s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image {
  box-sizing: border-box;
}


.s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-d14beeb7-cb74-48dd-ac41-71f600f9844e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d14beeb7-cb74-48dd-ac41-71f600f9844e {
      --shg-aspect-ratio: calc(3984/368); 
    }

    .s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image-container {
      position: relative;
    }

    .s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d14beeb7-cb74-48dd-ac41-71f600f9844e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-d14beeb7-cb74-48dd-ac41-71f600f9844e {
  margin: 0 !important;
  overflow: visible;
}

#s-d14beeb7-cb74-48dd-ac41-71f600f9844e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d14beeb7-cb74-48dd-ac41-71f600f9844e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d14beeb7-cb74-48dd-ac41-71f600f9844e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d14beeb7-cb74-48dd-ac41-71f600f9844e img.shogun-image {
  /* Add background color handling */
  
}

#s-d14beeb7-cb74-48dd-ac41-71f600f9844e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shg-image-content-wrapper {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }

    #s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shogun-image-link {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d14beeb7-cb74-48dd-ac41-71f600f9844e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shogun-image-content {
  
    justify-content: center;
  
}

.s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image {
  box-sizing: border-box;
}


.s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-d14beeb7-cb74-48dd-ac41-71f600f9844e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d14beeb7-cb74-48dd-ac41-71f600f9844e {
      --shg-aspect-ratio: calc(3984/368); 
    }

    .s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image-container {
      position: relative;
    }

    .s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d14beeb7-cb74-48dd-ac41-71f600f9844e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-d14beeb7-cb74-48dd-ac41-71f600f9844e {
  margin: 0 !important;
  overflow: visible;
}

#s-d14beeb7-cb74-48dd-ac41-71f600f9844e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d14beeb7-cb74-48dd-ac41-71f600f9844e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d14beeb7-cb74-48dd-ac41-71f600f9844e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d14beeb7-cb74-48dd-ac41-71f600f9844e img.shogun-image {
  /* Add background color handling */
  
}

#s-d14beeb7-cb74-48dd-ac41-71f600f9844e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shg-image-content-wrapper {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }

    #s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shogun-image-link {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d14beeb7-cb74-48dd-ac41-71f600f9844e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shogun-image-content {
  
    justify-content: center;
  
}

.s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image {
  box-sizing: border-box;
}


.s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-d14beeb7-cb74-48dd-ac41-71f600f9844e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d14beeb7-cb74-48dd-ac41-71f600f9844e {
      --shg-aspect-ratio: calc(3984/368); 
    }

    .s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image-container {
      position: relative;
    }

    .s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d14beeb7-cb74-48dd-ac41-71f600f9844e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (max-width: 767px){#s-d14beeb7-cb74-48dd-ac41-71f600f9844e {
  margin: 0 !important;
  overflow: visible;
}

#s-d14beeb7-cb74-48dd-ac41-71f600f9844e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d14beeb7-cb74-48dd-ac41-71f600f9844e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d14beeb7-cb74-48dd-ac41-71f600f9844e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d14beeb7-cb74-48dd-ac41-71f600f9844e img.shogun-image {
  /* Add background color handling */
  
}

#s-d14beeb7-cb74-48dd-ac41-71f600f9844e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shg-image-content-wrapper {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }

    #s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shogun-image-link {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d14beeb7-cb74-48dd-ac41-71f600f9844e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shogun-image-content {
  
    justify-content: center;
  
}

.s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image {
  box-sizing: border-box;
}


.s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-d14beeb7-cb74-48dd-ac41-71f600f9844e .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-d14beeb7-cb74-48dd-ac41-71f600f9844e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d14beeb7-cb74-48dd-ac41-71f600f9844e {
      --shg-aspect-ratio: calc(3984/368); 
    }

    .s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image-container {
      position: relative;
    }

    .s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d14beeb7-cb74-48dd-ac41-71f600f9844e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d14beeb7-cb74-48dd-ac41-71f600f9844e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}
#s-87d25921-60de-4e36-aab6-74623f57b202 {
  margin-left: auto;
margin-right: auto;
max-width: 3984px;
aspect-ratio: 3984/367;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-87d25921-60de-4e36-aab6-74623f57b202 {
  display: none;
}
#s-87d25921-60de-4e36-aab6-74623f57b202, #wrap-s-87d25921-60de-4e36-aab6-74623f57b202, #wrap-content-s-87d25921-60de-4e36-aab6-74623f57b202 { display: none !important; }}@media (max-width: 767px){#s-87d25921-60de-4e36-aab6-74623f57b202 {
  display: none;
}
#s-87d25921-60de-4e36-aab6-74623f57b202, #wrap-s-87d25921-60de-4e36-aab6-74623f57b202, #wrap-content-s-87d25921-60de-4e36-aab6-74623f57b202 { display: none !important; }}
#s-87d25921-60de-4e36-aab6-74623f57b202 {
  margin: 0 !important;
  overflow: visible;
}

#s-87d25921-60de-4e36-aab6-74623f57b202-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-87d25921-60de-4e36-aab6-74623f57b202 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-87d25921-60de-4e36-aab6-74623f57b202 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-87d25921-60de-4e36-aab6-74623f57b202 img.shogun-image {
  /* Add background color handling */
  
}

#s-87d25921-60de-4e36-aab6-74623f57b202 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-87d25921-60de-4e36-aab6-74623f57b202 .shg-image-content-wrapper {
      aspect-ratio: 3984/367;
      min-width: 100%;
      height: auto;
    }

    #s-87d25921-60de-4e36-aab6-74623f57b202 .shogun-image-link {
      aspect-ratio: 3984/367;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-87d25921-60de-4e36-aab6-74623f57b202 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-87d25921-60de-4e36-aab6-74623f57b202 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-87d25921-60de-4e36-aab6-74623f57b202 .shogun-image-content {
  
    justify-content: center;
  
}

.s-87d25921-60de-4e36-aab6-74623f57b202.shg-align-container {
  display: flex;
  justify-content: center
}

.s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image {
  box-sizing: border-box;
}


.s-87d25921-60de-4e36-aab6-74623f57b202 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-87d25921-60de-4e36-aab6-74623f57b202 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-87d25921-60de-4e36-aab6-74623f57b202 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-87d25921-60de-4e36-aab6-74623f57b202 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-87d25921-60de-4e36-aab6-74623f57b202 {
      --shg-aspect-ratio: calc(3984/367); 
    }

    .s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image-container {
      position: relative;
    }

    .s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-87d25921-60de-4e36-aab6-74623f57b202 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

@media (min-width: 1200px){#s-87d25921-60de-4e36-aab6-74623f57b202 {
  margin: 0 !important;
  overflow: visible;
}

#s-87d25921-60de-4e36-aab6-74623f57b202-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-87d25921-60de-4e36-aab6-74623f57b202 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-87d25921-60de-4e36-aab6-74623f57b202 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-87d25921-60de-4e36-aab6-74623f57b202 img.shogun-image {
  /* Add background color handling */
  
}

#s-87d25921-60de-4e36-aab6-74623f57b202 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-87d25921-60de-4e36-aab6-74623f57b202 .shg-image-content-wrapper {
      aspect-ratio: 3984/367;
      min-width: 100%;
      height: auto;
    }

    #s-87d25921-60de-4e36-aab6-74623f57b202 .shogun-image-link {
      aspect-ratio: 3984/367;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-87d25921-60de-4e36-aab6-74623f57b202 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-87d25921-60de-4e36-aab6-74623f57b202 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-87d25921-60de-4e36-aab6-74623f57b202 .shogun-image-content {
  
    justify-content: center;
  
}

.s-87d25921-60de-4e36-aab6-74623f57b202.shg-align-container {
  display: flex;
  justify-content: center
}

.s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image {
  box-sizing: border-box;
}


.s-87d25921-60de-4e36-aab6-74623f57b202 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-87d25921-60de-4e36-aab6-74623f57b202 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-87d25921-60de-4e36-aab6-74623f57b202 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-87d25921-60de-4e36-aab6-74623f57b202 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-87d25921-60de-4e36-aab6-74623f57b202 {
      --shg-aspect-ratio: calc(3984/367); 
    }

    .s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image-container {
      position: relative;
    }

    .s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-87d25921-60de-4e36-aab6-74623f57b202 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-87d25921-60de-4e36-aab6-74623f57b202 {
  margin: 0 !important;
  overflow: visible;
}

#s-87d25921-60de-4e36-aab6-74623f57b202-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-87d25921-60de-4e36-aab6-74623f57b202 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-87d25921-60de-4e36-aab6-74623f57b202 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-87d25921-60de-4e36-aab6-74623f57b202 img.shogun-image {
  /* Add background color handling */
  
}

#s-87d25921-60de-4e36-aab6-74623f57b202 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-87d25921-60de-4e36-aab6-74623f57b202 .shg-image-content-wrapper {
      aspect-ratio: 3984/367;
      min-width: 100%;
      height: auto;
    }

    #s-87d25921-60de-4e36-aab6-74623f57b202 .shogun-image-link {
      aspect-ratio: 3984/367;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-87d25921-60de-4e36-aab6-74623f57b202 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-87d25921-60de-4e36-aab6-74623f57b202 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-87d25921-60de-4e36-aab6-74623f57b202 .shogun-image-content {
  
    justify-content: center;
  
}

.s-87d25921-60de-4e36-aab6-74623f57b202.shg-align-container {
  display: flex;
  justify-content: center
}

.s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image {
  box-sizing: border-box;
}


.s-87d25921-60de-4e36-aab6-74623f57b202 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-87d25921-60de-4e36-aab6-74623f57b202 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-87d25921-60de-4e36-aab6-74623f57b202 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-87d25921-60de-4e36-aab6-74623f57b202 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-87d25921-60de-4e36-aab6-74623f57b202 {
      --shg-aspect-ratio: calc(3984/367); 
    }

    .s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image-container {
      position: relative;
    }

    .s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-87d25921-60de-4e36-aab6-74623f57b202 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-87d25921-60de-4e36-aab6-74623f57b202 {
  margin: 0 !important;
  overflow: visible;
}

#s-87d25921-60de-4e36-aab6-74623f57b202-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-87d25921-60de-4e36-aab6-74623f57b202 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-87d25921-60de-4e36-aab6-74623f57b202 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-87d25921-60de-4e36-aab6-74623f57b202 img.shogun-image {
  /* Add background color handling */
  
}

#s-87d25921-60de-4e36-aab6-74623f57b202 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-87d25921-60de-4e36-aab6-74623f57b202 .shg-image-content-wrapper {
      aspect-ratio: 3984/367;
      min-width: 100%;
      height: auto;
    }

    #s-87d25921-60de-4e36-aab6-74623f57b202 .shogun-image-link {
      aspect-ratio: 3984/367;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-87d25921-60de-4e36-aab6-74623f57b202 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-87d25921-60de-4e36-aab6-74623f57b202 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-87d25921-60de-4e36-aab6-74623f57b202 .shogun-image-content {
  
    justify-content: center;
  
}

.s-87d25921-60de-4e36-aab6-74623f57b202.shg-align-container {
  display: flex;
  justify-content: center
}

.s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image {
  box-sizing: border-box;
}


.s-87d25921-60de-4e36-aab6-74623f57b202 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-87d25921-60de-4e36-aab6-74623f57b202 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-87d25921-60de-4e36-aab6-74623f57b202 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-87d25921-60de-4e36-aab6-74623f57b202 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-87d25921-60de-4e36-aab6-74623f57b202 {
      --shg-aspect-ratio: calc(3984/367); 
    }

    .s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image-container {
      position: relative;
    }

    .s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-87d25921-60de-4e36-aab6-74623f57b202 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (max-width: 767px){#s-87d25921-60de-4e36-aab6-74623f57b202 {
  margin: 0 !important;
  overflow: visible;
}

#s-87d25921-60de-4e36-aab6-74623f57b202-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-87d25921-60de-4e36-aab6-74623f57b202 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-87d25921-60de-4e36-aab6-74623f57b202 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-87d25921-60de-4e36-aab6-74623f57b202 img.shogun-image {
  /* Add background color handling */
  
}

#s-87d25921-60de-4e36-aab6-74623f57b202 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-87d25921-60de-4e36-aab6-74623f57b202 .shg-image-content-wrapper {
      aspect-ratio: 3984/367;
      min-width: 100%;
      height: auto;
    }

    #s-87d25921-60de-4e36-aab6-74623f57b202 .shogun-image-link {
      aspect-ratio: 3984/367;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-87d25921-60de-4e36-aab6-74623f57b202 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-87d25921-60de-4e36-aab6-74623f57b202 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-87d25921-60de-4e36-aab6-74623f57b202 .shogun-image-content {
  
    justify-content: center;
  
}

.s-87d25921-60de-4e36-aab6-74623f57b202.shg-align-container {
  display: flex;
  justify-content: center
}

.s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image {
  box-sizing: border-box;
}


.s-87d25921-60de-4e36-aab6-74623f57b202 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-87d25921-60de-4e36-aab6-74623f57b202 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-87d25921-60de-4e36-aab6-74623f57b202 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-87d25921-60de-4e36-aab6-74623f57b202 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-87d25921-60de-4e36-aab6-74623f57b202 {
      --shg-aspect-ratio: calc(3984/367); 
    }

    .s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image-container {
      position: relative;
    }

    .s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-87d25921-60de-4e36-aab6-74623f57b202.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-87d25921-60de-4e36-aab6-74623f57b202 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}
#s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d {
  margin-left: auto;
margin-right: auto;
max-width: 3984px;
aspect-ratio: 3984/368;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d {
  display: none;
}
#s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d, #wrap-s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d, #wrap-content-s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d { display: none !important; }}@media (max-width: 767px){#s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d {
  display: none;
}
#s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d, #wrap-s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d, #wrap-content-s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d { display: none !important; }}
#s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d {
  margin: 0 !important;
  overflow: visible;
}

#s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d img.shogun-image {
  /* Add background color handling */
  
}

#s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shg-image-content-wrapper {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }

    #s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shogun-image-link {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shogun-image-content {
  
    justify-content: center;
  
}

.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image {
  box-sizing: border-box;
}


.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d {
      --shg-aspect-ratio: calc(3984/368); 
    }

    .s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image-container {
      position: relative;
    }

    .s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

@media (min-width: 1200px){#s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d {
  margin: 0 !important;
  overflow: visible;
}

#s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d img.shogun-image {
  /* Add background color handling */
  
}

#s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shg-image-content-wrapper {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }

    #s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shogun-image-link {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shogun-image-content {
  
    justify-content: center;
  
}

.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image {
  box-sizing: border-box;
}


.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d {
      --shg-aspect-ratio: calc(3984/368); 
    }

    .s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image-container {
      position: relative;
    }

    .s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d {
  margin: 0 !important;
  overflow: visible;
}

#s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d img.shogun-image {
  /* Add background color handling */
  
}

#s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shg-image-content-wrapper {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }

    #s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shogun-image-link {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shogun-image-content {
  
    justify-content: center;
  
}

.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image {
  box-sizing: border-box;
}


.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d {
      --shg-aspect-ratio: calc(3984/368); 
    }

    .s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image-container {
      position: relative;
    }

    .s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d {
  margin: 0 !important;
  overflow: visible;
}

#s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d img.shogun-image {
  /* Add background color handling */
  
}

#s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shg-image-content-wrapper {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }

    #s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shogun-image-link {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shogun-image-content {
  
    justify-content: center;
  
}

.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image {
  box-sizing: border-box;
}


.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d {
      --shg-aspect-ratio: calc(3984/368); 
    }

    .s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image-container {
      position: relative;
    }

    .s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (max-width: 767px){#s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d {
  margin: 0 !important;
  overflow: visible;
}

#s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d img.shogun-image {
  /* Add background color handling */
  
}

#s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shg-image-content-wrapper {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }

    #s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shogun-image-link {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shogun-image-content {
  
    justify-content: center;
  
}

.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image {
  box-sizing: border-box;
}


.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d {
      --shg-aspect-ratio: calc(3984/368); 
    }

    .s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image-container {
      position: relative;
    }

    .s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d44a4b7c-a6ea-4adf-943d-cf5c6c53992d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}
#s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd {
  margin-left: auto;
margin-right: auto;
max-width: 3984px;
aspect-ratio: 3984/376;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd {
  display: none;
}
#s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd, #wrap-s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd, #wrap-content-s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd { display: none !important; }}@media (max-width: 767px){#s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd {
  display: none;
}
#s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd, #wrap-s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd, #wrap-content-s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd { display: none !important; }}
#s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd {
  margin: 0 !important;
  overflow: visible;
}

#s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd img.shogun-image {
  /* Add background color handling */
  
}

#s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shg-image-content-wrapper {
      aspect-ratio: 3984/376;
      min-width: 100%;
      height: auto;
    }

    #s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shogun-image-link {
      aspect-ratio: 3984/376;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shogun-image-content {
  
    justify-content: center;
  
}

.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image {
  box-sizing: border-box;
}


.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd {
      --shg-aspect-ratio: calc(3984/376); 
    }

    .s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image-container {
      position: relative;
    }

    .s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

@media (min-width: 1200px){#s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd {
  margin: 0 !important;
  overflow: visible;
}

#s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd img.shogun-image {
  /* Add background color handling */
  
}

#s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shg-image-content-wrapper {
      aspect-ratio: 3984/376;
      min-width: 100%;
      height: auto;
    }

    #s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shogun-image-link {
      aspect-ratio: 3984/376;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shogun-image-content {
  
    justify-content: center;
  
}

.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image {
  box-sizing: border-box;
}


.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd {
      --shg-aspect-ratio: calc(3984/376); 
    }

    .s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image-container {
      position: relative;
    }

    .s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd {
  margin: 0 !important;
  overflow: visible;
}

#s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd img.shogun-image {
  /* Add background color handling */
  
}

#s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shg-image-content-wrapper {
      aspect-ratio: 3984/376;
      min-width: 100%;
      height: auto;
    }

    #s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shogun-image-link {
      aspect-ratio: 3984/376;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shogun-image-content {
  
    justify-content: center;
  
}

.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image {
  box-sizing: border-box;
}


.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd {
      --shg-aspect-ratio: calc(3984/376); 
    }

    .s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image-container {
      position: relative;
    }

    .s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd {
  margin: 0 !important;
  overflow: visible;
}

#s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd img.shogun-image {
  /* Add background color handling */
  
}

#s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shg-image-content-wrapper {
      aspect-ratio: 3984/376;
      min-width: 100%;
      height: auto;
    }

    #s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shogun-image-link {
      aspect-ratio: 3984/376;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shogun-image-content {
  
    justify-content: center;
  
}

.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image {
  box-sizing: border-box;
}


.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd {
      --shg-aspect-ratio: calc(3984/376); 
    }

    .s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image-container {
      position: relative;
    }

    .s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (max-width: 767px){#s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd {
  margin: 0 !important;
  overflow: visible;
}

#s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd img.shogun-image {
  /* Add background color handling */
  
}

#s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shg-image-content-wrapper {
      aspect-ratio: 3984/376;
      min-width: 100%;
      height: auto;
    }

    #s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shogun-image-link {
      aspect-ratio: 3984/376;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shogun-image-content {
  
    justify-content: center;
  
}

.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image {
  box-sizing: border-box;
}


.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd {
      --shg-aspect-ratio: calc(3984/376); 
    }

    .s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image-container {
      position: relative;
    }

    .s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f727cc4d-4ff4-4a32-91b4-f87ca38170cd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}
#s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 {
  margin-left: auto;
margin-right: auto;
max-width: 3984px;
aspect-ratio: 3984/369;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 {
  display: none;
}
#s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951, #wrap-s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951, #wrap-content-s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 { display: none !important; }}@media (max-width: 767px){#s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 {
  display: none;
}
#s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951, #wrap-s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951, #wrap-content-s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 { display: none !important; }}
#s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 {
  margin: 0 !important;
  overflow: visible;
}

#s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 img.shogun-image {
  /* Add background color handling */
  
}

#s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image {
  box-sizing: border-box;
}


.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image-container {
      position: relative;
    }

    .s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

@media (min-width: 1200px){#s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 {
  margin: 0 !important;
  overflow: visible;
}

#s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 img.shogun-image {
  /* Add background color handling */
  
}

#s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image {
  box-sizing: border-box;
}


.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image-container {
      position: relative;
    }

    .s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 {
  margin: 0 !important;
  overflow: visible;
}

#s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 img.shogun-image {
  /* Add background color handling */
  
}

#s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image {
  box-sizing: border-box;
}


.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image-container {
      position: relative;
    }

    .s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 {
  margin: 0 !important;
  overflow: visible;
}

#s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 img.shogun-image {
  /* Add background color handling */
  
}

#s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image {
  box-sizing: border-box;
}


.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image-container {
      position: relative;
    }

    .s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (max-width: 767px){#s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 {
  margin: 0 !important;
  overflow: visible;
}

#s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 img.shogun-image {
  /* Add background color handling */
  
}

#s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image {
  box-sizing: border-box;
}


.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image-container {
      position: relative;
    }

    .s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef6831e7-8d5a-4e9a-9d8e-708be36f1951 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}
#s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 {
  margin-left: auto;
margin-right: auto;
max-width: 3984px;
aspect-ratio: 3984/366;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 {
  display: none;
}
#s-8f514766-9850-4c08-aa97-1cbac7aa1ca2, #wrap-s-8f514766-9850-4c08-aa97-1cbac7aa1ca2, #wrap-content-s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 { display: none !important; }}@media (max-width: 767px){#s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 {
  display: none;
}
#s-8f514766-9850-4c08-aa97-1cbac7aa1ca2, #wrap-s-8f514766-9850-4c08-aa97-1cbac7aa1ca2, #wrap-content-s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 { display: none !important; }}
#s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 {
  margin: 0 !important;
  overflow: visible;
}

#s-8f514766-9850-4c08-aa97-1cbac7aa1ca2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 img.shogun-image {
  /* Add background color handling */
  
}

#s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shg-image-content-wrapper {
      aspect-ratio: 3984/366;
      min-width: 100%;
      height: auto;
    }

    #s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shogun-image-link {
      aspect-ratio: 3984/366;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image {
  box-sizing: border-box;
}


.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 {
      --shg-aspect-ratio: calc(3984/366); 
    }

    .s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image-container {
      position: relative;
    }

    .s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

@media (min-width: 1200px){#s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 {
  margin: 0 !important;
  overflow: visible;
}

#s-8f514766-9850-4c08-aa97-1cbac7aa1ca2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 img.shogun-image {
  /* Add background color handling */
  
}

#s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shg-image-content-wrapper {
      aspect-ratio: 3984/366;
      min-width: 100%;
      height: auto;
    }

    #s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shogun-image-link {
      aspect-ratio: 3984/366;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image {
  box-sizing: border-box;
}


.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 {
      --shg-aspect-ratio: calc(3984/366); 
    }

    .s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image-container {
      position: relative;
    }

    .s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 {
  margin: 0 !important;
  overflow: visible;
}

#s-8f514766-9850-4c08-aa97-1cbac7aa1ca2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 img.shogun-image {
  /* Add background color handling */
  
}

#s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shg-image-content-wrapper {
      aspect-ratio: 3984/366;
      min-width: 100%;
      height: auto;
    }

    #s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shogun-image-link {
      aspect-ratio: 3984/366;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image {
  box-sizing: border-box;
}


.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 {
      --shg-aspect-ratio: calc(3984/366); 
    }

    .s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image-container {
      position: relative;
    }

    .s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 {
  margin: 0 !important;
  overflow: visible;
}

#s-8f514766-9850-4c08-aa97-1cbac7aa1ca2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 img.shogun-image {
  /* Add background color handling */
  
}

#s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shg-image-content-wrapper {
      aspect-ratio: 3984/366;
      min-width: 100%;
      height: auto;
    }

    #s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shogun-image-link {
      aspect-ratio: 3984/366;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image {
  box-sizing: border-box;
}


.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 {
      --shg-aspect-ratio: calc(3984/366); 
    }

    .s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image-container {
      position: relative;
    }

    .s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (max-width: 767px){#s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 {
  margin: 0 !important;
  overflow: visible;
}

#s-8f514766-9850-4c08-aa97-1cbac7aa1ca2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 img.shogun-image {
  /* Add background color handling */
  
}

#s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shg-image-content-wrapper {
      aspect-ratio: 3984/366;
      min-width: 100%;
      height: auto;
    }

    #s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shogun-image-link {
      aspect-ratio: 3984/366;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image {
  box-sizing: border-box;
}


.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}


.s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 {
      --shg-aspect-ratio: calc(3984/366); 
    }

    .s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image-container {
      position: relative;
    }

    .s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8f514766-9850-4c08-aa97-1cbac7aa1ca2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8f514766-9850-4c08-aa97-1cbac7aa1ca2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}
#s-f572e545-31ad-4083-aa76-a001f2e6e1d8 {
  margin-left: auto;
margin-right: auto;
max-width: 3984px;
aspect-ratio: 3984/368;
text-align: center;
}
@media (min-width: 1200px){#s-f572e545-31ad-4083-aa76-a001f2e6e1d8 {
  display: none;
}
#s-f572e545-31ad-4083-aa76-a001f2e6e1d8, #wrap-s-f572e545-31ad-4083-aa76-a001f2e6e1d8, #wrap-content-s-f572e545-31ad-4083-aa76-a001f2e6e1d8 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f572e545-31ad-4083-aa76-a001f2e6e1d8 {
  display: none;
}
#s-f572e545-31ad-4083-aa76-a001f2e6e1d8, #wrap-s-f572e545-31ad-4083-aa76-a001f2e6e1d8, #wrap-content-s-f572e545-31ad-4083-aa76-a001f2e6e1d8 { display: none !important; }}
#s-f572e545-31ad-4083-aa76-a001f2e6e1d8 {
  margin: 0 !important;
  overflow: visible;
}

#s-f572e545-31ad-4083-aa76-a001f2e6e1d8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f572e545-31ad-4083-aa76-a001f2e6e1d8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f572e545-31ad-4083-aa76-a001f2e6e1d8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f572e545-31ad-4083-aa76-a001f2e6e1d8 img.shogun-image {
  /* Add background color handling */
  
}

#s-f572e545-31ad-4083-aa76-a001f2e6e1d8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f572e545-31ad-4083-aa76-a001f2e6e1d8 .shg-image-content-wrapper {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }

    #s-f572e545-31ad-4083-aa76-a001f2e6e1d8 .shogun-image-link {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f572e545-31ad-4083-aa76-a001f2e6e1d8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f572e545-31ad-4083-aa76-a001f2e6e1d8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-f572e545-31ad-4083-aa76-a001f2e6e1d8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image {
  box-sizing: border-box;
}



.s-f572e545-31ad-4083-aa76-a001f2e6e1d8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f572e545-31ad-4083-aa76-a001f2e6e1d8 {
      --shg-aspect-ratio: calc(3984/368); 
    }

    .s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image-container {
      position: relative;
    }

    .s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f572e545-31ad-4083-aa76-a001f2e6e1d8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

@media (min-width: 1200px){#s-f572e545-31ad-4083-aa76-a001f2e6e1d8 {
  margin: 0 !important;
  overflow: visible;
}

#s-f572e545-31ad-4083-aa76-a001f2e6e1d8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f572e545-31ad-4083-aa76-a001f2e6e1d8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f572e545-31ad-4083-aa76-a001f2e6e1d8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f572e545-31ad-4083-aa76-a001f2e6e1d8 img.shogun-image {
  /* Add background color handling */
  
}

#s-f572e545-31ad-4083-aa76-a001f2e6e1d8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f572e545-31ad-4083-aa76-a001f2e6e1d8 .shg-image-content-wrapper {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }

    #s-f572e545-31ad-4083-aa76-a001f2e6e1d8 .shogun-image-link {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f572e545-31ad-4083-aa76-a001f2e6e1d8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f572e545-31ad-4083-aa76-a001f2e6e1d8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-f572e545-31ad-4083-aa76-a001f2e6e1d8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image {
  box-sizing: border-box;
}



.s-f572e545-31ad-4083-aa76-a001f2e6e1d8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f572e545-31ad-4083-aa76-a001f2e6e1d8 {
      --shg-aspect-ratio: calc(3984/368); 
    }

    .s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image-container {
      position: relative;
    }

    .s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f572e545-31ad-4083-aa76-a001f2e6e1d8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-f572e545-31ad-4083-aa76-a001f2e6e1d8 {
  margin: 0 !important;
  overflow: visible;
}

#s-f572e545-31ad-4083-aa76-a001f2e6e1d8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f572e545-31ad-4083-aa76-a001f2e6e1d8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f572e545-31ad-4083-aa76-a001f2e6e1d8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f572e545-31ad-4083-aa76-a001f2e6e1d8 img.shogun-image {
  /* Add background color handling */
  
}

#s-f572e545-31ad-4083-aa76-a001f2e6e1d8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f572e545-31ad-4083-aa76-a001f2e6e1d8 .shg-image-content-wrapper {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }

    #s-f572e545-31ad-4083-aa76-a001f2e6e1d8 .shogun-image-link {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f572e545-31ad-4083-aa76-a001f2e6e1d8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f572e545-31ad-4083-aa76-a001f2e6e1d8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-f572e545-31ad-4083-aa76-a001f2e6e1d8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image {
  box-sizing: border-box;
}



.s-f572e545-31ad-4083-aa76-a001f2e6e1d8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f572e545-31ad-4083-aa76-a001f2e6e1d8 {
      --shg-aspect-ratio: calc(3984/368); 
    }

    .s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image-container {
      position: relative;
    }

    .s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f572e545-31ad-4083-aa76-a001f2e6e1d8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-f572e545-31ad-4083-aa76-a001f2e6e1d8 {
  margin: 0 !important;
  overflow: visible;
}

#s-f572e545-31ad-4083-aa76-a001f2e6e1d8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f572e545-31ad-4083-aa76-a001f2e6e1d8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f572e545-31ad-4083-aa76-a001f2e6e1d8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f572e545-31ad-4083-aa76-a001f2e6e1d8 img.shogun-image {
  /* Add background color handling */
  
}

#s-f572e545-31ad-4083-aa76-a001f2e6e1d8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f572e545-31ad-4083-aa76-a001f2e6e1d8 .shg-image-content-wrapper {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }

    #s-f572e545-31ad-4083-aa76-a001f2e6e1d8 .shogun-image-link {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f572e545-31ad-4083-aa76-a001f2e6e1d8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f572e545-31ad-4083-aa76-a001f2e6e1d8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-f572e545-31ad-4083-aa76-a001f2e6e1d8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image {
  box-sizing: border-box;
}



.s-f572e545-31ad-4083-aa76-a001f2e6e1d8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f572e545-31ad-4083-aa76-a001f2e6e1d8 {
      --shg-aspect-ratio: calc(3984/368); 
    }

    .s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image-container {
      position: relative;
    }

    .s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f572e545-31ad-4083-aa76-a001f2e6e1d8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (max-width: 767px){#s-f572e545-31ad-4083-aa76-a001f2e6e1d8 {
  margin: 0 !important;
  overflow: visible;
}

#s-f572e545-31ad-4083-aa76-a001f2e6e1d8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f572e545-31ad-4083-aa76-a001f2e6e1d8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f572e545-31ad-4083-aa76-a001f2e6e1d8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f572e545-31ad-4083-aa76-a001f2e6e1d8 img.shogun-image {
  /* Add background color handling */
  
}

#s-f572e545-31ad-4083-aa76-a001f2e6e1d8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f572e545-31ad-4083-aa76-a001f2e6e1d8 .shg-image-content-wrapper {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }

    #s-f572e545-31ad-4083-aa76-a001f2e6e1d8 .shogun-image-link {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f572e545-31ad-4083-aa76-a001f2e6e1d8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f572e545-31ad-4083-aa76-a001f2e6e1d8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-f572e545-31ad-4083-aa76-a001f2e6e1d8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image {
  box-sizing: border-box;
}



.s-f572e545-31ad-4083-aa76-a001f2e6e1d8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f572e545-31ad-4083-aa76-a001f2e6e1d8 {
      --shg-aspect-ratio: calc(3984/368); 
    }

    .s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image-container {
      position: relative;
    }

    .s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f572e545-31ad-4083-aa76-a001f2e6e1d8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f572e545-31ad-4083-aa76-a001f2e6e1d8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}
#s-2042e3b9-649b-4bf0-94fb-7773258d3abc {
  margin-left: auto;
margin-right: auto;
max-width: 3984px;
aspect-ratio: 3984/369;
text-align: center;
}
@media (min-width: 1200px){#s-2042e3b9-649b-4bf0-94fb-7773258d3abc {
  display: none;
}
#s-2042e3b9-649b-4bf0-94fb-7773258d3abc, #wrap-s-2042e3b9-649b-4bf0-94fb-7773258d3abc, #wrap-content-s-2042e3b9-649b-4bf0-94fb-7773258d3abc { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2042e3b9-649b-4bf0-94fb-7773258d3abc {
  display: none;
}
#s-2042e3b9-649b-4bf0-94fb-7773258d3abc, #wrap-s-2042e3b9-649b-4bf0-94fb-7773258d3abc, #wrap-content-s-2042e3b9-649b-4bf0-94fb-7773258d3abc { display: none !important; }}
#s-2042e3b9-649b-4bf0-94fb-7773258d3abc {
  margin: 0 !important;
  overflow: visible;
}

#s-2042e3b9-649b-4bf0-94fb-7773258d3abc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2042e3b9-649b-4bf0-94fb-7773258d3abc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2042e3b9-649b-4bf0-94fb-7773258d3abc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2042e3b9-649b-4bf0-94fb-7773258d3abc img.shogun-image {
  /* Add background color handling */
  
}

#s-2042e3b9-649b-4bf0-94fb-7773258d3abc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2042e3b9-649b-4bf0-94fb-7773258d3abc .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-2042e3b9-649b-4bf0-94fb-7773258d3abc .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2042e3b9-649b-4bf0-94fb-7773258d3abc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2042e3b9-649b-4bf0-94fb-7773258d3abc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-2042e3b9-649b-4bf0-94fb-7773258d3abc .shogun-image-content {
  
    justify-content: center;
  
}

.s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image {
  box-sizing: border-box;
}



.s-2042e3b9-649b-4bf0-94fb-7773258d3abc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2042e3b9-649b-4bf0-94fb-7773258d3abc {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image-container {
      position: relative;
    }

    .s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2042e3b9-649b-4bf0-94fb-7773258d3abc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

@media (min-width: 1200px){#s-2042e3b9-649b-4bf0-94fb-7773258d3abc {
  margin: 0 !important;
  overflow: visible;
}

#s-2042e3b9-649b-4bf0-94fb-7773258d3abc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2042e3b9-649b-4bf0-94fb-7773258d3abc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2042e3b9-649b-4bf0-94fb-7773258d3abc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2042e3b9-649b-4bf0-94fb-7773258d3abc img.shogun-image {
  /* Add background color handling */
  
}

#s-2042e3b9-649b-4bf0-94fb-7773258d3abc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2042e3b9-649b-4bf0-94fb-7773258d3abc .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-2042e3b9-649b-4bf0-94fb-7773258d3abc .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2042e3b9-649b-4bf0-94fb-7773258d3abc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2042e3b9-649b-4bf0-94fb-7773258d3abc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-2042e3b9-649b-4bf0-94fb-7773258d3abc .shogun-image-content {
  
    justify-content: center;
  
}

.s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image {
  box-sizing: border-box;
}



.s-2042e3b9-649b-4bf0-94fb-7773258d3abc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2042e3b9-649b-4bf0-94fb-7773258d3abc {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image-container {
      position: relative;
    }

    .s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2042e3b9-649b-4bf0-94fb-7773258d3abc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-2042e3b9-649b-4bf0-94fb-7773258d3abc {
  margin: 0 !important;
  overflow: visible;
}

#s-2042e3b9-649b-4bf0-94fb-7773258d3abc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2042e3b9-649b-4bf0-94fb-7773258d3abc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2042e3b9-649b-4bf0-94fb-7773258d3abc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2042e3b9-649b-4bf0-94fb-7773258d3abc img.shogun-image {
  /* Add background color handling */
  
}

#s-2042e3b9-649b-4bf0-94fb-7773258d3abc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2042e3b9-649b-4bf0-94fb-7773258d3abc .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-2042e3b9-649b-4bf0-94fb-7773258d3abc .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2042e3b9-649b-4bf0-94fb-7773258d3abc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2042e3b9-649b-4bf0-94fb-7773258d3abc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-2042e3b9-649b-4bf0-94fb-7773258d3abc .shogun-image-content {
  
    justify-content: center;
  
}

.s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image {
  box-sizing: border-box;
}



.s-2042e3b9-649b-4bf0-94fb-7773258d3abc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2042e3b9-649b-4bf0-94fb-7773258d3abc {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image-container {
      position: relative;
    }

    .s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2042e3b9-649b-4bf0-94fb-7773258d3abc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-2042e3b9-649b-4bf0-94fb-7773258d3abc {
  margin: 0 !important;
  overflow: visible;
}

#s-2042e3b9-649b-4bf0-94fb-7773258d3abc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2042e3b9-649b-4bf0-94fb-7773258d3abc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2042e3b9-649b-4bf0-94fb-7773258d3abc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2042e3b9-649b-4bf0-94fb-7773258d3abc img.shogun-image {
  /* Add background color handling */
  
}

#s-2042e3b9-649b-4bf0-94fb-7773258d3abc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2042e3b9-649b-4bf0-94fb-7773258d3abc .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-2042e3b9-649b-4bf0-94fb-7773258d3abc .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2042e3b9-649b-4bf0-94fb-7773258d3abc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2042e3b9-649b-4bf0-94fb-7773258d3abc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-2042e3b9-649b-4bf0-94fb-7773258d3abc .shogun-image-content {
  
    justify-content: center;
  
}

.s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image {
  box-sizing: border-box;
}



.s-2042e3b9-649b-4bf0-94fb-7773258d3abc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2042e3b9-649b-4bf0-94fb-7773258d3abc {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image-container {
      position: relative;
    }

    .s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2042e3b9-649b-4bf0-94fb-7773258d3abc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (max-width: 767px){#s-2042e3b9-649b-4bf0-94fb-7773258d3abc {
  margin: 0 !important;
  overflow: visible;
}

#s-2042e3b9-649b-4bf0-94fb-7773258d3abc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2042e3b9-649b-4bf0-94fb-7773258d3abc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2042e3b9-649b-4bf0-94fb-7773258d3abc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2042e3b9-649b-4bf0-94fb-7773258d3abc img.shogun-image {
  /* Add background color handling */
  
}

#s-2042e3b9-649b-4bf0-94fb-7773258d3abc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2042e3b9-649b-4bf0-94fb-7773258d3abc .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-2042e3b9-649b-4bf0-94fb-7773258d3abc .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2042e3b9-649b-4bf0-94fb-7773258d3abc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2042e3b9-649b-4bf0-94fb-7773258d3abc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-2042e3b9-649b-4bf0-94fb-7773258d3abc .shogun-image-content {
  
    justify-content: center;
  
}

.s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image {
  box-sizing: border-box;
}



.s-2042e3b9-649b-4bf0-94fb-7773258d3abc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2042e3b9-649b-4bf0-94fb-7773258d3abc {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image-container {
      position: relative;
    }

    .s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2042e3b9-649b-4bf0-94fb-7773258d3abc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2042e3b9-649b-4bf0-94fb-7773258d3abc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}
#s-6f4df6e9-e8b8-4368-b898-3cc53564977c {
  margin-left: auto;
margin-right: auto;
max-width: 3984px;
aspect-ratio: 3984/369;
text-align: center;
}
@media (min-width: 1200px){#s-6f4df6e9-e8b8-4368-b898-3cc53564977c {
  display: none;
}
#s-6f4df6e9-e8b8-4368-b898-3cc53564977c, #wrap-s-6f4df6e9-e8b8-4368-b898-3cc53564977c, #wrap-content-s-6f4df6e9-e8b8-4368-b898-3cc53564977c { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6f4df6e9-e8b8-4368-b898-3cc53564977c {
  display: none;
}
#s-6f4df6e9-e8b8-4368-b898-3cc53564977c, #wrap-s-6f4df6e9-e8b8-4368-b898-3cc53564977c, #wrap-content-s-6f4df6e9-e8b8-4368-b898-3cc53564977c { display: none !important; }}
#s-6f4df6e9-e8b8-4368-b898-3cc53564977c {
  margin: 0 !important;
  overflow: visible;
}

#s-6f4df6e9-e8b8-4368-b898-3cc53564977c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6f4df6e9-e8b8-4368-b898-3cc53564977c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6f4df6e9-e8b8-4368-b898-3cc53564977c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6f4df6e9-e8b8-4368-b898-3cc53564977c img.shogun-image {
  /* Add background color handling */
  
}

#s-6f4df6e9-e8b8-4368-b898-3cc53564977c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6f4df6e9-e8b8-4368-b898-3cc53564977c .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-6f4df6e9-e8b8-4368-b898-3cc53564977c .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6f4df6e9-e8b8-4368-b898-3cc53564977c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6f4df6e9-e8b8-4368-b898-3cc53564977c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-6f4df6e9-e8b8-4368-b898-3cc53564977c .shogun-image-content {
  
    justify-content: center;
  
}

.s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image {
  box-sizing: border-box;
}



.s-6f4df6e9-e8b8-4368-b898-3cc53564977c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6f4df6e9-e8b8-4368-b898-3cc53564977c {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image-container {
      position: relative;
    }

    .s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6f4df6e9-e8b8-4368-b898-3cc53564977c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

@media (min-width: 1200px){#s-6f4df6e9-e8b8-4368-b898-3cc53564977c {
  margin: 0 !important;
  overflow: visible;
}

#s-6f4df6e9-e8b8-4368-b898-3cc53564977c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6f4df6e9-e8b8-4368-b898-3cc53564977c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6f4df6e9-e8b8-4368-b898-3cc53564977c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6f4df6e9-e8b8-4368-b898-3cc53564977c img.shogun-image {
  /* Add background color handling */
  
}

#s-6f4df6e9-e8b8-4368-b898-3cc53564977c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6f4df6e9-e8b8-4368-b898-3cc53564977c .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-6f4df6e9-e8b8-4368-b898-3cc53564977c .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6f4df6e9-e8b8-4368-b898-3cc53564977c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6f4df6e9-e8b8-4368-b898-3cc53564977c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-6f4df6e9-e8b8-4368-b898-3cc53564977c .shogun-image-content {
  
    justify-content: center;
  
}

.s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image {
  box-sizing: border-box;
}



.s-6f4df6e9-e8b8-4368-b898-3cc53564977c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6f4df6e9-e8b8-4368-b898-3cc53564977c {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image-container {
      position: relative;
    }

    .s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6f4df6e9-e8b8-4368-b898-3cc53564977c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-6f4df6e9-e8b8-4368-b898-3cc53564977c {
  margin: 0 !important;
  overflow: visible;
}

#s-6f4df6e9-e8b8-4368-b898-3cc53564977c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6f4df6e9-e8b8-4368-b898-3cc53564977c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6f4df6e9-e8b8-4368-b898-3cc53564977c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6f4df6e9-e8b8-4368-b898-3cc53564977c img.shogun-image {
  /* Add background color handling */
  
}

#s-6f4df6e9-e8b8-4368-b898-3cc53564977c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6f4df6e9-e8b8-4368-b898-3cc53564977c .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-6f4df6e9-e8b8-4368-b898-3cc53564977c .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6f4df6e9-e8b8-4368-b898-3cc53564977c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6f4df6e9-e8b8-4368-b898-3cc53564977c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-6f4df6e9-e8b8-4368-b898-3cc53564977c .shogun-image-content {
  
    justify-content: center;
  
}

.s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image {
  box-sizing: border-box;
}



.s-6f4df6e9-e8b8-4368-b898-3cc53564977c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6f4df6e9-e8b8-4368-b898-3cc53564977c {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image-container {
      position: relative;
    }

    .s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6f4df6e9-e8b8-4368-b898-3cc53564977c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-6f4df6e9-e8b8-4368-b898-3cc53564977c {
  margin: 0 !important;
  overflow: visible;
}

#s-6f4df6e9-e8b8-4368-b898-3cc53564977c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6f4df6e9-e8b8-4368-b898-3cc53564977c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6f4df6e9-e8b8-4368-b898-3cc53564977c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6f4df6e9-e8b8-4368-b898-3cc53564977c img.shogun-image {
  /* Add background color handling */
  
}

#s-6f4df6e9-e8b8-4368-b898-3cc53564977c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6f4df6e9-e8b8-4368-b898-3cc53564977c .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-6f4df6e9-e8b8-4368-b898-3cc53564977c .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6f4df6e9-e8b8-4368-b898-3cc53564977c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6f4df6e9-e8b8-4368-b898-3cc53564977c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-6f4df6e9-e8b8-4368-b898-3cc53564977c .shogun-image-content {
  
    justify-content: center;
  
}

.s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image {
  box-sizing: border-box;
}



.s-6f4df6e9-e8b8-4368-b898-3cc53564977c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6f4df6e9-e8b8-4368-b898-3cc53564977c {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image-container {
      position: relative;
    }

    .s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6f4df6e9-e8b8-4368-b898-3cc53564977c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (max-width: 767px){#s-6f4df6e9-e8b8-4368-b898-3cc53564977c {
  margin: 0 !important;
  overflow: visible;
}

#s-6f4df6e9-e8b8-4368-b898-3cc53564977c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6f4df6e9-e8b8-4368-b898-3cc53564977c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6f4df6e9-e8b8-4368-b898-3cc53564977c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6f4df6e9-e8b8-4368-b898-3cc53564977c img.shogun-image {
  /* Add background color handling */
  
}

#s-6f4df6e9-e8b8-4368-b898-3cc53564977c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6f4df6e9-e8b8-4368-b898-3cc53564977c .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-6f4df6e9-e8b8-4368-b898-3cc53564977c .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6f4df6e9-e8b8-4368-b898-3cc53564977c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6f4df6e9-e8b8-4368-b898-3cc53564977c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-6f4df6e9-e8b8-4368-b898-3cc53564977c .shogun-image-content {
  
    justify-content: center;
  
}

.s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image {
  box-sizing: border-box;
}



.s-6f4df6e9-e8b8-4368-b898-3cc53564977c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6f4df6e9-e8b8-4368-b898-3cc53564977c {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image-container {
      position: relative;
    }

    .s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6f4df6e9-e8b8-4368-b898-3cc53564977c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6f4df6e9-e8b8-4368-b898-3cc53564977c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}
#s-8591c195-0ef8-4afd-9d72-09ebaea97fba {
  margin-left: auto;
margin-right: auto;
max-width: 3984px;
aspect-ratio: 3984/369;
text-align: center;
}
@media (min-width: 1200px){#s-8591c195-0ef8-4afd-9d72-09ebaea97fba {
  display: none;
}
#s-8591c195-0ef8-4afd-9d72-09ebaea97fba, #wrap-s-8591c195-0ef8-4afd-9d72-09ebaea97fba, #wrap-content-s-8591c195-0ef8-4afd-9d72-09ebaea97fba { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8591c195-0ef8-4afd-9d72-09ebaea97fba {
  display: none;
}
#s-8591c195-0ef8-4afd-9d72-09ebaea97fba, #wrap-s-8591c195-0ef8-4afd-9d72-09ebaea97fba, #wrap-content-s-8591c195-0ef8-4afd-9d72-09ebaea97fba { display: none !important; }}
#s-8591c195-0ef8-4afd-9d72-09ebaea97fba {
  margin: 0 !important;
  overflow: visible;
}

#s-8591c195-0ef8-4afd-9d72-09ebaea97fba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8591c195-0ef8-4afd-9d72-09ebaea97fba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8591c195-0ef8-4afd-9d72-09ebaea97fba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8591c195-0ef8-4afd-9d72-09ebaea97fba img.shogun-image {
  /* Add background color handling */
  
}

#s-8591c195-0ef8-4afd-9d72-09ebaea97fba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8591c195-0ef8-4afd-9d72-09ebaea97fba .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-8591c195-0ef8-4afd-9d72-09ebaea97fba .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8591c195-0ef8-4afd-9d72-09ebaea97fba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8591c195-0ef8-4afd-9d72-09ebaea97fba img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-8591c195-0ef8-4afd-9d72-09ebaea97fba .shogun-image-content {
  
    justify-content: center;
  
}

.s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image {
  box-sizing: border-box;
}



.s-8591c195-0ef8-4afd-9d72-09ebaea97fba img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8591c195-0ef8-4afd-9d72-09ebaea97fba {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image-container {
      position: relative;
    }

    .s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8591c195-0ef8-4afd-9d72-09ebaea97fba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

@media (min-width: 1200px){#s-8591c195-0ef8-4afd-9d72-09ebaea97fba {
  margin: 0 !important;
  overflow: visible;
}

#s-8591c195-0ef8-4afd-9d72-09ebaea97fba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8591c195-0ef8-4afd-9d72-09ebaea97fba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8591c195-0ef8-4afd-9d72-09ebaea97fba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8591c195-0ef8-4afd-9d72-09ebaea97fba img.shogun-image {
  /* Add background color handling */
  
}

#s-8591c195-0ef8-4afd-9d72-09ebaea97fba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8591c195-0ef8-4afd-9d72-09ebaea97fba .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-8591c195-0ef8-4afd-9d72-09ebaea97fba .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8591c195-0ef8-4afd-9d72-09ebaea97fba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8591c195-0ef8-4afd-9d72-09ebaea97fba img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-8591c195-0ef8-4afd-9d72-09ebaea97fba .shogun-image-content {
  
    justify-content: center;
  
}

.s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image {
  box-sizing: border-box;
}



.s-8591c195-0ef8-4afd-9d72-09ebaea97fba img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8591c195-0ef8-4afd-9d72-09ebaea97fba {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image-container {
      position: relative;
    }

    .s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8591c195-0ef8-4afd-9d72-09ebaea97fba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-8591c195-0ef8-4afd-9d72-09ebaea97fba {
  margin: 0 !important;
  overflow: visible;
}

#s-8591c195-0ef8-4afd-9d72-09ebaea97fba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8591c195-0ef8-4afd-9d72-09ebaea97fba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8591c195-0ef8-4afd-9d72-09ebaea97fba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8591c195-0ef8-4afd-9d72-09ebaea97fba img.shogun-image {
  /* Add background color handling */
  
}

#s-8591c195-0ef8-4afd-9d72-09ebaea97fba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8591c195-0ef8-4afd-9d72-09ebaea97fba .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-8591c195-0ef8-4afd-9d72-09ebaea97fba .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8591c195-0ef8-4afd-9d72-09ebaea97fba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8591c195-0ef8-4afd-9d72-09ebaea97fba img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-8591c195-0ef8-4afd-9d72-09ebaea97fba .shogun-image-content {
  
    justify-content: center;
  
}

.s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image {
  box-sizing: border-box;
}



.s-8591c195-0ef8-4afd-9d72-09ebaea97fba img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8591c195-0ef8-4afd-9d72-09ebaea97fba {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image-container {
      position: relative;
    }

    .s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8591c195-0ef8-4afd-9d72-09ebaea97fba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-8591c195-0ef8-4afd-9d72-09ebaea97fba {
  margin: 0 !important;
  overflow: visible;
}

#s-8591c195-0ef8-4afd-9d72-09ebaea97fba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8591c195-0ef8-4afd-9d72-09ebaea97fba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8591c195-0ef8-4afd-9d72-09ebaea97fba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8591c195-0ef8-4afd-9d72-09ebaea97fba img.shogun-image {
  /* Add background color handling */
  
}

#s-8591c195-0ef8-4afd-9d72-09ebaea97fba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8591c195-0ef8-4afd-9d72-09ebaea97fba .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-8591c195-0ef8-4afd-9d72-09ebaea97fba .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8591c195-0ef8-4afd-9d72-09ebaea97fba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8591c195-0ef8-4afd-9d72-09ebaea97fba img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-8591c195-0ef8-4afd-9d72-09ebaea97fba .shogun-image-content {
  
    justify-content: center;
  
}

.s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image {
  box-sizing: border-box;
}



.s-8591c195-0ef8-4afd-9d72-09ebaea97fba img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8591c195-0ef8-4afd-9d72-09ebaea97fba {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image-container {
      position: relative;
    }

    .s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8591c195-0ef8-4afd-9d72-09ebaea97fba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (max-width: 767px){#s-8591c195-0ef8-4afd-9d72-09ebaea97fba {
  margin: 0 !important;
  overflow: visible;
}

#s-8591c195-0ef8-4afd-9d72-09ebaea97fba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8591c195-0ef8-4afd-9d72-09ebaea97fba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8591c195-0ef8-4afd-9d72-09ebaea97fba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8591c195-0ef8-4afd-9d72-09ebaea97fba img.shogun-image {
  /* Add background color handling */
  
}

#s-8591c195-0ef8-4afd-9d72-09ebaea97fba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8591c195-0ef8-4afd-9d72-09ebaea97fba .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-8591c195-0ef8-4afd-9d72-09ebaea97fba .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8591c195-0ef8-4afd-9d72-09ebaea97fba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8591c195-0ef8-4afd-9d72-09ebaea97fba img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-8591c195-0ef8-4afd-9d72-09ebaea97fba .shogun-image-content {
  
    justify-content: center;
  
}

.s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image {
  box-sizing: border-box;
}



.s-8591c195-0ef8-4afd-9d72-09ebaea97fba img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8591c195-0ef8-4afd-9d72-09ebaea97fba {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image-container {
      position: relative;
    }

    .s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8591c195-0ef8-4afd-9d72-09ebaea97fba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8591c195-0ef8-4afd-9d72-09ebaea97fba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}
#s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 {
  margin-left: auto;
margin-right: auto;
max-width: 3984px;
aspect-ratio: 3984/368;
text-align: center;
}
@media (min-width: 1200px){#s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 {
  display: none;
}
#s-4e018d82-b9a1-4f68-b7a6-48586b27bb01, #wrap-s-4e018d82-b9a1-4f68-b7a6-48586b27bb01, #wrap-content-s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 {
  display: none;
}
#s-4e018d82-b9a1-4f68-b7a6-48586b27bb01, #wrap-s-4e018d82-b9a1-4f68-b7a6-48586b27bb01, #wrap-content-s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 { display: none !important; }}
#s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 {
  margin: 0 !important;
  overflow: visible;
}

#s-4e018d82-b9a1-4f68-b7a6-48586b27bb01-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 img.shogun-image {
  /* Add background color handling */
  
}

#s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 .shg-image-content-wrapper {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }

    #s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 .shogun-image-link {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image {
  box-sizing: border-box;
}



.s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 {
      --shg-aspect-ratio: calc(3984/368); 
    }

    .s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image-container {
      position: relative;
    }

    .s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

@media (min-width: 1200px){#s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 {
  margin: 0 !important;
  overflow: visible;
}

#s-4e018d82-b9a1-4f68-b7a6-48586b27bb01-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 img.shogun-image {
  /* Add background color handling */
  
}

#s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 .shg-image-content-wrapper {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }

    #s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 .shogun-image-link {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image {
  box-sizing: border-box;
}



.s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 {
      --shg-aspect-ratio: calc(3984/368); 
    }

    .s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image-container {
      position: relative;
    }

    .s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 {
  margin: 0 !important;
  overflow: visible;
}

#s-4e018d82-b9a1-4f68-b7a6-48586b27bb01-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 img.shogun-image {
  /* Add background color handling */
  
}

#s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 .shg-image-content-wrapper {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }

    #s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 .shogun-image-link {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image {
  box-sizing: border-box;
}



.s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 {
      --shg-aspect-ratio: calc(3984/368); 
    }

    .s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image-container {
      position: relative;
    }

    .s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 {
  margin: 0 !important;
  overflow: visible;
}

#s-4e018d82-b9a1-4f68-b7a6-48586b27bb01-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 img.shogun-image {
  /* Add background color handling */
  
}

#s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 .shg-image-content-wrapper {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }

    #s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 .shogun-image-link {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image {
  box-sizing: border-box;
}



.s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 {
      --shg-aspect-ratio: calc(3984/368); 
    }

    .s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image-container {
      position: relative;
    }

    .s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (max-width: 767px){#s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 {
  margin: 0 !important;
  overflow: visible;
}

#s-4e018d82-b9a1-4f68-b7a6-48586b27bb01-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 img.shogun-image {
  /* Add background color handling */
  
}

#s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 .shg-image-content-wrapper {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }

    #s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 .shogun-image-link {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image {
  box-sizing: border-box;
}



.s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 {
      --shg-aspect-ratio: calc(3984/368); 
    }

    .s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image-container {
      position: relative;
    }

    .s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4e018d82-b9a1-4f68-b7a6-48586b27bb01.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4e018d82-b9a1-4f68-b7a6-48586b27bb01 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}
#s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 {
  margin-left: auto;
margin-right: auto;
max-width: 3984px;
aspect-ratio: 3984/367;
text-align: center;
}
@media (min-width: 1200px){#s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 {
  display: none;
}
#s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7, #wrap-s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7, #wrap-content-s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 {
  display: none;
}
#s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7, #wrap-s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7, #wrap-content-s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 { display: none !important; }}
#s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 {
  margin: 0 !important;
  overflow: visible;
}

#s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 img.shogun-image {
  /* Add background color handling */
  
}

#s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 .shg-image-content-wrapper {
      aspect-ratio: 3984/367;
      min-width: 100%;
      height: auto;
    }

    #s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 .shogun-image-link {
      aspect-ratio: 3984/367;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image {
  box-sizing: border-box;
}



.s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 {
      --shg-aspect-ratio: calc(3984/367); 
    }

    .s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image-container {
      position: relative;
    }

    .s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

@media (min-width: 1200px){#s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 {
  margin: 0 !important;
  overflow: visible;
}

#s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 img.shogun-image {
  /* Add background color handling */
  
}

#s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 .shg-image-content-wrapper {
      aspect-ratio: 3984/367;
      min-width: 100%;
      height: auto;
    }

    #s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 .shogun-image-link {
      aspect-ratio: 3984/367;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image {
  box-sizing: border-box;
}



.s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 {
      --shg-aspect-ratio: calc(3984/367); 
    }

    .s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image-container {
      position: relative;
    }

    .s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 {
  margin: 0 !important;
  overflow: visible;
}

#s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 img.shogun-image {
  /* Add background color handling */
  
}

#s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 .shg-image-content-wrapper {
      aspect-ratio: 3984/367;
      min-width: 100%;
      height: auto;
    }

    #s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 .shogun-image-link {
      aspect-ratio: 3984/367;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image {
  box-sizing: border-box;
}



.s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 {
      --shg-aspect-ratio: calc(3984/367); 
    }

    .s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image-container {
      position: relative;
    }

    .s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 {
  margin: 0 !important;
  overflow: visible;
}

#s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 img.shogun-image {
  /* Add background color handling */
  
}

#s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 .shg-image-content-wrapper {
      aspect-ratio: 3984/367;
      min-width: 100%;
      height: auto;
    }

    #s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 .shogun-image-link {
      aspect-ratio: 3984/367;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image {
  box-sizing: border-box;
}



.s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 {
      --shg-aspect-ratio: calc(3984/367); 
    }

    .s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image-container {
      position: relative;
    }

    .s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (max-width: 767px){#s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 {
  margin: 0 !important;
  overflow: visible;
}

#s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 img.shogun-image {
  /* Add background color handling */
  
}

#s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 .shg-image-content-wrapper {
      aspect-ratio: 3984/367;
      min-width: 100%;
      height: auto;
    }

    #s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 .shogun-image-link {
      aspect-ratio: 3984/367;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image {
  box-sizing: border-box;
}



.s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 {
      --shg-aspect-ratio: calc(3984/367); 
    }

    .s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image-container {
      position: relative;
    }

    .s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b16bd3b4-fff7-4d8a-8b7a-e1a109a702f7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}
#s-7d684703-a468-497b-90c7-131d0a1f023d {
  margin-left: auto;
margin-right: auto;
max-width: 3984px;
aspect-ratio: 3984/368;
text-align: center;
}
@media (min-width: 1200px){#s-7d684703-a468-497b-90c7-131d0a1f023d {
  display: none;
}
#s-7d684703-a468-497b-90c7-131d0a1f023d, #wrap-s-7d684703-a468-497b-90c7-131d0a1f023d, #wrap-content-s-7d684703-a468-497b-90c7-131d0a1f023d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7d684703-a468-497b-90c7-131d0a1f023d {
  display: none;
}
#s-7d684703-a468-497b-90c7-131d0a1f023d, #wrap-s-7d684703-a468-497b-90c7-131d0a1f023d, #wrap-content-s-7d684703-a468-497b-90c7-131d0a1f023d { display: none !important; }}
#s-7d684703-a468-497b-90c7-131d0a1f023d {
  margin: 0 !important;
  overflow: visible;
}

#s-7d684703-a468-497b-90c7-131d0a1f023d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7d684703-a468-497b-90c7-131d0a1f023d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7d684703-a468-497b-90c7-131d0a1f023d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7d684703-a468-497b-90c7-131d0a1f023d img.shogun-image {
  /* Add background color handling */
  
}

#s-7d684703-a468-497b-90c7-131d0a1f023d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7d684703-a468-497b-90c7-131d0a1f023d .shg-image-content-wrapper {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }

    #s-7d684703-a468-497b-90c7-131d0a1f023d .shogun-image-link {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7d684703-a468-497b-90c7-131d0a1f023d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7d684703-a468-497b-90c7-131d0a1f023d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-7d684703-a468-497b-90c7-131d0a1f023d .shogun-image-content {
  
    justify-content: center;
  
}

.s-7d684703-a468-497b-90c7-131d0a1f023d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image {
  box-sizing: border-box;
}



.s-7d684703-a468-497b-90c7-131d0a1f023d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7d684703-a468-497b-90c7-131d0a1f023d {
      --shg-aspect-ratio: calc(3984/368); 
    }

    .s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image-container {
      position: relative;
    }

    .s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d684703-a468-497b-90c7-131d0a1f023d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

@media (min-width: 1200px){#s-7d684703-a468-497b-90c7-131d0a1f023d {
  margin: 0 !important;
  overflow: visible;
}

#s-7d684703-a468-497b-90c7-131d0a1f023d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7d684703-a468-497b-90c7-131d0a1f023d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7d684703-a468-497b-90c7-131d0a1f023d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7d684703-a468-497b-90c7-131d0a1f023d img.shogun-image {
  /* Add background color handling */
  
}

#s-7d684703-a468-497b-90c7-131d0a1f023d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7d684703-a468-497b-90c7-131d0a1f023d .shg-image-content-wrapper {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }

    #s-7d684703-a468-497b-90c7-131d0a1f023d .shogun-image-link {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7d684703-a468-497b-90c7-131d0a1f023d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7d684703-a468-497b-90c7-131d0a1f023d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-7d684703-a468-497b-90c7-131d0a1f023d .shogun-image-content {
  
    justify-content: center;
  
}

.s-7d684703-a468-497b-90c7-131d0a1f023d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image {
  box-sizing: border-box;
}



.s-7d684703-a468-497b-90c7-131d0a1f023d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7d684703-a468-497b-90c7-131d0a1f023d {
      --shg-aspect-ratio: calc(3984/368); 
    }

    .s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image-container {
      position: relative;
    }

    .s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d684703-a468-497b-90c7-131d0a1f023d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-7d684703-a468-497b-90c7-131d0a1f023d {
  margin: 0 !important;
  overflow: visible;
}

#s-7d684703-a468-497b-90c7-131d0a1f023d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7d684703-a468-497b-90c7-131d0a1f023d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7d684703-a468-497b-90c7-131d0a1f023d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7d684703-a468-497b-90c7-131d0a1f023d img.shogun-image {
  /* Add background color handling */
  
}

#s-7d684703-a468-497b-90c7-131d0a1f023d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7d684703-a468-497b-90c7-131d0a1f023d .shg-image-content-wrapper {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }

    #s-7d684703-a468-497b-90c7-131d0a1f023d .shogun-image-link {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7d684703-a468-497b-90c7-131d0a1f023d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7d684703-a468-497b-90c7-131d0a1f023d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-7d684703-a468-497b-90c7-131d0a1f023d .shogun-image-content {
  
    justify-content: center;
  
}

.s-7d684703-a468-497b-90c7-131d0a1f023d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image {
  box-sizing: border-box;
}



.s-7d684703-a468-497b-90c7-131d0a1f023d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7d684703-a468-497b-90c7-131d0a1f023d {
      --shg-aspect-ratio: calc(3984/368); 
    }

    .s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image-container {
      position: relative;
    }

    .s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d684703-a468-497b-90c7-131d0a1f023d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-7d684703-a468-497b-90c7-131d0a1f023d {
  margin: 0 !important;
  overflow: visible;
}

#s-7d684703-a468-497b-90c7-131d0a1f023d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7d684703-a468-497b-90c7-131d0a1f023d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7d684703-a468-497b-90c7-131d0a1f023d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7d684703-a468-497b-90c7-131d0a1f023d img.shogun-image {
  /* Add background color handling */
  
}

#s-7d684703-a468-497b-90c7-131d0a1f023d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7d684703-a468-497b-90c7-131d0a1f023d .shg-image-content-wrapper {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }

    #s-7d684703-a468-497b-90c7-131d0a1f023d .shogun-image-link {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7d684703-a468-497b-90c7-131d0a1f023d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7d684703-a468-497b-90c7-131d0a1f023d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-7d684703-a468-497b-90c7-131d0a1f023d .shogun-image-content {
  
    justify-content: center;
  
}

.s-7d684703-a468-497b-90c7-131d0a1f023d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image {
  box-sizing: border-box;
}



.s-7d684703-a468-497b-90c7-131d0a1f023d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7d684703-a468-497b-90c7-131d0a1f023d {
      --shg-aspect-ratio: calc(3984/368); 
    }

    .s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image-container {
      position: relative;
    }

    .s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d684703-a468-497b-90c7-131d0a1f023d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (max-width: 767px){#s-7d684703-a468-497b-90c7-131d0a1f023d {
  margin: 0 !important;
  overflow: visible;
}

#s-7d684703-a468-497b-90c7-131d0a1f023d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7d684703-a468-497b-90c7-131d0a1f023d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7d684703-a468-497b-90c7-131d0a1f023d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7d684703-a468-497b-90c7-131d0a1f023d img.shogun-image {
  /* Add background color handling */
  
}

#s-7d684703-a468-497b-90c7-131d0a1f023d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7d684703-a468-497b-90c7-131d0a1f023d .shg-image-content-wrapper {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }

    #s-7d684703-a468-497b-90c7-131d0a1f023d .shogun-image-link {
      aspect-ratio: 3984/368;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7d684703-a468-497b-90c7-131d0a1f023d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7d684703-a468-497b-90c7-131d0a1f023d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-7d684703-a468-497b-90c7-131d0a1f023d .shogun-image-content {
  
    justify-content: center;
  
}

.s-7d684703-a468-497b-90c7-131d0a1f023d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image {
  box-sizing: border-box;
}



.s-7d684703-a468-497b-90c7-131d0a1f023d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7d684703-a468-497b-90c7-131d0a1f023d {
      --shg-aspect-ratio: calc(3984/368); 
    }

    .s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image-container {
      position: relative;
    }

    .s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d684703-a468-497b-90c7-131d0a1f023d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d684703-a468-497b-90c7-131d0a1f023d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}
#s-98b15b15-3755-4b32-92ae-13273619738f {
  margin-left: auto;
margin-right: auto;
max-width: 3984px;
aspect-ratio: 3984/376;
text-align: center;
}
@media (min-width: 1200px){#s-98b15b15-3755-4b32-92ae-13273619738f {
  display: none;
}
#s-98b15b15-3755-4b32-92ae-13273619738f, #wrap-s-98b15b15-3755-4b32-92ae-13273619738f, #wrap-content-s-98b15b15-3755-4b32-92ae-13273619738f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-98b15b15-3755-4b32-92ae-13273619738f {
  display: none;
}
#s-98b15b15-3755-4b32-92ae-13273619738f, #wrap-s-98b15b15-3755-4b32-92ae-13273619738f, #wrap-content-s-98b15b15-3755-4b32-92ae-13273619738f { display: none !important; }}
#s-98b15b15-3755-4b32-92ae-13273619738f {
  margin: 0 !important;
  overflow: visible;
}

#s-98b15b15-3755-4b32-92ae-13273619738f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-98b15b15-3755-4b32-92ae-13273619738f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-98b15b15-3755-4b32-92ae-13273619738f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-98b15b15-3755-4b32-92ae-13273619738f img.shogun-image {
  /* Add background color handling */
  
}

#s-98b15b15-3755-4b32-92ae-13273619738f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-98b15b15-3755-4b32-92ae-13273619738f .shg-image-content-wrapper {
      aspect-ratio: 3984/376;
      min-width: 100%;
      height: auto;
    }

    #s-98b15b15-3755-4b32-92ae-13273619738f .shogun-image-link {
      aspect-ratio: 3984/376;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-98b15b15-3755-4b32-92ae-13273619738f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-98b15b15-3755-4b32-92ae-13273619738f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-98b15b15-3755-4b32-92ae-13273619738f .shogun-image-content {
  
    justify-content: center;
  
}

.s-98b15b15-3755-4b32-92ae-13273619738f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image {
  box-sizing: border-box;
}



.s-98b15b15-3755-4b32-92ae-13273619738f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-98b15b15-3755-4b32-92ae-13273619738f {
      --shg-aspect-ratio: calc(3984/376); 
    }

    .s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image-container {
      position: relative;
    }

    .s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-98b15b15-3755-4b32-92ae-13273619738f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

@media (min-width: 1200px){#s-98b15b15-3755-4b32-92ae-13273619738f {
  margin: 0 !important;
  overflow: visible;
}

#s-98b15b15-3755-4b32-92ae-13273619738f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-98b15b15-3755-4b32-92ae-13273619738f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-98b15b15-3755-4b32-92ae-13273619738f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-98b15b15-3755-4b32-92ae-13273619738f img.shogun-image {
  /* Add background color handling */
  
}

#s-98b15b15-3755-4b32-92ae-13273619738f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-98b15b15-3755-4b32-92ae-13273619738f .shg-image-content-wrapper {
      aspect-ratio: 3984/376;
      min-width: 100%;
      height: auto;
    }

    #s-98b15b15-3755-4b32-92ae-13273619738f .shogun-image-link {
      aspect-ratio: 3984/376;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-98b15b15-3755-4b32-92ae-13273619738f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-98b15b15-3755-4b32-92ae-13273619738f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-98b15b15-3755-4b32-92ae-13273619738f .shogun-image-content {
  
    justify-content: center;
  
}

.s-98b15b15-3755-4b32-92ae-13273619738f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image {
  box-sizing: border-box;
}



.s-98b15b15-3755-4b32-92ae-13273619738f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-98b15b15-3755-4b32-92ae-13273619738f {
      --shg-aspect-ratio: calc(3984/376); 
    }

    .s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image-container {
      position: relative;
    }

    .s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-98b15b15-3755-4b32-92ae-13273619738f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-98b15b15-3755-4b32-92ae-13273619738f {
  margin: 0 !important;
  overflow: visible;
}

#s-98b15b15-3755-4b32-92ae-13273619738f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-98b15b15-3755-4b32-92ae-13273619738f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-98b15b15-3755-4b32-92ae-13273619738f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-98b15b15-3755-4b32-92ae-13273619738f img.shogun-image {
  /* Add background color handling */
  
}

#s-98b15b15-3755-4b32-92ae-13273619738f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-98b15b15-3755-4b32-92ae-13273619738f .shg-image-content-wrapper {
      aspect-ratio: 3984/376;
      min-width: 100%;
      height: auto;
    }

    #s-98b15b15-3755-4b32-92ae-13273619738f .shogun-image-link {
      aspect-ratio: 3984/376;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-98b15b15-3755-4b32-92ae-13273619738f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-98b15b15-3755-4b32-92ae-13273619738f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-98b15b15-3755-4b32-92ae-13273619738f .shogun-image-content {
  
    justify-content: center;
  
}

.s-98b15b15-3755-4b32-92ae-13273619738f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image {
  box-sizing: border-box;
}



.s-98b15b15-3755-4b32-92ae-13273619738f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-98b15b15-3755-4b32-92ae-13273619738f {
      --shg-aspect-ratio: calc(3984/376); 
    }

    .s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image-container {
      position: relative;
    }

    .s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-98b15b15-3755-4b32-92ae-13273619738f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-98b15b15-3755-4b32-92ae-13273619738f {
  margin: 0 !important;
  overflow: visible;
}

#s-98b15b15-3755-4b32-92ae-13273619738f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-98b15b15-3755-4b32-92ae-13273619738f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-98b15b15-3755-4b32-92ae-13273619738f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-98b15b15-3755-4b32-92ae-13273619738f img.shogun-image {
  /* Add background color handling */
  
}

#s-98b15b15-3755-4b32-92ae-13273619738f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-98b15b15-3755-4b32-92ae-13273619738f .shg-image-content-wrapper {
      aspect-ratio: 3984/376;
      min-width: 100%;
      height: auto;
    }

    #s-98b15b15-3755-4b32-92ae-13273619738f .shogun-image-link {
      aspect-ratio: 3984/376;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-98b15b15-3755-4b32-92ae-13273619738f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-98b15b15-3755-4b32-92ae-13273619738f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-98b15b15-3755-4b32-92ae-13273619738f .shogun-image-content {
  
    justify-content: center;
  
}

.s-98b15b15-3755-4b32-92ae-13273619738f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image {
  box-sizing: border-box;
}



.s-98b15b15-3755-4b32-92ae-13273619738f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-98b15b15-3755-4b32-92ae-13273619738f {
      --shg-aspect-ratio: calc(3984/376); 
    }

    .s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image-container {
      position: relative;
    }

    .s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-98b15b15-3755-4b32-92ae-13273619738f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (max-width: 767px){#s-98b15b15-3755-4b32-92ae-13273619738f {
  margin: 0 !important;
  overflow: visible;
}

#s-98b15b15-3755-4b32-92ae-13273619738f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-98b15b15-3755-4b32-92ae-13273619738f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-98b15b15-3755-4b32-92ae-13273619738f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-98b15b15-3755-4b32-92ae-13273619738f img.shogun-image {
  /* Add background color handling */
  
}

#s-98b15b15-3755-4b32-92ae-13273619738f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-98b15b15-3755-4b32-92ae-13273619738f .shg-image-content-wrapper {
      aspect-ratio: 3984/376;
      min-width: 100%;
      height: auto;
    }

    #s-98b15b15-3755-4b32-92ae-13273619738f .shogun-image-link {
      aspect-ratio: 3984/376;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-98b15b15-3755-4b32-92ae-13273619738f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-98b15b15-3755-4b32-92ae-13273619738f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-98b15b15-3755-4b32-92ae-13273619738f .shogun-image-content {
  
    justify-content: center;
  
}

.s-98b15b15-3755-4b32-92ae-13273619738f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image {
  box-sizing: border-box;
}



.s-98b15b15-3755-4b32-92ae-13273619738f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-98b15b15-3755-4b32-92ae-13273619738f {
      --shg-aspect-ratio: calc(3984/376); 
    }

    .s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image-container {
      position: relative;
    }

    .s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-98b15b15-3755-4b32-92ae-13273619738f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-98b15b15-3755-4b32-92ae-13273619738f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}
#s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 {
  margin-left: auto;
margin-right: auto;
max-width: 3984px;
aspect-ratio: 3984/369;
text-align: center;
}
@media (min-width: 1200px){#s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 {
  display: none;
}
#s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7, #wrap-s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7, #wrap-content-s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 {
  display: none;
}
#s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7, #wrap-s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7, #wrap-content-s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 { display: none !important; }}
#s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image {
  box-sizing: border-box;
}



.s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image-container {
      position: relative;
    }

    .s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

@media (min-width: 1200px){#s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image {
  box-sizing: border-box;
}



.s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image-container {
      position: relative;
    }

    .s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image {
  box-sizing: border-box;
}



.s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image-container {
      position: relative;
    }

    .s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image {
  box-sizing: border-box;
}



.s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image-container {
      position: relative;
    }

    .s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (max-width: 767px){#s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 .shg-image-content-wrapper {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }

    #s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 .shogun-image-link {
      aspect-ratio: 3984/369;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image {
  box-sizing: border-box;
}



.s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 {
      --shg-aspect-ratio: calc(3984/369); 
    }

    .s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image-container {
      position: relative;
    }

    .s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9a8933d3-7ef0-40ec-b09c-a1de4f7ef3a7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}
#s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 {
  margin-left: auto;
margin-right: auto;
max-width: 3984px;
aspect-ratio: 3984/366;
text-align: center;
}
@media (min-width: 1200px){#s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 {
  display: none;
}
#s-89496e9b-beb8-4bf2-b837-bee9fb0b1922, #wrap-s-89496e9b-beb8-4bf2-b837-bee9fb0b1922, #wrap-content-s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 {
  display: none;
}
#s-89496e9b-beb8-4bf2-b837-bee9fb0b1922, #wrap-s-89496e9b-beb8-4bf2-b837-bee9fb0b1922, #wrap-content-s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 { display: none !important; }}
#s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 {
  margin: 0 !important;
  overflow: visible;
}

#s-89496e9b-beb8-4bf2-b837-bee9fb0b1922-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 img.shogun-image {
  /* Add background color handling */
  
}

#s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 .shg-image-content-wrapper {
      aspect-ratio: 3984/366;
      min-width: 100%;
      height: auto;
    }

    #s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 .shogun-image-link {
      aspect-ratio: 3984/366;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 .shogun-image-content {
  
    justify-content: center;
  
}

.s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image {
  box-sizing: border-box;
}



.s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 {
      --shg-aspect-ratio: calc(3984/366); 
    }

    .s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image-container {
      position: relative;
    }

    .s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

@media (min-width: 1200px){#s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 {
  margin: 0 !important;
  overflow: visible;
}

#s-89496e9b-beb8-4bf2-b837-bee9fb0b1922-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 img.shogun-image {
  /* Add background color handling */
  
}

#s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 .shg-image-content-wrapper {
      aspect-ratio: 3984/366;
      min-width: 100%;
      height: auto;
    }

    #s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 .shogun-image-link {
      aspect-ratio: 3984/366;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 .shogun-image-content {
  
    justify-content: center;
  
}

.s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image {
  box-sizing: border-box;
}



.s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 {
      --shg-aspect-ratio: calc(3984/366); 
    }

    .s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image-container {
      position: relative;
    }

    .s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 {
  margin: 0 !important;
  overflow: visible;
}

#s-89496e9b-beb8-4bf2-b837-bee9fb0b1922-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 img.shogun-image {
  /* Add background color handling */
  
}

#s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 .shg-image-content-wrapper {
      aspect-ratio: 3984/366;
      min-width: 100%;
      height: auto;
    }

    #s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 .shogun-image-link {
      aspect-ratio: 3984/366;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 .shogun-image-content {
  
    justify-content: center;
  
}

.s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image {
  box-sizing: border-box;
}



.s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 {
      --shg-aspect-ratio: calc(3984/366); 
    }

    .s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image-container {
      position: relative;
    }

    .s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 {
  margin: 0 !important;
  overflow: visible;
}

#s-89496e9b-beb8-4bf2-b837-bee9fb0b1922-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 img.shogun-image {
  /* Add background color handling */
  
}

#s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 .shg-image-content-wrapper {
      aspect-ratio: 3984/366;
      min-width: 100%;
      height: auto;
    }

    #s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 .shogun-image-link {
      aspect-ratio: 3984/366;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 .shogun-image-content {
  
    justify-content: center;
  
}

.s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image {
  box-sizing: border-box;
}



.s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 {
      --shg-aspect-ratio: calc(3984/366); 
    }

    .s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image-container {
      position: relative;
    }

    .s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}@media (max-width: 767px){#s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 {
  margin: 0 !important;
  overflow: visible;
}

#s-89496e9b-beb8-4bf2-b837-bee9fb0b1922-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 img.shogun-image {
  /* Add background color handling */
  
}

#s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 .shg-image-content-wrapper {
      aspect-ratio: 3984/366;
      min-width: 100%;
      height: auto;
    }

    #s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 .shogun-image-link {
      aspect-ratio: 3984/366;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3984px;
  }



  img.s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image {
    
    
    
    max-height: 3984px;
  }


.s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 .shogun-image-content {
  
    justify-content: center;
  
}

.s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image {
  box-sizing: border-box;
}



.s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 {
      --shg-aspect-ratio: calc(3984/366); 
    }

    .s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image-container {
      position: relative;
    }

    .s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-89496e9b-beb8-4bf2-b837-bee9fb0b1922.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-89496e9b-beb8-4bf2-b837-bee9fb0b1922 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3984px;
    }
  }

}
#s-94ad9d88-654d-49ca-941b-881722588cfc {
  margin-top: 0%;
margin-left: auto;
margin-bottom: 10%;
margin-right: auto;
min-height: 50px;
}








#s-94ad9d88-654d-49ca-941b-881722588cfc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-94ad9d88-654d-49ca-941b-881722588cfc.shg-box.shg-c {
  justify-content: center;
}

#s-fe489246-a18a-47ba-984d-eb3b89a89536 {
  margin-top: 4%;
margin-left: auto;
margin-bottom: 1%;
margin-right: auto;
padding-top: 0%;
padding-left: 1%;
padding-bottom: 0%;
padding-right: 1%;
text-align: center;
}
@media (max-width: 767px){#s-fe489246-a18a-47ba-984d-eb3b89a89536 {
  display: none;
}
#s-fe489246-a18a-47ba-984d-eb3b89a89536, #wrap-s-fe489246-a18a-47ba-984d-eb3b89a89536, #wrap-content-s-fe489246-a18a-47ba-984d-eb3b89a89536 { display: none !important; }}
#s-fe489246-a18a-47ba-984d-eb3b89a89536 .shogun-heading-component h5 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}


@media (min-width: 1200px){#s-fe489246-a18a-47ba-984d-eb3b89a89536 .shogun-heading-component h5 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: center;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-fe489246-a18a-47ba-984d-eb3b89a89536 .shogun-heading-component h5 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: center;
}


}@media (min-width: 768px) and (max-width: 991px){#s-fe489246-a18a-47ba-984d-eb3b89a89536 .shogun-heading-component h5 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}


}@media (max-width: 767px){#s-fe489246-a18a-47ba-984d-eb3b89a89536 .shogun-heading-component h5 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 12px;
  
  
  text-align: center;
}


}
#s-41ca33f8-6c11-4c7e-9297-e29a730c59ce {
  margin-top: 4%;
margin-left: auto;
margin-bottom: 4%;
margin-right: auto;
padding-top: 0%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
text-align: center;
}
@media (min-width: 1200px){#s-41ca33f8-6c11-4c7e-9297-e29a730c59ce {
  display: none;
}
#s-41ca33f8-6c11-4c7e-9297-e29a730c59ce, #wrap-s-41ca33f8-6c11-4c7e-9297-e29a730c59ce, #wrap-content-s-41ca33f8-6c11-4c7e-9297-e29a730c59ce { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-41ca33f8-6c11-4c7e-9297-e29a730c59ce {
  display: none;
}
#s-41ca33f8-6c11-4c7e-9297-e29a730c59ce, #wrap-s-41ca33f8-6c11-4c7e-9297-e29a730c59ce, #wrap-content-s-41ca33f8-6c11-4c7e-9297-e29a730c59ce { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-41ca33f8-6c11-4c7e-9297-e29a730c59ce {
  display: none;
}
#s-41ca33f8-6c11-4c7e-9297-e29a730c59ce, #wrap-s-41ca33f8-6c11-4c7e-9297-e29a730c59ce, #wrap-content-s-41ca33f8-6c11-4c7e-9297-e29a730c59ce { display: none !important; }}
#s-41ca33f8-6c11-4c7e-9297-e29a730c59ce .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 12px;
  
  
  text-align: center;
}


@media (min-width: 768px) and (max-width: 991px){#s-41ca33f8-6c11-4c7e-9297-e29a730c59ce .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}


}@media (max-width: 767px){#s-41ca33f8-6c11-4c7e-9297-e29a730c59ce .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}


}
#s-7f7360a2-64a3-48b2-92ad-358fbeb82df3 {
  margin-left: 20%;
margin-right: 20%;
}
@media (min-width: 1200px){#s-7f7360a2-64a3-48b2-92ad-358fbeb82df3 {
  margin-top: 1%;
margin-left: 25%;
margin-bottom: 0%;
margin-right: 25%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-7f7360a2-64a3-48b2-92ad-358fbeb82df3 {
  margin-top: 1%;
margin-left: 22%;
margin-bottom: 0%;
margin-right: 22%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-7f7360a2-64a3-48b2-92ad-358fbeb82df3 {
  margin-top: 1%;
margin-left: 10%;
margin-bottom: 0%;
margin-right: 10%;
}
}@media (max-width: 767px){#s-7f7360a2-64a3-48b2-92ad-358fbeb82df3 {
  margin-top: 1%;
margin-left: 5%;
margin-bottom: 0%;
margin-right: 5%;
}
}
@media (min-width: 0px) {
[id="s-7f7360a2-64a3-48b2-92ad-358fbeb82df3"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-7f7360a2-64a3-48b2-92ad-358fbeb82df3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7f7360a2-64a3-48b2-92ad-358fbeb82df3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7f7360a2-64a3-48b2-92ad-358fbeb82df3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-d543714d-ff48-42aa-95be-9aa165c24895 {
  margin-left: auto;
margin-right: auto;
max-width: 1728px;
aspect-ratio: 1728/513;
text-align: center;
}

#s-d543714d-ff48-42aa-95be-9aa165c24895 {
  margin: 0 !important;
  overflow: visible;
}

#s-d543714d-ff48-42aa-95be-9aa165c24895-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d543714d-ff48-42aa-95be-9aa165c24895 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d543714d-ff48-42aa-95be-9aa165c24895 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d543714d-ff48-42aa-95be-9aa165c24895 img.shogun-image {
  /* Add background color handling */
  
}

#s-d543714d-ff48-42aa-95be-9aa165c24895 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d543714d-ff48-42aa-95be-9aa165c24895 .shg-image-content-wrapper {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }

    #s-d543714d-ff48-42aa-95be-9aa165c24895 .shogun-image-link {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d543714d-ff48-42aa-95be-9aa165c24895 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d543714d-ff48-42aa-95be-9aa165c24895 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1728px;
  }



  img.s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image {
    
    
    
    max-height: 1728px;
  }


.s-d543714d-ff48-42aa-95be-9aa165c24895 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d543714d-ff48-42aa-95be-9aa165c24895.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image {
  box-sizing: border-box;
}



.s-d543714d-ff48-42aa-95be-9aa165c24895 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d543714d-ff48-42aa-95be-9aa165c24895 {
      --shg-aspect-ratio: calc(1728/513); 
    }

    .s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image-container {
      position: relative;
    }

    .s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d543714d-ff48-42aa-95be-9aa165c24895 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1728px;
    }
  }

@media (min-width: 1200px){#s-d543714d-ff48-42aa-95be-9aa165c24895 {
  margin: 0 !important;
  overflow: visible;
}

#s-d543714d-ff48-42aa-95be-9aa165c24895-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d543714d-ff48-42aa-95be-9aa165c24895 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d543714d-ff48-42aa-95be-9aa165c24895 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d543714d-ff48-42aa-95be-9aa165c24895 img.shogun-image {
  /* Add background color handling */
  
}

#s-d543714d-ff48-42aa-95be-9aa165c24895 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d543714d-ff48-42aa-95be-9aa165c24895 .shg-image-content-wrapper {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }

    #s-d543714d-ff48-42aa-95be-9aa165c24895 .shogun-image-link {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d543714d-ff48-42aa-95be-9aa165c24895 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d543714d-ff48-42aa-95be-9aa165c24895 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1728px;
  }



  img.s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image {
    
    
    
    max-height: 1728px;
  }


.s-d543714d-ff48-42aa-95be-9aa165c24895 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d543714d-ff48-42aa-95be-9aa165c24895.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image {
  box-sizing: border-box;
}



.s-d543714d-ff48-42aa-95be-9aa165c24895 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d543714d-ff48-42aa-95be-9aa165c24895 {
      --shg-aspect-ratio: calc(1728/513); 
    }

    .s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image-container {
      position: relative;
    }

    .s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d543714d-ff48-42aa-95be-9aa165c24895 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1728px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-d543714d-ff48-42aa-95be-9aa165c24895 {
  margin: 0 !important;
  overflow: visible;
}

#s-d543714d-ff48-42aa-95be-9aa165c24895-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d543714d-ff48-42aa-95be-9aa165c24895 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d543714d-ff48-42aa-95be-9aa165c24895 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d543714d-ff48-42aa-95be-9aa165c24895 img.shogun-image {
  /* Add background color handling */
  
}

#s-d543714d-ff48-42aa-95be-9aa165c24895 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d543714d-ff48-42aa-95be-9aa165c24895 .shg-image-content-wrapper {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }

    #s-d543714d-ff48-42aa-95be-9aa165c24895 .shogun-image-link {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d543714d-ff48-42aa-95be-9aa165c24895 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d543714d-ff48-42aa-95be-9aa165c24895 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1728px;
  }



  img.s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image {
    
    
    
    max-height: 1728px;
  }


.s-d543714d-ff48-42aa-95be-9aa165c24895 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d543714d-ff48-42aa-95be-9aa165c24895.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image {
  box-sizing: border-box;
}



.s-d543714d-ff48-42aa-95be-9aa165c24895 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d543714d-ff48-42aa-95be-9aa165c24895 {
      --shg-aspect-ratio: calc(1728/513); 
    }

    .s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image-container {
      position: relative;
    }

    .s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d543714d-ff48-42aa-95be-9aa165c24895 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1728px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-d543714d-ff48-42aa-95be-9aa165c24895 {
  margin: 0 !important;
  overflow: visible;
}

#s-d543714d-ff48-42aa-95be-9aa165c24895-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d543714d-ff48-42aa-95be-9aa165c24895 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d543714d-ff48-42aa-95be-9aa165c24895 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d543714d-ff48-42aa-95be-9aa165c24895 img.shogun-image {
  /* Add background color handling */
  
}

#s-d543714d-ff48-42aa-95be-9aa165c24895 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d543714d-ff48-42aa-95be-9aa165c24895 .shg-image-content-wrapper {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }

    #s-d543714d-ff48-42aa-95be-9aa165c24895 .shogun-image-link {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d543714d-ff48-42aa-95be-9aa165c24895 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d543714d-ff48-42aa-95be-9aa165c24895 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1728px;
  }



  img.s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image {
    
    
    
    max-height: 1728px;
  }


.s-d543714d-ff48-42aa-95be-9aa165c24895 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d543714d-ff48-42aa-95be-9aa165c24895.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image {
  box-sizing: border-box;
}



.s-d543714d-ff48-42aa-95be-9aa165c24895 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d543714d-ff48-42aa-95be-9aa165c24895 {
      --shg-aspect-ratio: calc(1728/513); 
    }

    .s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image-container {
      position: relative;
    }

    .s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d543714d-ff48-42aa-95be-9aa165c24895 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1728px;
    }
  }

}@media (max-width: 767px){#s-d543714d-ff48-42aa-95be-9aa165c24895 {
  margin: 0 !important;
  overflow: visible;
}

#s-d543714d-ff48-42aa-95be-9aa165c24895-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d543714d-ff48-42aa-95be-9aa165c24895 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d543714d-ff48-42aa-95be-9aa165c24895 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d543714d-ff48-42aa-95be-9aa165c24895 img.shogun-image {
  /* Add background color handling */
  
}

#s-d543714d-ff48-42aa-95be-9aa165c24895 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d543714d-ff48-42aa-95be-9aa165c24895 .shg-image-content-wrapper {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }

    #s-d543714d-ff48-42aa-95be-9aa165c24895 .shogun-image-link {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d543714d-ff48-42aa-95be-9aa165c24895 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d543714d-ff48-42aa-95be-9aa165c24895 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1728px;
  }



  img.s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image {
    
    
    
    max-height: 1728px;
  }


.s-d543714d-ff48-42aa-95be-9aa165c24895 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d543714d-ff48-42aa-95be-9aa165c24895.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image {
  box-sizing: border-box;
}



.s-d543714d-ff48-42aa-95be-9aa165c24895 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d543714d-ff48-42aa-95be-9aa165c24895 {
      --shg-aspect-ratio: calc(1728/513); 
    }

    .s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image-container {
      position: relative;
    }

    .s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d543714d-ff48-42aa-95be-9aa165c24895.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d543714d-ff48-42aa-95be-9aa165c24895 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1728px;
    }
  }

}
#s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 {
  margin-left: auto;
margin-right: auto;
max-width: 1728px;
aspect-ratio: 1728/513;
text-align: center;
}

#s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 {
  margin: 0 !important;
  overflow: visible;
}

#s-57f1a96e-b49a-4c8d-9e3b-303cee30e977-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 img.shogun-image {
  /* Add background color handling */
  
}

#s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 .shg-image-content-wrapper {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }

    #s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 .shogun-image-link {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1728px;
  }



  img.s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image {
    
    
    
    max-height: 1728px;
  }


.s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 .shogun-image-content {
  
    justify-content: center;
  
}

.s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shg-align-container {
  display: flex;
  justify-content: center
}

.s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image {
  box-sizing: border-box;
}



.s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 {
      --shg-aspect-ratio: calc(1728/513); 
    }

    .s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image-container {
      position: relative;
    }

    .s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1728px;
    }
  }

@media (min-width: 1200px){#s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 {
  margin: 0 !important;
  overflow: visible;
}

#s-57f1a96e-b49a-4c8d-9e3b-303cee30e977-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 img.shogun-image {
  /* Add background color handling */
  
}

#s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 .shg-image-content-wrapper {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }

    #s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 .shogun-image-link {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1728px;
  }



  img.s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image {
    
    
    
    max-height: 1728px;
  }


.s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 .shogun-image-content {
  
    justify-content: center;
  
}

.s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shg-align-container {
  display: flex;
  justify-content: center
}

.s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image {
  box-sizing: border-box;
}



.s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 {
      --shg-aspect-ratio: calc(1728/513); 
    }

    .s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image-container {
      position: relative;
    }

    .s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1728px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 {
  margin: 0 !important;
  overflow: visible;
}

#s-57f1a96e-b49a-4c8d-9e3b-303cee30e977-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 img.shogun-image {
  /* Add background color handling */
  
}

#s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 .shg-image-content-wrapper {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }

    #s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 .shogun-image-link {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1728px;
  }



  img.s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image {
    
    
    
    max-height: 1728px;
  }


.s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 .shogun-image-content {
  
    justify-content: center;
  
}

.s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shg-align-container {
  display: flex;
  justify-content: center
}

.s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image {
  box-sizing: border-box;
}



.s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 {
      --shg-aspect-ratio: calc(1728/513); 
    }

    .s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image-container {
      position: relative;
    }

    .s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1728px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 {
  margin: 0 !important;
  overflow: visible;
}

#s-57f1a96e-b49a-4c8d-9e3b-303cee30e977-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 img.shogun-image {
  /* Add background color handling */
  
}

#s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 .shg-image-content-wrapper {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }

    #s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 .shogun-image-link {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1728px;
  }



  img.s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image {
    
    
    
    max-height: 1728px;
  }


.s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 .shogun-image-content {
  
    justify-content: center;
  
}

.s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shg-align-container {
  display: flex;
  justify-content: center
}

.s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image {
  box-sizing: border-box;
}



.s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 {
      --shg-aspect-ratio: calc(1728/513); 
    }

    .s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image-container {
      position: relative;
    }

    .s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1728px;
    }
  }

}@media (max-width: 767px){#s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 {
  margin: 0 !important;
  overflow: visible;
}

#s-57f1a96e-b49a-4c8d-9e3b-303cee30e977-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 img.shogun-image {
  /* Add background color handling */
  
}

#s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 .shg-image-content-wrapper {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }

    #s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 .shogun-image-link {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1728px;
  }



  img.s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image {
    
    
    
    max-height: 1728px;
  }


.s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 .shogun-image-content {
  
    justify-content: center;
  
}

.s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shg-align-container {
  display: flex;
  justify-content: center
}

.s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image {
  box-sizing: border-box;
}



.s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 {
      --shg-aspect-ratio: calc(1728/513); 
    }

    .s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image-container {
      position: relative;
    }

    .s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-57f1a96e-b49a-4c8d-9e3b-303cee30e977.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-57f1a96e-b49a-4c8d-9e3b-303cee30e977 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1728px;
    }
  }

}
#s-ec66f971-6bac-4e40-a513-ee6d6b6512e8 {
  margin-left: auto;
margin-right: auto;
padding-left: 5%;
padding-right: 5%;
min-height: 50px;
max-width: 1500px;
}
@media (max-width: 767px){#s-ec66f971-6bac-4e40-a513-ee6d6b6512e8 {
  padding-left: 2%;
padding-right: 2%;
}
}







#s-ec66f971-6bac-4e40-a513-ee6d6b6512e8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ec66f971-6bac-4e40-a513-ee6d6b6512e8.shg-box.shg-c {
  justify-content: center;
}

#s-b8c1d33c-63b2-4f0a-bec5-b9d6848dc82c {
  margin-top: 2%;
margin-left: auto;
margin-bottom: 2%;
margin-right: auto;
padding-top: 0%;
padding-bottom: 0%;
text-align: right;
}
@media (min-width: 1200px){#s-b8c1d33c-63b2-4f0a-bec5-b9d6848dc82c {
  display: none;
}
#s-b8c1d33c-63b2-4f0a-bec5-b9d6848dc82c, #wrap-s-b8c1d33c-63b2-4f0a-bec5-b9d6848dc82c, #wrap-content-s-b8c1d33c-63b2-4f0a-bec5-b9d6848dc82c { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b8c1d33c-63b2-4f0a-bec5-b9d6848dc82c {
  display: none;
}
#s-b8c1d33c-63b2-4f0a-bec5-b9d6848dc82c, #wrap-s-b8c1d33c-63b2-4f0a-bec5-b9d6848dc82c, #wrap-content-s-b8c1d33c-63b2-4f0a-bec5-b9d6848dc82c { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b8c1d33c-63b2-4f0a-bec5-b9d6848dc82c {
  display: none;
}
#s-b8c1d33c-63b2-4f0a-bec5-b9d6848dc82c, #wrap-s-b8c1d33c-63b2-4f0a-bec5-b9d6848dc82c, #wrap-content-s-b8c1d33c-63b2-4f0a-bec5-b9d6848dc82c { display: none !important; }}@media (max-width: 767px){#s-b8c1d33c-63b2-4f0a-bec5-b9d6848dc82c {
  display: none;
}
#s-b8c1d33c-63b2-4f0a-bec5-b9d6848dc82c, #wrap-s-b8c1d33c-63b2-4f0a-bec5-b9d6848dc82c, #wrap-content-s-b8c1d33c-63b2-4f0a-bec5-b9d6848dc82c { display: none !important; }}
#s-b8c1d33c-63b2-4f0a-bec5-b9d6848dc82c .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}


@media (min-width: 1200px){#s-b8c1d33c-63b2-4f0a-bec5-b9d6848dc82c .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: center;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-b8c1d33c-63b2-4f0a-bec5-b9d6848dc82c .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: center;
}


}@media (max-width: 767px){#s-b8c1d33c-63b2-4f0a-bec5-b9d6848dc82c .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: center;
}


}
#s-1decb96b-451c-4d0f-8512-f7453e3cea74 {
  margin-top: 5%;
margin-left: auto;
margin-bottom: 0%;
margin-right: auto;
text-align: left;
}
@media (max-width: 767px){#s-1decb96b-451c-4d0f-8512-f7453e3cea74 {
  display: none;
}
#s-1decb96b-451c-4d0f-8512-f7453e3cea74, #wrap-s-1decb96b-451c-4d0f-8512-f7453e3cea74, #wrap-content-s-1decb96b-451c-4d0f-8512-f7453e3cea74 { display: none !important; }}
#s-fd91afa0-e504-4cea-ad0a-b0771d7b2840 {
  margin-top: 5%;
margin-left: auto;
margin-bottom: 0%;
margin-right: auto;
text-align: left;
}
@media (min-width: 1200px){#s-fd91afa0-e504-4cea-ad0a-b0771d7b2840 {
  display: none;
}
#s-fd91afa0-e504-4cea-ad0a-b0771d7b2840, #wrap-s-fd91afa0-e504-4cea-ad0a-b0771d7b2840, #wrap-content-s-fd91afa0-e504-4cea-ad0a-b0771d7b2840 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-fd91afa0-e504-4cea-ad0a-b0771d7b2840 {
  display: none;
}
#s-fd91afa0-e504-4cea-ad0a-b0771d7b2840, #wrap-s-fd91afa0-e504-4cea-ad0a-b0771d7b2840, #wrap-content-s-fd91afa0-e504-4cea-ad0a-b0771d7b2840 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-fd91afa0-e504-4cea-ad0a-b0771d7b2840 {
  display: none;
}
#s-fd91afa0-e504-4cea-ad0a-b0771d7b2840, #wrap-s-fd91afa0-e504-4cea-ad0a-b0771d7b2840, #wrap-content-s-fd91afa0-e504-4cea-ad0a-b0771d7b2840 { display: none !important; }}
#s-d6ff89e5-603f-454d-8f96-634ef9ae1640 {
  margin-top: 0%;
margin-left: auto;
margin-bottom: 10%;
margin-right: auto;
min-height: 50px;
}








#s-d6ff89e5-603f-454d-8f96-634ef9ae1640 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d6ff89e5-603f-454d-8f96-634ef9ae1640.shg-box.shg-c {
  justify-content: center;
}

#s-86213511-2ba4-4150-8826-eb42f1037f04 {
  margin-top: 4%;
margin-left: auto;
margin-bottom: 1%;
margin-right: auto;
padding-top: 0%;
padding-left: 1%;
padding-bottom: 0%;
padding-right: 1%;
text-align: center;
}
@media (max-width: 767px){#s-86213511-2ba4-4150-8826-eb42f1037f04 {
  display: none;
}
#s-86213511-2ba4-4150-8826-eb42f1037f04, #wrap-s-86213511-2ba4-4150-8826-eb42f1037f04, #wrap-content-s-86213511-2ba4-4150-8826-eb42f1037f04 { display: none !important; }}
#s-86213511-2ba4-4150-8826-eb42f1037f04 .shogun-heading-component h5 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}


@media (min-width: 1200px){#s-86213511-2ba4-4150-8826-eb42f1037f04 .shogun-heading-component h5 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: center;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-86213511-2ba4-4150-8826-eb42f1037f04 .shogun-heading-component h5 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: center;
}


}@media (min-width: 768px) and (max-width: 991px){#s-86213511-2ba4-4150-8826-eb42f1037f04 .shogun-heading-component h5 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}


}@media (max-width: 767px){#s-86213511-2ba4-4150-8826-eb42f1037f04 .shogun-heading-component h5 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 12px;
  
  
  text-align: center;
}


}
#s-01781df8-747b-4367-bb3e-d00135d62a08 {
  margin-top: 4%;
margin-left: auto;
margin-bottom: 4%;
margin-right: auto;
padding-top: 0%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
text-align: center;
}
@media (min-width: 1200px){#s-01781df8-747b-4367-bb3e-d00135d62a08 {
  display: none;
}
#s-01781df8-747b-4367-bb3e-d00135d62a08, #wrap-s-01781df8-747b-4367-bb3e-d00135d62a08, #wrap-content-s-01781df8-747b-4367-bb3e-d00135d62a08 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-01781df8-747b-4367-bb3e-d00135d62a08 {
  display: none;
}
#s-01781df8-747b-4367-bb3e-d00135d62a08, #wrap-s-01781df8-747b-4367-bb3e-d00135d62a08, #wrap-content-s-01781df8-747b-4367-bb3e-d00135d62a08 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-01781df8-747b-4367-bb3e-d00135d62a08 {
  display: none;
}
#s-01781df8-747b-4367-bb3e-d00135d62a08, #wrap-s-01781df8-747b-4367-bb3e-d00135d62a08, #wrap-content-s-01781df8-747b-4367-bb3e-d00135d62a08 { display: none !important; }}
#s-01781df8-747b-4367-bb3e-d00135d62a08 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 12px;
  
  
  text-align: center;
}


@media (min-width: 768px) and (max-width: 991px){#s-01781df8-747b-4367-bb3e-d00135d62a08 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}


}@media (max-width: 767px){#s-01781df8-747b-4367-bb3e-d00135d62a08 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}


}
#s-c03f8fe8-40fc-4fd6-9546-5ad0e1710f96 {
  margin-left: 20%;
margin-right: 20%;
}
@media (min-width: 1200px){#s-c03f8fe8-40fc-4fd6-9546-5ad0e1710f96 {
  margin-top: 1%;
margin-left: 25%;
margin-bottom: 0%;
margin-right: 25%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c03f8fe8-40fc-4fd6-9546-5ad0e1710f96 {
  margin-top: 1%;
margin-left: 22%;
margin-bottom: 0%;
margin-right: 22%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-c03f8fe8-40fc-4fd6-9546-5ad0e1710f96 {
  margin-top: 1%;
margin-left: 10%;
margin-bottom: 0%;
margin-right: 10%;
}
}@media (max-width: 767px){#s-c03f8fe8-40fc-4fd6-9546-5ad0e1710f96 {
  margin-top: 1%;
margin-left: 5%;
margin-bottom: 0%;
margin-right: 5%;
}
}
@media (min-width: 0px) {
[id="s-c03f8fe8-40fc-4fd6-9546-5ad0e1710f96"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-c03f8fe8-40fc-4fd6-9546-5ad0e1710f96"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c03f8fe8-40fc-4fd6-9546-5ad0e1710f96"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c03f8fe8-40fc-4fd6-9546-5ad0e1710f96"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-c5433f16-478b-4091-898f-d33622259468 {
  margin-left: auto;
margin-right: auto;
max-width: 1728px;
aspect-ratio: 1728/513;
text-align: center;
}

#s-c5433f16-478b-4091-898f-d33622259468 {
  margin: 0 !important;
  overflow: visible;
}

#s-c5433f16-478b-4091-898f-d33622259468-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c5433f16-478b-4091-898f-d33622259468 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c5433f16-478b-4091-898f-d33622259468 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c5433f16-478b-4091-898f-d33622259468 img.shogun-image {
  /* Add background color handling */
  
}

#s-c5433f16-478b-4091-898f-d33622259468 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c5433f16-478b-4091-898f-d33622259468 .shg-image-content-wrapper {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }

    #s-c5433f16-478b-4091-898f-d33622259468 .shogun-image-link {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c5433f16-478b-4091-898f-d33622259468 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c5433f16-478b-4091-898f-d33622259468.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c5433f16-478b-4091-898f-d33622259468 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1728px;
  }



  img.s-c5433f16-478b-4091-898f-d33622259468.shogun-image {
    
    
    
    max-height: 1728px;
  }


.s-c5433f16-478b-4091-898f-d33622259468 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c5433f16-478b-4091-898f-d33622259468.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5433f16-478b-4091-898f-d33622259468.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5433f16-478b-4091-898f-d33622259468.shogun-image {
  box-sizing: border-box;
}



.s-c5433f16-478b-4091-898f-d33622259468 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c5433f16-478b-4091-898f-d33622259468 {
      --shg-aspect-ratio: calc(1728/513); 
    }

    .s-c5433f16-478b-4091-898f-d33622259468.shogun-image-container {
      position: relative;
    }

    .s-c5433f16-478b-4091-898f-d33622259468.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c5433f16-478b-4091-898f-d33622259468.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c5433f16-478b-4091-898f-d33622259468 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1728px;
    }
  }

@media (min-width: 1200px){#s-c5433f16-478b-4091-898f-d33622259468 {
  margin: 0 !important;
  overflow: visible;
}

#s-c5433f16-478b-4091-898f-d33622259468-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c5433f16-478b-4091-898f-d33622259468 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c5433f16-478b-4091-898f-d33622259468 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c5433f16-478b-4091-898f-d33622259468 img.shogun-image {
  /* Add background color handling */
  
}

#s-c5433f16-478b-4091-898f-d33622259468 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c5433f16-478b-4091-898f-d33622259468 .shg-image-content-wrapper {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }

    #s-c5433f16-478b-4091-898f-d33622259468 .shogun-image-link {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c5433f16-478b-4091-898f-d33622259468 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c5433f16-478b-4091-898f-d33622259468.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c5433f16-478b-4091-898f-d33622259468 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1728px;
  }



  img.s-c5433f16-478b-4091-898f-d33622259468.shogun-image {
    
    
    
    max-height: 1728px;
  }


.s-c5433f16-478b-4091-898f-d33622259468 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c5433f16-478b-4091-898f-d33622259468.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5433f16-478b-4091-898f-d33622259468.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5433f16-478b-4091-898f-d33622259468.shogun-image {
  box-sizing: border-box;
}



.s-c5433f16-478b-4091-898f-d33622259468 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c5433f16-478b-4091-898f-d33622259468 {
      --shg-aspect-ratio: calc(1728/513); 
    }

    .s-c5433f16-478b-4091-898f-d33622259468.shogun-image-container {
      position: relative;
    }

    .s-c5433f16-478b-4091-898f-d33622259468.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c5433f16-478b-4091-898f-d33622259468.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c5433f16-478b-4091-898f-d33622259468 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1728px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-c5433f16-478b-4091-898f-d33622259468 {
  margin: 0 !important;
  overflow: visible;
}

#s-c5433f16-478b-4091-898f-d33622259468-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c5433f16-478b-4091-898f-d33622259468 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c5433f16-478b-4091-898f-d33622259468 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c5433f16-478b-4091-898f-d33622259468 img.shogun-image {
  /* Add background color handling */
  
}

#s-c5433f16-478b-4091-898f-d33622259468 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c5433f16-478b-4091-898f-d33622259468 .shg-image-content-wrapper {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }

    #s-c5433f16-478b-4091-898f-d33622259468 .shogun-image-link {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c5433f16-478b-4091-898f-d33622259468 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c5433f16-478b-4091-898f-d33622259468.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c5433f16-478b-4091-898f-d33622259468 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1728px;
  }



  img.s-c5433f16-478b-4091-898f-d33622259468.shogun-image {
    
    
    
    max-height: 1728px;
  }


.s-c5433f16-478b-4091-898f-d33622259468 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c5433f16-478b-4091-898f-d33622259468.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5433f16-478b-4091-898f-d33622259468.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5433f16-478b-4091-898f-d33622259468.shogun-image {
  box-sizing: border-box;
}



.s-c5433f16-478b-4091-898f-d33622259468 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c5433f16-478b-4091-898f-d33622259468 {
      --shg-aspect-ratio: calc(1728/513); 
    }

    .s-c5433f16-478b-4091-898f-d33622259468.shogun-image-container {
      position: relative;
    }

    .s-c5433f16-478b-4091-898f-d33622259468.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c5433f16-478b-4091-898f-d33622259468.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c5433f16-478b-4091-898f-d33622259468 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1728px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-c5433f16-478b-4091-898f-d33622259468 {
  margin: 0 !important;
  overflow: visible;
}

#s-c5433f16-478b-4091-898f-d33622259468-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c5433f16-478b-4091-898f-d33622259468 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c5433f16-478b-4091-898f-d33622259468 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c5433f16-478b-4091-898f-d33622259468 img.shogun-image {
  /* Add background color handling */
  
}

#s-c5433f16-478b-4091-898f-d33622259468 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c5433f16-478b-4091-898f-d33622259468 .shg-image-content-wrapper {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }

    #s-c5433f16-478b-4091-898f-d33622259468 .shogun-image-link {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c5433f16-478b-4091-898f-d33622259468 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c5433f16-478b-4091-898f-d33622259468.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c5433f16-478b-4091-898f-d33622259468 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1728px;
  }



  img.s-c5433f16-478b-4091-898f-d33622259468.shogun-image {
    
    
    
    max-height: 1728px;
  }


.s-c5433f16-478b-4091-898f-d33622259468 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c5433f16-478b-4091-898f-d33622259468.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5433f16-478b-4091-898f-d33622259468.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5433f16-478b-4091-898f-d33622259468.shogun-image {
  box-sizing: border-box;
}



.s-c5433f16-478b-4091-898f-d33622259468 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c5433f16-478b-4091-898f-d33622259468 {
      --shg-aspect-ratio: calc(1728/513); 
    }

    .s-c5433f16-478b-4091-898f-d33622259468.shogun-image-container {
      position: relative;
    }

    .s-c5433f16-478b-4091-898f-d33622259468.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c5433f16-478b-4091-898f-d33622259468.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c5433f16-478b-4091-898f-d33622259468 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1728px;
    }
  }

}@media (max-width: 767px){#s-c5433f16-478b-4091-898f-d33622259468 {
  margin: 0 !important;
  overflow: visible;
}

#s-c5433f16-478b-4091-898f-d33622259468-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c5433f16-478b-4091-898f-d33622259468 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c5433f16-478b-4091-898f-d33622259468 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c5433f16-478b-4091-898f-d33622259468 img.shogun-image {
  /* Add background color handling */
  
}

#s-c5433f16-478b-4091-898f-d33622259468 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c5433f16-478b-4091-898f-d33622259468 .shg-image-content-wrapper {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }

    #s-c5433f16-478b-4091-898f-d33622259468 .shogun-image-link {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c5433f16-478b-4091-898f-d33622259468 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c5433f16-478b-4091-898f-d33622259468.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c5433f16-478b-4091-898f-d33622259468 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1728px;
  }



  img.s-c5433f16-478b-4091-898f-d33622259468.shogun-image {
    
    
    
    max-height: 1728px;
  }


.s-c5433f16-478b-4091-898f-d33622259468 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c5433f16-478b-4091-898f-d33622259468.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5433f16-478b-4091-898f-d33622259468.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5433f16-478b-4091-898f-d33622259468.shogun-image {
  box-sizing: border-box;
}



.s-c5433f16-478b-4091-898f-d33622259468 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c5433f16-478b-4091-898f-d33622259468 {
      --shg-aspect-ratio: calc(1728/513); 
    }

    .s-c5433f16-478b-4091-898f-d33622259468.shogun-image-container {
      position: relative;
    }

    .s-c5433f16-478b-4091-898f-d33622259468.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c5433f16-478b-4091-898f-d33622259468.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c5433f16-478b-4091-898f-d33622259468 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1728px;
    }
  }

}
#s-71474b66-f326-4f82-8c05-ed4179183b8e {
  margin-left: auto;
margin-right: auto;
max-width: 1728px;
aspect-ratio: 1728/513;
text-align: center;
}

#s-71474b66-f326-4f82-8c05-ed4179183b8e {
  margin: 0 !important;
  overflow: visible;
}

#s-71474b66-f326-4f82-8c05-ed4179183b8e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-71474b66-f326-4f82-8c05-ed4179183b8e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-71474b66-f326-4f82-8c05-ed4179183b8e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-71474b66-f326-4f82-8c05-ed4179183b8e img.shogun-image {
  /* Add background color handling */
  
}

#s-71474b66-f326-4f82-8c05-ed4179183b8e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-71474b66-f326-4f82-8c05-ed4179183b8e .shg-image-content-wrapper {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }

    #s-71474b66-f326-4f82-8c05-ed4179183b8e .shogun-image-link {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-71474b66-f326-4f82-8c05-ed4179183b8e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-71474b66-f326-4f82-8c05-ed4179183b8e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1728px;
  }



  img.s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image {
    
    
    
    max-height: 1728px;
  }


.s-71474b66-f326-4f82-8c05-ed4179183b8e .shogun-image-content {
  
    justify-content: center;
  
}

.s-71474b66-f326-4f82-8c05-ed4179183b8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image {
  box-sizing: border-box;
}



.s-71474b66-f326-4f82-8c05-ed4179183b8e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-71474b66-f326-4f82-8c05-ed4179183b8e {
      --shg-aspect-ratio: calc(1728/513); 
    }

    .s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image-container {
      position: relative;
    }

    .s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-71474b66-f326-4f82-8c05-ed4179183b8e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1728px;
    }
  }

@media (min-width: 1200px){#s-71474b66-f326-4f82-8c05-ed4179183b8e {
  margin: 0 !important;
  overflow: visible;
}

#s-71474b66-f326-4f82-8c05-ed4179183b8e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-71474b66-f326-4f82-8c05-ed4179183b8e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-71474b66-f326-4f82-8c05-ed4179183b8e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-71474b66-f326-4f82-8c05-ed4179183b8e img.shogun-image {
  /* Add background color handling */
  
}

#s-71474b66-f326-4f82-8c05-ed4179183b8e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-71474b66-f326-4f82-8c05-ed4179183b8e .shg-image-content-wrapper {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }

    #s-71474b66-f326-4f82-8c05-ed4179183b8e .shogun-image-link {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-71474b66-f326-4f82-8c05-ed4179183b8e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-71474b66-f326-4f82-8c05-ed4179183b8e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1728px;
  }



  img.s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image {
    
    
    
    max-height: 1728px;
  }


.s-71474b66-f326-4f82-8c05-ed4179183b8e .shogun-image-content {
  
    justify-content: center;
  
}

.s-71474b66-f326-4f82-8c05-ed4179183b8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image {
  box-sizing: border-box;
}



.s-71474b66-f326-4f82-8c05-ed4179183b8e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-71474b66-f326-4f82-8c05-ed4179183b8e {
      --shg-aspect-ratio: calc(1728/513); 
    }

    .s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image-container {
      position: relative;
    }

    .s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-71474b66-f326-4f82-8c05-ed4179183b8e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1728px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-71474b66-f326-4f82-8c05-ed4179183b8e {
  margin: 0 !important;
  overflow: visible;
}

#s-71474b66-f326-4f82-8c05-ed4179183b8e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-71474b66-f326-4f82-8c05-ed4179183b8e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-71474b66-f326-4f82-8c05-ed4179183b8e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-71474b66-f326-4f82-8c05-ed4179183b8e img.shogun-image {
  /* Add background color handling */
  
}

#s-71474b66-f326-4f82-8c05-ed4179183b8e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-71474b66-f326-4f82-8c05-ed4179183b8e .shg-image-content-wrapper {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }

    #s-71474b66-f326-4f82-8c05-ed4179183b8e .shogun-image-link {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-71474b66-f326-4f82-8c05-ed4179183b8e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-71474b66-f326-4f82-8c05-ed4179183b8e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1728px;
  }



  img.s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image {
    
    
    
    max-height: 1728px;
  }


.s-71474b66-f326-4f82-8c05-ed4179183b8e .shogun-image-content {
  
    justify-content: center;
  
}

.s-71474b66-f326-4f82-8c05-ed4179183b8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image {
  box-sizing: border-box;
}



.s-71474b66-f326-4f82-8c05-ed4179183b8e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-71474b66-f326-4f82-8c05-ed4179183b8e {
      --shg-aspect-ratio: calc(1728/513); 
    }

    .s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image-container {
      position: relative;
    }

    .s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-71474b66-f326-4f82-8c05-ed4179183b8e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1728px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-71474b66-f326-4f82-8c05-ed4179183b8e {
  margin: 0 !important;
  overflow: visible;
}

#s-71474b66-f326-4f82-8c05-ed4179183b8e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-71474b66-f326-4f82-8c05-ed4179183b8e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-71474b66-f326-4f82-8c05-ed4179183b8e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-71474b66-f326-4f82-8c05-ed4179183b8e img.shogun-image {
  /* Add background color handling */
  
}

#s-71474b66-f326-4f82-8c05-ed4179183b8e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-71474b66-f326-4f82-8c05-ed4179183b8e .shg-image-content-wrapper {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }

    #s-71474b66-f326-4f82-8c05-ed4179183b8e .shogun-image-link {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-71474b66-f326-4f82-8c05-ed4179183b8e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-71474b66-f326-4f82-8c05-ed4179183b8e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1728px;
  }



  img.s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image {
    
    
    
    max-height: 1728px;
  }


.s-71474b66-f326-4f82-8c05-ed4179183b8e .shogun-image-content {
  
    justify-content: center;
  
}

.s-71474b66-f326-4f82-8c05-ed4179183b8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image {
  box-sizing: border-box;
}



.s-71474b66-f326-4f82-8c05-ed4179183b8e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-71474b66-f326-4f82-8c05-ed4179183b8e {
      --shg-aspect-ratio: calc(1728/513); 
    }

    .s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image-container {
      position: relative;
    }

    .s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-71474b66-f326-4f82-8c05-ed4179183b8e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1728px;
    }
  }

}@media (max-width: 767px){#s-71474b66-f326-4f82-8c05-ed4179183b8e {
  margin: 0 !important;
  overflow: visible;
}

#s-71474b66-f326-4f82-8c05-ed4179183b8e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-71474b66-f326-4f82-8c05-ed4179183b8e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-71474b66-f326-4f82-8c05-ed4179183b8e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-71474b66-f326-4f82-8c05-ed4179183b8e img.shogun-image {
  /* Add background color handling */
  
}

#s-71474b66-f326-4f82-8c05-ed4179183b8e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-71474b66-f326-4f82-8c05-ed4179183b8e .shg-image-content-wrapper {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }

    #s-71474b66-f326-4f82-8c05-ed4179183b8e .shogun-image-link {
      aspect-ratio: 1728/513;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-71474b66-f326-4f82-8c05-ed4179183b8e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-71474b66-f326-4f82-8c05-ed4179183b8e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1728px;
  }



  img.s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image {
    
    
    
    max-height: 1728px;
  }


.s-71474b66-f326-4f82-8c05-ed4179183b8e .shogun-image-content {
  
    justify-content: center;
  
}

.s-71474b66-f326-4f82-8c05-ed4179183b8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image {
  box-sizing: border-box;
}



.s-71474b66-f326-4f82-8c05-ed4179183b8e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-71474b66-f326-4f82-8c05-ed4179183b8e {
      --shg-aspect-ratio: calc(1728/513); 
    }

    .s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image-container {
      position: relative;
    }

    .s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-71474b66-f326-4f82-8c05-ed4179183b8e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-71474b66-f326-4f82-8c05-ed4179183b8e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1728px;
    }
  }

}
#s-8950b3b9-a5c2-423d-a0c3-7672609bf98b {
  margin-left: auto;
margin-right: auto;
min-height: 500px;
background-color: rgba(0, 0, 0, 1);
}








#s-8950b3b9-a5c2-423d-a0c3-7672609bf98b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8950b3b9-a5c2-423d-a0c3-7672609bf98b.shg-box.shg-c {
  justify-content: center;
}

#s-e19fac69-c8ed-479b-ba61-97fe46529e55 {
  margin-top: 5%;
margin-left: auto;
margin-right: auto;
padding-left: 5%;
padding-right: 5%;
min-height: 50px;
max-width: 1500px;
}
@media (max-width: 767px){#s-e19fac69-c8ed-479b-ba61-97fe46529e55 {
  margin-top: 10%;
padding-left: 2%;
padding-right: 2%;
}
}







#s-e19fac69-c8ed-479b-ba61-97fe46529e55 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e19fac69-c8ed-479b-ba61-97fe46529e55.shg-box.shg-c {
  justify-content: center;
}

#s-3e5d8875-b812-440e-a707-f9ec0a579380 {
  margin-left: auto;
margin-bottom: 2%;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-3e5d8875-b812-440e-a707-f9ec0a579380 .shogun-heading-component h1 {
  
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 40px;
  line-height: 1.1em;
  
  
}


@media (min-width: 1200px){#s-3e5d8875-b812-440e-a707-f9ec0a579380 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 75px;
  line-height: 1.1em;
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-3e5d8875-b812-440e-a707-f9ec0a579380 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 65px;
  line-height: 1.1em;
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-3e5d8875-b812-440e-a707-f9ec0a579380 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 55px;
  line-height: 1.1em;
  
  
}


}@media (max-width: 767px){#s-3e5d8875-b812-440e-a707-f9ec0a579380 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 40px;
  line-height: 1.1em;
  
  
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-e55d742e-5bff-4feb-9b8f-f6eb73d7256a {
  margin-bottom: 0px;
}
@media (min-width: 1200px){#s-e55d742e-5bff-4feb-9b8f-f6eb73d7256a {
  margin-left: 10%;
margin-right: 10%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e55d742e-5bff-4feb-9b8f-f6eb73d7256a {
  margin-left: 5%;
margin-right: 5%;
}
}
#s-e55d742e-5bff-4feb-9b8f-f6eb73d7256a > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(0, 105, 127, 0);
}

#s-e55d742e-5bff-4feb-9b8f-f6eb73d7256a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(98, 98, 98, 1);
  padding: 10px;
}

#s-e55d742e-5bff-4feb-9b8f-f6eb73d7256a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(236, 236, 236, 1);
}

#s-e55d742e-5bff-4feb-9b8f-f6eb73d7256a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(235, 235, 235, 0);
  border-top: 1px solid rgba(0, 105, 127, 0);
}

#s-e55d742e-5bff-4feb-9b8f-f6eb73d7256a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(236, 236, 236, 1);
  text-align: left;
  font-family: Montserrat;
  font-weight: 600;
  
  font-size: 16px;
}

#s-e55d742e-5bff-4feb-9b8f-f6eb73d7256a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
.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 {
  
  
  
}

.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 ::-moz-selection, .shg-default-text-content *::-moz-selection {
  background: #accef7;
}
.shg-default-text-content ::selection,
.shg-default-text-content *::selection {
  background: #accef7;
}

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

.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 {
  
  
  
}

.shg-theme-text-content p {
  
  
  
}

#s-386f6819-f03e-4c3c-ad7b-da12e8700aa9 {
  margin-top: 12px;
margin-left: 12px;
margin-bottom: 0%;
margin-right: 12px;
}
@media (min-width: 768px) and (max-width: 991px){#s-386f6819-f03e-4c3c-ad7b-da12e8700aa9 {
  
}
}@media (max-width: 767px){#s-386f6819-f03e-4c3c-ad7b-da12e8700aa9 {
  
}
}
#s-078034b6-6b9d-4c23-8daf-3a6ab2ea1374 {
  margin-top: 12px;
margin-left: 12px;
margin-bottom: 0%;
margin-right: 12px;
}
@media (min-width: 768px) and (max-width: 991px){#s-078034b6-6b9d-4c23-8daf-3a6ab2ea1374 {
  
}
}@media (max-width: 767px){#s-078034b6-6b9d-4c23-8daf-3a6ab2ea1374 {
  
}
}
#s-82d7507f-7913-4c47-ab30-56496c6be248 {
  margin-top: 12px;
margin-left: 12px;
margin-bottom: 0%;
margin-right: 12px;
}
@media (min-width: 768px) and (max-width: 991px){#s-82d7507f-7913-4c47-ab30-56496c6be248 {
  
}
}@media (max-width: 767px){#s-82d7507f-7913-4c47-ab30-56496c6be248 {
  
}
}
#s-e0a8f286-3b40-4f9f-90eb-8bc655386c4a {
  margin-top: 12px;
margin-left: 12px;
margin-bottom: 0%;
margin-right: 12px;
}
@media (min-width: 768px) and (max-width: 991px){#s-e0a8f286-3b40-4f9f-90eb-8bc655386c4a {
  
}
}@media (max-width: 767px){#s-e0a8f286-3b40-4f9f-90eb-8bc655386c4a {
  
}
}
#s-f2f9ede3-fbba-4654-a0ff-7acfb4181dff {
  margin-top: 12px;
margin-left: 12px;
margin-bottom: 0%;
margin-right: 12px;
}
@media (min-width: 768px) and (max-width: 991px){#s-f2f9ede3-fbba-4654-a0ff-7acfb4181dff {
  
}
}@media (max-width: 767px){#s-f2f9ede3-fbba-4654-a0ff-7acfb4181dff {
  
}
}
#s-ddbc9247-07ac-4cc7-b174-b7f1da4cae9c {
  margin-top: 12px;
margin-left: 12px;
margin-bottom: 0%;
margin-right: 12px;
}
@media (min-width: 768px) and (max-width: 991px){#s-ddbc9247-07ac-4cc7-b174-b7f1da4cae9c {
  
}
}@media (max-width: 767px){#s-ddbc9247-07ac-4cc7-b174-b7f1da4cae9c {
  
}
}
#s-728b8103-4045-4d56-8260-0c122ecda30c {
  margin-top: 12px;
margin-left: 12px;
margin-bottom: 0%;
margin-right: 12px;
}
@media (min-width: 768px) and (max-width: 991px){#s-728b8103-4045-4d56-8260-0c122ecda30c {
  
}
}@media (max-width: 767px){#s-728b8103-4045-4d56-8260-0c122ecda30c {
  
}
}
#s-b43575cf-8f59-48de-90b7-362931e21f11 {
  margin-top: 12px;
margin-left: 12px;
margin-bottom: 0%;
margin-right: 12px;
}
@media (min-width: 768px) and (max-width: 991px){#s-b43575cf-8f59-48de-90b7-362931e21f11 {
  
}
}@media (max-width: 767px){#s-b43575cf-8f59-48de-90b7-362931e21f11 {
  
}
}
#s-26ec5d88-0e55-4f45-94be-4e96af939061 {
  margin-top: 10%;
margin-left: auto;
margin-bottom: 0%;
margin-right: auto;
max-width: 3840px;
aspect-ratio: 3840/3460;
text-align: center;
}

#s-26ec5d88-0e55-4f45-94be-4e96af939061 {
  margin: 0 !important;
  overflow: visible;
}

#s-26ec5d88-0e55-4f45-94be-4e96af939061-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-26ec5d88-0e55-4f45-94be-4e96af939061 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 10%;
  margin-bottom: 0%;
}

.shg-image-content-margin-container-s-26ec5d88-0e55-4f45-94be-4e96af939061 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-26ec5d88-0e55-4f45-94be-4e96af939061 img.shogun-image {
  /* Add background color handling */
  
}

#s-26ec5d88-0e55-4f45-94be-4e96af939061 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-26ec5d88-0e55-4f45-94be-4e96af939061 .shg-image-content-wrapper {
      aspect-ratio: 3840/3460;
      min-width: 100%;
      height: auto;
    }

    #s-26ec5d88-0e55-4f45-94be-4e96af939061 .shogun-image-link {
      aspect-ratio: 3840/3460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-26ec5d88-0e55-4f45-94be-4e96af939061 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-26ec5d88-0e55-4f45-94be-4e96af939061 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3840px;
  }



  img.s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image {
    
    
    
    max-height: 3840px;
  }


.s-26ec5d88-0e55-4f45-94be-4e96af939061 .shogun-image-content {
  
    justify-content: center;
  
}

.s-26ec5d88-0e55-4f45-94be-4e96af939061.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image {
  box-sizing: border-box;
}



.s-26ec5d88-0e55-4f45-94be-4e96af939061 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-26ec5d88-0e55-4f45-94be-4e96af939061 {
      --shg-aspect-ratio: calc(3840/3460); 
    }

    .s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image-container {
      position: relative;
    }

    .s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-26ec5d88-0e55-4f45-94be-4e96af939061 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3840px;
    }
  }

@media (min-width: 1200px){#s-26ec5d88-0e55-4f45-94be-4e96af939061 {
  margin: 0 !important;
  overflow: visible;
}

#s-26ec5d88-0e55-4f45-94be-4e96af939061-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-26ec5d88-0e55-4f45-94be-4e96af939061 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-26ec5d88-0e55-4f45-94be-4e96af939061 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-26ec5d88-0e55-4f45-94be-4e96af939061 img.shogun-image {
  /* Add background color handling */
  
}

#s-26ec5d88-0e55-4f45-94be-4e96af939061 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-26ec5d88-0e55-4f45-94be-4e96af939061 .shg-image-content-wrapper {
      aspect-ratio: 3840/3460;
      min-width: 100%;
      height: auto;
    }

    #s-26ec5d88-0e55-4f45-94be-4e96af939061 .shogun-image-link {
      aspect-ratio: 3840/3460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-26ec5d88-0e55-4f45-94be-4e96af939061 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-26ec5d88-0e55-4f45-94be-4e96af939061 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3840px;
  }



  img.s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image {
    
    
    
    max-height: 3840px;
  }


.s-26ec5d88-0e55-4f45-94be-4e96af939061 .shogun-image-content {
  
    justify-content: center;
  
}

.s-26ec5d88-0e55-4f45-94be-4e96af939061.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image {
  box-sizing: border-box;
}



.s-26ec5d88-0e55-4f45-94be-4e96af939061 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-26ec5d88-0e55-4f45-94be-4e96af939061 {
      --shg-aspect-ratio: calc(3840/3460); 
    }

    .s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image-container {
      position: relative;
    }

    .s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-26ec5d88-0e55-4f45-94be-4e96af939061 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3840px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-26ec5d88-0e55-4f45-94be-4e96af939061 {
  margin: 0 !important;
  overflow: visible;
}

#s-26ec5d88-0e55-4f45-94be-4e96af939061-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-26ec5d88-0e55-4f45-94be-4e96af939061 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-26ec5d88-0e55-4f45-94be-4e96af939061 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-26ec5d88-0e55-4f45-94be-4e96af939061 img.shogun-image {
  /* Add background color handling */
  
}

#s-26ec5d88-0e55-4f45-94be-4e96af939061 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-26ec5d88-0e55-4f45-94be-4e96af939061 .shg-image-content-wrapper {
      aspect-ratio: 3840/3460;
      min-width: 100%;
      height: auto;
    }

    #s-26ec5d88-0e55-4f45-94be-4e96af939061 .shogun-image-link {
      aspect-ratio: 3840/3460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-26ec5d88-0e55-4f45-94be-4e96af939061 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-26ec5d88-0e55-4f45-94be-4e96af939061 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3840px;
  }



  img.s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image {
    
    
    
    max-height: 3840px;
  }


.s-26ec5d88-0e55-4f45-94be-4e96af939061 .shogun-image-content {
  
    justify-content: center;
  
}

.s-26ec5d88-0e55-4f45-94be-4e96af939061.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image {
  box-sizing: border-box;
}



.s-26ec5d88-0e55-4f45-94be-4e96af939061 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-26ec5d88-0e55-4f45-94be-4e96af939061 {
      --shg-aspect-ratio: calc(3840/3460); 
    }

    .s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image-container {
      position: relative;
    }

    .s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-26ec5d88-0e55-4f45-94be-4e96af939061 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3840px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-26ec5d88-0e55-4f45-94be-4e96af939061 {
  margin: 0 !important;
  overflow: visible;
}

#s-26ec5d88-0e55-4f45-94be-4e96af939061-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-26ec5d88-0e55-4f45-94be-4e96af939061 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-26ec5d88-0e55-4f45-94be-4e96af939061 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-26ec5d88-0e55-4f45-94be-4e96af939061 img.shogun-image {
  /* Add background color handling */
  
}

#s-26ec5d88-0e55-4f45-94be-4e96af939061 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-26ec5d88-0e55-4f45-94be-4e96af939061 .shg-image-content-wrapper {
      aspect-ratio: 3840/3460;
      min-width: 100%;
      height: auto;
    }

    #s-26ec5d88-0e55-4f45-94be-4e96af939061 .shogun-image-link {
      aspect-ratio: 3840/3460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-26ec5d88-0e55-4f45-94be-4e96af939061 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-26ec5d88-0e55-4f45-94be-4e96af939061 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3840px;
  }



  img.s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image {
    
    
    
    max-height: 3840px;
  }


.s-26ec5d88-0e55-4f45-94be-4e96af939061 .shogun-image-content {
  
    justify-content: center;
  
}

.s-26ec5d88-0e55-4f45-94be-4e96af939061.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image {
  box-sizing: border-box;
}



.s-26ec5d88-0e55-4f45-94be-4e96af939061 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-26ec5d88-0e55-4f45-94be-4e96af939061 {
      --shg-aspect-ratio: calc(3840/3460); 
    }

    .s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image-container {
      position: relative;
    }

    .s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-26ec5d88-0e55-4f45-94be-4e96af939061 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3840px;
    }
  }

}@media (max-width: 767px){#s-26ec5d88-0e55-4f45-94be-4e96af939061 {
  margin: 0 !important;
  overflow: visible;
}

#s-26ec5d88-0e55-4f45-94be-4e96af939061-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-26ec5d88-0e55-4f45-94be-4e96af939061 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-26ec5d88-0e55-4f45-94be-4e96af939061 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-26ec5d88-0e55-4f45-94be-4e96af939061 img.shogun-image {
  /* Add background color handling */
  
}

#s-26ec5d88-0e55-4f45-94be-4e96af939061 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-26ec5d88-0e55-4f45-94be-4e96af939061 .shg-image-content-wrapper {
      aspect-ratio: 3840/3460;
      min-width: 100%;
      height: auto;
    }

    #s-26ec5d88-0e55-4f45-94be-4e96af939061 .shogun-image-link {
      aspect-ratio: 3840/3460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-26ec5d88-0e55-4f45-94be-4e96af939061 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-26ec5d88-0e55-4f45-94be-4e96af939061 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 3840px;
  }



  img.s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image {
    
    
    
    max-height: 3840px;
  }


.s-26ec5d88-0e55-4f45-94be-4e96af939061 .shogun-image-content {
  
    justify-content: center;
  
}

.s-26ec5d88-0e55-4f45-94be-4e96af939061.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image {
  box-sizing: border-box;
}



.s-26ec5d88-0e55-4f45-94be-4e96af939061 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-26ec5d88-0e55-4f45-94be-4e96af939061 {
      --shg-aspect-ratio: calc(3840/3460); 
    }

    .s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image-container {
      position: relative;
    }

    .s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-26ec5d88-0e55-4f45-94be-4e96af939061.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-26ec5d88-0e55-4f45-94be-4e96af939061 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3840px;
    }
  }

}
.shg-btn.shg-cse, .shg-btn.shg-cse:hover, .shg-btn.shg-cse:focus {
  color: #FFF;
}

.shg-btn {
  cursor: pointer;
  box-sizing: border-box;
}

.shg-btn-text {
  
  
}

.shg-btn.shg-btn-stretch {
  display: block;
}

.shg-btn:not(.shg-btn-stretch) {
  display: inline-block;
}

.shg-btn-wrapper.shg-align-left {
  text-align: left;
}

.shg-btn-wrapper.shg-align-center {
  text-align: center;
}

.shg-btn-wrapper.shg-align-right {
  text-align: right;
}

#s-de87bada-951b-460d-a621-3f8d364c9178 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iMWQ3MzIyOTAtOWYxZS00ZTM4LTg3MWMtNzU2YmQ3Mzk5Y2EzIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwLjA1IiBzdHlsZT0ic3RvcC1jb2xvcjojMzRiZWFlO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojMDAzMzNlO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCMxZDczMjI5MC05ZjFlLTRlMzgtODcxYy03NTZiZDczOTljYTMpIi8+PC9zdmc+);
background-repeat: no-repeat;
margin-top: 0px;
margin-left: auto;
margin-bottom: 10%;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
text-decoration: none;
background-gradient: [{"id"=>1, "pos"=>0.05, "color"=>"#34beae"}, {"id"=>2, "pos"=>1, "color"=>"#00333e"}];
hover-type: gradient;
}
#s-de87bada-951b-460d-a621-3f8d364c9178:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNmZjYTdjODMtMzlhMy00ZGQzLWFiZGYtNTY3ZDE4OGJlNGFhIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojMDA2OTdmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojMzRiZWFlO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM2ZmNhN2M4My0zOWEzLTRkZDMtYWJkZi01NjdkMTg4YmU0YWEpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#00697f"}, {"id"=>2, "pos"=>1, "color"=>"#34beae"}] !important;}#s-de87bada-951b-460d-a621-3f8d364c9178:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-de87bada-951b-460d-a621-3f8d364c9178-root {
    text-align: center;
  }


#s-de87bada-951b-460d-a621-3f8d364c9178.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-de87bada-951b-460d-a621-3f8d364c9178-root {
    text-align: center;
  }


#s-de87bada-951b-460d-a621-3f8d364c9178.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-de87bada-951b-460d-a621-3f8d364c9178-root {
    text-align: center;
  }


#s-de87bada-951b-460d-a621-3f8d364c9178.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-de87bada-951b-460d-a621-3f8d364c9178-root {
    text-align: center;
  }


#s-de87bada-951b-460d-a621-3f8d364c9178.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-de87bada-951b-460d-a621-3f8d364c9178-root {
    text-align: center;
  }


#s-de87bada-951b-460d-a621-3f8d364c9178.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}
#s-8eff0b59-86ce-4c81-94d7-2b72a14cbe0d {
  margin-left: 0%;
margin-right: 0%;
min-height: 50px;
}
@media (min-width: 1200px){#s-8eff0b59-86ce-4c81-94d7-2b72a14cbe0d {
  margin-left: 12%;
margin-right: 12%;
display: none;
}
#s-8eff0b59-86ce-4c81-94d7-2b72a14cbe0d, #wrap-s-8eff0b59-86ce-4c81-94d7-2b72a14cbe0d, #wrap-content-s-8eff0b59-86ce-4c81-94d7-2b72a14cbe0d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8eff0b59-86ce-4c81-94d7-2b72a14cbe0d {
  margin-left: 8%;
margin-right: 8%;
display: none;
}
#s-8eff0b59-86ce-4c81-94d7-2b72a14cbe0d, #wrap-s-8eff0b59-86ce-4c81-94d7-2b72a14cbe0d, #wrap-content-s-8eff0b59-86ce-4c81-94d7-2b72a14cbe0d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-8eff0b59-86ce-4c81-94d7-2b72a14cbe0d {
  margin-left: 4%;
margin-right: 4%;
display: none;
}
#s-8eff0b59-86ce-4c81-94d7-2b72a14cbe0d, #wrap-s-8eff0b59-86ce-4c81-94d7-2b72a14cbe0d, #wrap-content-s-8eff0b59-86ce-4c81-94d7-2b72a14cbe0d { display: none !important; }}@media (max-width: 767px){#s-8eff0b59-86ce-4c81-94d7-2b72a14cbe0d {
  margin-left: 2%;
margin-right: 2%;
display: none;
}
#s-8eff0b59-86ce-4c81-94d7-2b72a14cbe0d, #wrap-s-8eff0b59-86ce-4c81-94d7-2b72a14cbe0d, #wrap-content-s-8eff0b59-86ce-4c81-94d7-2b72a14cbe0d { display: none !important; }}







#s-8eff0b59-86ce-4c81-94d7-2b72a14cbe0d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8eff0b59-86ce-4c81-94d7-2b72a14cbe0d.shg-box.shg-c {
  justify-content: center;
}

/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

#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;
  -webkit-user-select: none;
     -moz-user-select: none;
          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-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:not(.shopify-section *):not([id^="wistia"]) {
  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;
}

@charset "UTF-8";/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */:root{--animate-duration:1s;--animate-delay:1s;--animate-repeat:1}.animate__animated{animation-duration:1s;animation-duration:var(--animate-duration);animation-fill-mode:both}.animate__animated.animate__infinite{animation-iteration-count:infinite}.animate__animated.animate__repeat-1{animation-iteration-count:1;animation-iteration-count:var(--animate-repeat)}.animate__animated.animate__repeat-2{animation-iteration-count:2;animation-iteration-count:calc(var(--animate-repeat)*2)}.animate__animated.animate__repeat-3{animation-iteration-count:3;animation-iteration-count:calc(var(--animate-repeat)*3)}.animate__animated.animate__delay-1s{animation-delay:1s;animation-delay:var(--animate-delay)}.animate__animated.animate__delay-2s{animation-delay:2s;animation-delay:calc(var(--animate-delay)*2)}.animate__animated.animate__delay-3s{animation-delay:3s;animation-delay:calc(var(--animate-delay)*3)}.animate__animated.animate__delay-4s{animation-delay:4s;animation-delay:calc(var(--animate-delay)*4)}.animate__animated.animate__delay-5s{animation-delay:5s;animation-delay:calc(var(--animate-delay)*5)}.animate__animated.animate__faster{animation-duration:.5s;animation-duration:calc(var(--animate-duration)/2)}.animate__animated.animate__fast{animation-duration:.8s;animation-duration:calc(var(--animate-duration)*0.8)}.animate__animated.animate__slow{animation-duration:2s;animation-duration:calc(var(--animate-duration)*2)}.animate__animated.animate__slower{animation-duration:3s;animation-duration:calc(var(--animate-duration)*3)}@media (prefers-reduced-motion:reduce),print{.animate__animated{animation-duration:1ms!important;transition-duration:1ms!important;animation-iteration-count:1!important}.animate__animated[class*=Out]{opacity:0}}@keyframes bounce{0%,20%,53%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1);transform:translateZ(0)}40%,43%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-30px,0) scaleY(1.1)}70%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-15px,0) scaleY(1.05)}80%{transition-timing-function:cubic-bezier(.215,.61,.355,1);transform:translateZ(0) scaleY(.95)}90%{transform:translate3d(0,-4px,0) scaleY(1.02)}}.animate__bounce{animation-name:bounce;transform-origin:center bottom}@keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}.animate__flash{animation-name:flash}@keyframes pulse{0%{transform:scaleX(1)}50%{transform:scale3d(1.05,1.05,1.05)}to{transform:scaleX(1)}}.animate__pulse{animation-name:pulse;animation-timing-function:ease-in-out}@keyframes rubberBand{0%{transform:scaleX(1)}30%{transform:scale3d(1.25,.75,1)}40%{transform:scale3d(.75,1.25,1)}50%{transform:scale3d(1.15,.85,1)}65%{transform:scale3d(.95,1.05,1)}75%{transform:scale3d(1.05,.95,1)}to{transform:scaleX(1)}}.animate__rubberBand{animation-name:rubberBand}@keyframes shakeX{0%,to{transform:translateZ(0)}10%,30%,50%,70%,90%{transform:translate3d(-10px,0,0)}20%,40%,60%,80%{transform:translate3d(10px,0,0)}}.animate__shakeX{animation-name:shakeX}@keyframes shakeY{0%,to{transform:translateZ(0)}10%,30%,50%,70%,90%{transform:translate3d(0,-10px,0)}20%,40%,60%,80%{transform:translate3d(0,10px,0)}}.animate__shakeY{animation-name:shakeY}@keyframes headShake{0%{transform:translateX(0)}6.5%{transform:translateX(-6px) rotateY(-9deg)}18.5%{transform:translateX(5px) rotateY(7deg)}31.5%{transform:translateX(-3px) rotateY(-5deg)}43.5%{transform:translateX(2px) rotateY(3deg)}50%{transform:translateX(0)}}.animate__headShake{animation-timing-function:ease-in-out;animation-name:headShake}@keyframes swing{20%{transform:rotate(15deg)}40%{transform:rotate(-10deg)}60%{transform:rotate(5deg)}80%{transform:rotate(-5deg)}to{transform:rotate(0deg)}}.animate__swing{transform-origin:top center;animation-name:swing}@keyframes tada{0%{transform:scaleX(1)}10%,20%{transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{transform:scaleX(1)}}.animate__tada{animation-name:tada}@keyframes wobble{0%{transform:translateZ(0)}15%{transform:translate3d(-25%,0,0) rotate(-5deg)}30%{transform:translate3d(20%,0,0) rotate(3deg)}45%{transform:translate3d(-15%,0,0) rotate(-3deg)}60%{transform:translate3d(10%,0,0) rotate(2deg)}75%{transform:translate3d(-5%,0,0) rotate(-1deg)}to{transform:translateZ(0)}}.animate__wobble{animation-name:wobble}@keyframes jello{0%,11.1%,to{transform:translateZ(0)}22.2%{transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{transform:skewX(6.25deg) skewY(6.25deg)}44.4%{transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{transform:skewX(.390625deg) skewY(.390625deg)}88.8%{transform:skewX(-.1953125deg) skewY(-.1953125deg)}}.animate__jello{animation-name:jello;transform-origin:center}@keyframes heartBeat{0%{transform:scale(1)}14%{transform:scale(1.3)}28%{transform:scale(1)}42%{transform:scale(1.3)}70%{transform:scale(1)}}.animate__heartBeat{animation-name:heartBeat;animation-duration:1.3s;animation-duration:calc(var(--animate-duration)*1.3);animation-timing-function:ease-in-out}@keyframes backInDown{0%{transform:translateY(-1200px) scale(.7);opacity:.7}80%{transform:translateY(0) scale(.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInDown{animation-name:backInDown}@keyframes backInLeft{0%{transform:translateX(-2000px) scale(.7);opacity:.7}80%{transform:translateX(0) scale(.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInLeft{animation-name:backInLeft}@keyframes backInRight{0%{transform:translateX(2000px) scale(.7);opacity:.7}80%{transform:translateX(0) scale(.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInRight{animation-name:backInRight}@keyframes backInUp{0%{transform:translateY(1200px) scale(.7);opacity:.7}80%{transform:translateY(0) scale(.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInUp{animation-name:backInUp}@keyframes backOutDown{0%{transform:scale(1);opacity:1}20%{transform:translateY(0) scale(.7);opacity:.7}to{transform:translateY(700px) scale(.7);opacity:.7}}.animate__backOutDown{animation-name:backOutDown}@keyframes backOutLeft{0%{transform:scale(1);opacity:1}20%{transform:translateX(0) scale(.7);opacity:.7}to{transform:translateX(-2000px) scale(.7);opacity:.7}}.animate__backOutLeft{animation-name:backOutLeft}@keyframes backOutRight{0%{transform:scale(1);opacity:1}20%{transform:translateX(0) scale(.7);opacity:.7}to{transform:translateX(2000px) scale(.7);opacity:.7}}.animate__backOutRight{animation-name:backOutRight}@keyframes backOutUp{0%{transform:scale(1);opacity:1}20%{transform:translateY(0) scale(.7);opacity:.7}to{transform:translateY(-700px) scale(.7);opacity:.7}}.animate__backOutUp{animation-name:backOutUp}@keyframes bounceIn{0%,20%,40%,60%,80%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:scale3d(.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(.97,.97,.97)}to{opacity:1;transform:scaleX(1)}}.animate__bounceIn{animation-duration:.75s;animation-duration:calc(var(--animate-duration)*0.75);animation-name:bounceIn}@keyframes bounceInDown{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;transform:translate3d(0,25px,0) scaleY(.9)}75%{transform:translate3d(0,-10px,0) scaleY(.95)}90%{transform:translate3d(0,5px,0) scaleY(.985)}to{transform:translateZ(0)}}.animate__bounceInDown{animation-name:bounceInDown}@keyframes bounceInLeft{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;transform:translate3d(25px,0,0) scaleX(1)}75%{transform:translate3d(-10px,0,0) scaleX(.98)}90%{transform:translate3d(5px,0,0) scaleX(.995)}to{transform:translateZ(0)}}.animate__bounceInLeft{animation-name:bounceInLeft}@keyframes bounceInRight{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;transform:translate3d(-25px,0,0) scaleX(1)}75%{transform:translate3d(10px,0,0) scaleX(.98)}90%{transform:translate3d(-5px,0,0) scaleX(.995)}to{transform:translateZ(0)}}.animate__bounceInRight{animation-name:bounceInRight}@keyframes bounceInUp{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;transform:translate3d(0,-20px,0) scaleY(.9)}75%{transform:translate3d(0,10px,0) scaleY(.95)}90%{transform:translate3d(0,-5px,0) scaleY(.985)}to{transform:translateZ(0)}}.animate__bounceInUp{animation-name:bounceInUp}@keyframes bounceOut{20%{transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;transform:scale3d(1.1,1.1,1.1)}to{opacity:0;transform:scale3d(.3,.3,.3)}}.animate__bounceOut{animation-duration:.75s;animation-duration:calc(var(--animate-duration)*0.75);animation-name:bounceOut}@keyframes bounceOutDown{20%{transform:translate3d(0,10px,0) scaleY(.985)}40%,45%{opacity:1;transform:translate3d(0,-20px,0) scaleY(.9)}to{opacity:0;transform:translate3d(0,2000px,0) scaleY(3)}}.animate__bounceOutDown{animation-name:bounceOutDown}@keyframes bounceOutLeft{20%{opacity:1;transform:translate3d(20px,0,0) scaleX(.9)}to{opacity:0;transform:translate3d(-2000px,0,0) scaleX(2)}}.animate__bounceOutLeft{animation-name:bounceOutLeft}@keyframes bounceOutRight{20%{opacity:1;transform:translate3d(-20px,0,0) scaleX(.9)}to{opacity:0;transform:translate3d(2000px,0,0) scaleX(2)}}.animate__bounceOutRight{animation-name:bounceOutRight}@keyframes bounceOutUp{20%{transform:translate3d(0,-10px,0) scaleY(.985)}40%,45%{opacity:1;transform:translate3d(0,20px,0) scaleY(.9)}to{opacity:0;transform:translate3d(0,-2000px,0) scaleY(3)}}.animate__bounceOutUp{animation-name:bounceOutUp}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.animate__fadeIn{animation-name:fadeIn}@keyframes fadeInDown{0%{opacity:0;transform:translate3d(0,-100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInDown{animation-name:fadeInDown}@keyframes fadeInDownBig{0%{opacity:0;transform:translate3d(0,-2000px,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInDownBig{animation-name:fadeInDownBig}@keyframes fadeInLeft{0%{opacity:0;transform:translate3d(-100%,0,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInLeft{animation-name:fadeInLeft}@keyframes fadeInLeftBig{0%{opacity:0;transform:translate3d(-2000px,0,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInLeftBig{animation-name:fadeInLeftBig}@keyframes fadeInRight{0%{opacity:0;transform:translate3d(100%,0,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInRight{animation-name:fadeInRight}@keyframes fadeInRightBig{0%{opacity:0;transform:translate3d(2000px,0,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInRightBig{animation-name:fadeInRightBig}@keyframes fadeInUp{0%{opacity:0;transform:translate3d(0,100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInUp{animation-name:fadeInUp}@keyframes fadeInUpBig{0%{opacity:0;transform:translate3d(0,2000px,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInUpBig{animation-name:fadeInUpBig}@keyframes fadeInTopLeft{0%{opacity:0;transform:translate3d(-100%,-100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInTopLeft{animation-name:fadeInTopLeft}@keyframes fadeInTopRight{0%{opacity:0;transform:translate3d(100%,-100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInTopRight{animation-name:fadeInTopRight}@keyframes fadeInBottomLeft{0%{opacity:0;transform:translate3d(-100%,100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInBottomLeft{animation-name:fadeInBottomLeft}@keyframes fadeInBottomRight{0%{opacity:0;transform:translate3d(100%,100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInBottomRight{animation-name:fadeInBottomRight}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.animate__fadeOut{animation-name:fadeOut}@keyframes fadeOutDown{0%{opacity:1}to{opacity:0;transform:translate3d(0,100%,0)}}.animate__fadeOutDown{animation-name:fadeOutDown}@keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;transform:translate3d(0,2000px,0)}}.animate__fadeOutDownBig{animation-name:fadeOutDownBig}@keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;transform:translate3d(-100%,0,0)}}.animate__fadeOutLeft{animation-name:fadeOutLeft}@keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;transform:translate3d(-2000px,0,0)}}.animate__fadeOutLeftBig{animation-name:fadeOutLeftBig}@keyframes fadeOutRight{0%{opacity:1}to{opacity:0;transform:translate3d(100%,0,0)}}.animate__fadeOutRight{animation-name:fadeOutRight}@keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;transform:translate3d(2000px,0,0)}}.animate__fadeOutRightBig{animation-name:fadeOutRightBig}@keyframes fadeOutUp{0%{opacity:1}to{opacity:0;transform:translate3d(0,-100%,0)}}.animate__fadeOutUp{animation-name:fadeOutUp}@keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;transform:translate3d(0,-2000px,0)}}.animate__fadeOutUpBig{animation-name:fadeOutUpBig}@keyframes fadeOutTopLeft{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(-100%,-100%,0)}}.animate__fadeOutTopLeft{animation-name:fadeOutTopLeft}@keyframes fadeOutTopRight{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(100%,-100%,0)}}.animate__fadeOutTopRight{animation-name:fadeOutTopRight}@keyframes fadeOutBottomRight{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(100%,100%,0)}}.animate__fadeOutBottomRight{animation-name:fadeOutBottomRight}@keyframes fadeOutBottomLeft{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(-100%,100%,0)}}.animate__fadeOutBottomLeft{animation-name:fadeOutBottomLeft}@keyframes flip{0%{transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);animation-timing-function:ease-out}40%{transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);animation-timing-function:ease-out}50%{transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);animation-timing-function:ease-in}80%{transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);animation-timing-function:ease-in}to{transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);animation-timing-function:ease-in}}.animate__animated.animate__flip{backface-visibility:visible;animation-name:flip}@keyframes flipInX{0%{transform:perspective(400px) rotateX(90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateX(-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotateX(10deg);opacity:1}80%{transform:perspective(400px) rotateX(-5deg)}to{transform:perspective(400px)}}.animate__flipInX{backface-visibility:visible!important;animation-name:flipInX}@keyframes flipInY{0%{transform:perspective(400px) rotateY(90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateY(-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotateY(10deg);opacity:1}80%{transform:perspective(400px) rotateY(-5deg)}to{transform:perspective(400px)}}.animate__flipInY{backface-visibility:visible!important;animation-name:flipInY}@keyframes flipOutX{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateX(-20deg);opacity:1}to{transform:perspective(400px) rotateX(90deg);opacity:0}}.animate__flipOutX{animation-duration:.75s;animation-duration:calc(var(--animate-duration)*0.75);animation-name:flipOutX;backface-visibility:visible!important}@keyframes flipOutY{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateY(-15deg);opacity:1}to{transform:perspective(400px) rotateY(90deg);opacity:0}}.animate__flipOutY{animation-duration:.75s;animation-duration:calc(var(--animate-duration)*0.75);backface-visibility:visible!important;animation-name:flipOutY}@keyframes lightSpeedInRight{0%{transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{transform:skewX(20deg);opacity:1}80%{transform:skewX(-5deg)}to{transform:translateZ(0)}}.animate__lightSpeedInRight{animation-name:lightSpeedInRight;animation-timing-function:ease-out}@keyframes lightSpeedInLeft{0%{transform:translate3d(-100%,0,0) skewX(30deg);opacity:0}60%{transform:skewX(-20deg);opacity:1}80%{transform:skewX(5deg)}to{transform:translateZ(0)}}.animate__lightSpeedInLeft{animation-name:lightSpeedInLeft;animation-timing-function:ease-out}@keyframes lightSpeedOutRight{0%{opacity:1}to{transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.animate__lightSpeedOutRight{animation-name:lightSpeedOutRight;animation-timing-function:ease-in}@keyframes lightSpeedOutLeft{0%{opacity:1}to{transform:translate3d(-100%,0,0) skewX(-30deg);opacity:0}}.animate__lightSpeedOutLeft{animation-name:lightSpeedOutLeft;animation-timing-function:ease-in}@keyframes rotateIn{0%{transform:rotate(-200deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateIn{animation-name:rotateIn;transform-origin:center}@keyframes rotateInDownLeft{0%{transform:rotate(-45deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInDownLeft{animation-name:rotateInDownLeft;transform-origin:left bottom}@keyframes rotateInDownRight{0%{transform:rotate(45deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInDownRight{animation-name:rotateInDownRight;transform-origin:right bottom}@keyframes rotateInUpLeft{0%{transform:rotate(45deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInUpLeft{animation-name:rotateInUpLeft;transform-origin:left bottom}@keyframes rotateInUpRight{0%{transform:rotate(-90deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInUpRight{animation-name:rotateInUpRight;transform-origin:right bottom}@keyframes rotateOut{0%{opacity:1}to{transform:rotate(200deg);opacity:0}}.animate__rotateOut{animation-name:rotateOut;transform-origin:center}@keyframes rotateOutDownLeft{0%{opacity:1}to{transform:rotate(45deg);opacity:0}}.animate__rotateOutDownLeft{animation-name:rotateOutDownLeft;transform-origin:left bottom}@keyframes rotateOutDownRight{0%{opacity:1}to{transform:rotate(-45deg);opacity:0}}.animate__rotateOutDownRight{animation-name:rotateOutDownRight;transform-origin:right bottom}@keyframes rotateOutUpLeft{0%{opacity:1}to{transform:rotate(-45deg);opacity:0}}.animate__rotateOutUpLeft{animation-name:rotateOutUpLeft;transform-origin:left bottom}@keyframes rotateOutUpRight{0%{opacity:1}to{transform:rotate(90deg);opacity:0}}.animate__rotateOutUpRight{animation-name:rotateOutUpRight;transform-origin:right bottom}@keyframes hinge{0%{animation-timing-function:ease-in-out}20%,60%{transform:rotate(80deg);animation-timing-function:ease-in-out}40%,80%{transform:rotate(60deg);animation-timing-function:ease-in-out;opacity:1}to{transform:translate3d(0,700px,0);opacity:0}}.animate__hinge{animation-duration:2s;animation-duration:calc(var(--animate-duration)*2);animation-name:hinge;transform-origin:top left}@keyframes jackInTheBox{0%{opacity:0;transform:scale(.1) rotate(30deg);transform-origin:center bottom}50%{transform:rotate(-10deg)}70%{transform:rotate(3deg)}to{opacity:1;transform:scale(1)}}.animate__jackInTheBox{animation-name:jackInTheBox}@keyframes rollIn{0%{opacity:0;transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;transform:translateZ(0)}}.animate__rollIn{animation-name:rollIn}@keyframes rollOut{0%{opacity:1}to{opacity:0;transform:translate3d(100%,0,0) rotate(120deg)}}.animate__rollOut{animation-name:rollOut}@keyframes zoomIn{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}.animate__zoomIn{animation-name:zoomIn}@keyframes zoomInDown{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInDown{animation-name:zoomInDown}@keyframes zoomInLeft{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInLeft{animation-name:zoomInLeft}@keyframes zoomInRight{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInRight{animation-name:zoomInRight}@keyframes zoomInUp{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInUp{animation-name:zoomInUp}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:0}}.animate__zoomOut{animation-name:zoomOut}@keyframes zoomOutDown{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutDown{animation-name:zoomOutDown;transform-origin:center bottom}@keyframes zoomOutLeft{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;transform:scale(.1) translate3d(-2000px,0,0)}}.animate__zoomOutLeft{animation-name:zoomOutLeft;transform-origin:left center}@keyframes zoomOutRight{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;transform:scale(.1) translate3d(2000px,0,0)}}.animate__zoomOutRight{animation-name:zoomOutRight;transform-origin:right center}@keyframes zoomOutUp{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutUp{animation-name:zoomOutUp;transform-origin:center bottom}@keyframes slideInDown{0%{transform:translate3d(0,-100%,0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInDown{animation-name:slideInDown}@keyframes slideInLeft{0%{transform:translate3d(-100%,0,0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInLeft{animation-name:slideInLeft}@keyframes slideInRight{0%{transform:translate3d(100%,0,0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInRight{animation-name:slideInRight}@keyframes slideInUp{0%{transform:translate3d(0,100%,0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInUp{animation-name:slideInUp}@keyframes slideOutDown{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0,100%,0)}}.animate__slideOutDown{animation-name:slideOutDown}@keyframes slideOutLeft{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(-100%,0,0)}}.animate__slideOutLeft{animation-name:slideOutLeft}@keyframes slideOutRight{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(100%,0,0)}}.animate__slideOutRight{animation-name:slideOutRight}@keyframes slideOutUp{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0,-100%,0)}}.animate__slideOutUp{animation-name:slideOutUp}