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

.shg-box > .shg-box-content {
  z-index: 4;
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

#s-c1780f4e-bd7a-42d1-9fe0-31ae1386bf29 {
  min-height: 50px;
}








#s-c1780f4e-bd7a-42d1-9fe0-31ae1386bf29 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c1780f4e-bd7a-42d1-9fe0-31ae1386bf29.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

.shg-image-content-wrapper {
  position: relative;
  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 {
  object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

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

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

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

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

.shogun-image-content {
  display: flex;
  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-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 {
  margin: 0 !important;
  overflow: visible;
}

#s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781-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-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 img.shogun-image {
  /* Add background color handling */
  
}

#s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image {
  box-sizing: border-box;
}



.s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image-container {
      position: relative;
    }

    .s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 {
  margin: 0 !important;
  overflow: visible;
}

#s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781-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-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 img.shogun-image {
  /* Add background color handling */
  
}

#s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image {
  box-sizing: border-box;
}



.s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image-container {
      position: relative;
    }

    .s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 {
  margin: 0 !important;
  overflow: visible;
}

#s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781-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-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 img.shogun-image {
  /* Add background color handling */
  
}

#s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image {
  box-sizing: border-box;
}



.s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image-container {
      position: relative;
    }

    .s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 {
  margin: 0 !important;
  overflow: visible;
}

#s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781-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-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 img.shogun-image {
  /* Add background color handling */
  
}

#s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image {
  box-sizing: border-box;
}



.s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image-container {
      position: relative;
    }

    .s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 {
  margin: 0 !important;
  overflow: visible;
}

#s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781-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-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 img.shogun-image {
  /* Add background color handling */
  
}

#s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image {
  box-sizing: border-box;
}



.s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image-container {
      position: relative;
    }

    .s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f8e9fe3e-d3fd-4cad-80eb-45dcbd1d0781 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
.shogun-heading-component h1,
.shogun-heading-component h2,
.shogun-heading-component h3,
.shogun-heading-component h4,
.shogun-heading-component h5,
.shogun-heading-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: #000000;
  font-family: "Inter";
  text-transform: none;
  font-weight: 700;
  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-916797af-3fa0-426f-a7ce-f76f1ceef2b0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-916797af-3fa0-426f-a7ce-f76f1ceef2b0 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-a74ff6c2-fd7e-4bed-afd1-6cfa2e117028 {
  min-height: 50px;
}








#s-a74ff6c2-fd7e-4bed-afd1-6cfa2e117028 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a74ff6c2-fd7e-4bed-afd1-6cfa2e117028.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-751988e6-a707-44c8-81db-e97ffb0ff2bd {
  min-height: 50px;
}








#s-751988e6-a707-44c8-81db-e97ffb0ff2bd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-751988e6-a707-44c8-81db-e97ffb0ff2bd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6 {
  color: #000000;
  font-family: "Inter";
  font-weight: 700;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-theme-text-content p {
  color: #000000;
  font-family: "Inter";
  font-weight: 400;
}

#s-767d98b6-b0be-4ba8-aab3-79630ff472c2 {
  margin-top: -8px;
margin-bottom: -8px;
min-height: 50px;
}








#s-767d98b6-b0be-4ba8-aab3-79630ff472c2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-767d98b6-b0be-4ba8-aab3-79630ff472c2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c79bbd55-1ea6-4ee8-86f5-32893400afe8 {
  padding-left: 2%;
padding-right: 2%;
min-height: 50px;
}








#s-c79bbd55-1ea6-4ee8-86f5-32893400afe8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c79bbd55-1ea6-4ee8-86f5-32893400afe8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

/* 
  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-bf556b6a-558a-4289-8fc2-c53e96c15c59 {
  margin-left: 2%;
margin-right: 2%;
}

@media (min-width: 0px) {
[id="s-bf556b6a-558a-4289-8fc2-c53e96c15c59"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-bf556b6a-558a-4289-8fc2-c53e96c15c59"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-bf556b6a-558a-4289-8fc2-c53e96c15c59"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-bf556b6a-558a-4289-8fc2-c53e96c15c59"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-e29c769a-789b-4623-a701-b79677c2ae69 {
  margin-top: 7px;
margin-bottom: 7px;
max-width: 50px;
aspect-ratio: 1/1;
text-align: center;
}

#s-e29c769a-789b-4623-a701-b79677c2ae69 {
  margin: 0 !important;
  overflow: visible;
}

#s-e29c769a-789b-4623-a701-b79677c2ae69-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-e29c769a-789b-4623-a701-b79677c2ae69 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 7px;
  margin-bottom: 7px;
}

.shg-image-content-margin-container-s-e29c769a-789b-4623-a701-b79677c2ae69 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e29c769a-789b-4623-a701-b79677c2ae69 img.shogun-image {
  /* Add background color handling */
  
}

#s-e29c769a-789b-4623-a701-b79677c2ae69 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e29c769a-789b-4623-a701-b79677c2ae69 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e29c769a-789b-4623-a701-b79677c2ae69 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e29c769a-789b-4623-a701-b79677c2ae69 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e29c769a-789b-4623-a701-b79677c2ae69 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-e29c769a-789b-4623-a701-b79677c2ae69 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e29c769a-789b-4623-a701-b79677c2ae69.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image {
  box-sizing: border-box;
}



.s-e29c769a-789b-4623-a701-b79677c2ae69 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e29c769a-789b-4623-a701-b79677c2ae69 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image-container {
      position: relative;
    }

    .s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e29c769a-789b-4623-a701-b79677c2ae69 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

@media (min-width: 1200px){#s-e29c769a-789b-4623-a701-b79677c2ae69 {
  margin: 0 !important;
  overflow: visible;
}

#s-e29c769a-789b-4623-a701-b79677c2ae69-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-e29c769a-789b-4623-a701-b79677c2ae69 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e29c769a-789b-4623-a701-b79677c2ae69 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e29c769a-789b-4623-a701-b79677c2ae69 img.shogun-image {
  /* Add background color handling */
  
}

#s-e29c769a-789b-4623-a701-b79677c2ae69 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e29c769a-789b-4623-a701-b79677c2ae69 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e29c769a-789b-4623-a701-b79677c2ae69 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e29c769a-789b-4623-a701-b79677c2ae69 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e29c769a-789b-4623-a701-b79677c2ae69 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-e29c769a-789b-4623-a701-b79677c2ae69 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e29c769a-789b-4623-a701-b79677c2ae69.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image {
  box-sizing: border-box;
}



.s-e29c769a-789b-4623-a701-b79677c2ae69 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e29c769a-789b-4623-a701-b79677c2ae69 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image-container {
      position: relative;
    }

    .s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e29c769a-789b-4623-a701-b79677c2ae69 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-e29c769a-789b-4623-a701-b79677c2ae69 {
  margin: 0 !important;
  overflow: visible;
}

#s-e29c769a-789b-4623-a701-b79677c2ae69-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-e29c769a-789b-4623-a701-b79677c2ae69 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e29c769a-789b-4623-a701-b79677c2ae69 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e29c769a-789b-4623-a701-b79677c2ae69 img.shogun-image {
  /* Add background color handling */
  
}

#s-e29c769a-789b-4623-a701-b79677c2ae69 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e29c769a-789b-4623-a701-b79677c2ae69 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e29c769a-789b-4623-a701-b79677c2ae69 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e29c769a-789b-4623-a701-b79677c2ae69 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e29c769a-789b-4623-a701-b79677c2ae69 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-e29c769a-789b-4623-a701-b79677c2ae69 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e29c769a-789b-4623-a701-b79677c2ae69.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image {
  box-sizing: border-box;
}



.s-e29c769a-789b-4623-a701-b79677c2ae69 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e29c769a-789b-4623-a701-b79677c2ae69 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image-container {
      position: relative;
    }

    .s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e29c769a-789b-4623-a701-b79677c2ae69 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-e29c769a-789b-4623-a701-b79677c2ae69 {
  margin: 0 !important;
  overflow: visible;
}

#s-e29c769a-789b-4623-a701-b79677c2ae69-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-e29c769a-789b-4623-a701-b79677c2ae69 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e29c769a-789b-4623-a701-b79677c2ae69 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e29c769a-789b-4623-a701-b79677c2ae69 img.shogun-image {
  /* Add background color handling */
  
}

#s-e29c769a-789b-4623-a701-b79677c2ae69 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e29c769a-789b-4623-a701-b79677c2ae69 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e29c769a-789b-4623-a701-b79677c2ae69 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e29c769a-789b-4623-a701-b79677c2ae69 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e29c769a-789b-4623-a701-b79677c2ae69 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-e29c769a-789b-4623-a701-b79677c2ae69 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e29c769a-789b-4623-a701-b79677c2ae69.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image {
  box-sizing: border-box;
}



.s-e29c769a-789b-4623-a701-b79677c2ae69 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e29c769a-789b-4623-a701-b79677c2ae69 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image-container {
      position: relative;
    }

    .s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e29c769a-789b-4623-a701-b79677c2ae69 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (max-width: 767px){#s-e29c769a-789b-4623-a701-b79677c2ae69 {
  margin: 0 !important;
  overflow: visible;
}

#s-e29c769a-789b-4623-a701-b79677c2ae69-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-e29c769a-789b-4623-a701-b79677c2ae69 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e29c769a-789b-4623-a701-b79677c2ae69 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e29c769a-789b-4623-a701-b79677c2ae69 img.shogun-image {
  /* Add background color handling */
  
}

#s-e29c769a-789b-4623-a701-b79677c2ae69 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e29c769a-789b-4623-a701-b79677c2ae69 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e29c769a-789b-4623-a701-b79677c2ae69 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e29c769a-789b-4623-a701-b79677c2ae69 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e29c769a-789b-4623-a701-b79677c2ae69 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-e29c769a-789b-4623-a701-b79677c2ae69 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e29c769a-789b-4623-a701-b79677c2ae69.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image {
  box-sizing: border-box;
}



.s-e29c769a-789b-4623-a701-b79677c2ae69 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e29c769a-789b-4623-a701-b79677c2ae69 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image-container {
      position: relative;
    }

    .s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e29c769a-789b-4623-a701-b79677c2ae69.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e29c769a-789b-4623-a701-b79677c2ae69 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}
#s-6f9ceb66-66f5-48ba-b1b3-3290ac4342e7 {
  margin-top: -10px;
margin-bottom: -10px;
}

#s-cf90e28a-fe13-415d-8a30-ec68643216e2 {
  margin-top: -10px;
margin-bottom: -10px;
}

#s-9ac3b114-4e19-47a3-892c-5f5117d84648 {
  margin-top: 7px;
margin-bottom: 7px;
max-width: 50px;
aspect-ratio: 1/1;
text-align: center;
}

#s-9ac3b114-4e19-47a3-892c-5f5117d84648 {
  margin: 0 !important;
  overflow: visible;
}

#s-9ac3b114-4e19-47a3-892c-5f5117d84648-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-9ac3b114-4e19-47a3-892c-5f5117d84648 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 7px;
  margin-bottom: 7px;
}

.shg-image-content-margin-container-s-9ac3b114-4e19-47a3-892c-5f5117d84648 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9ac3b114-4e19-47a3-892c-5f5117d84648 img.shogun-image {
  /* Add background color handling */
  
}

#s-9ac3b114-4e19-47a3-892c-5f5117d84648 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9ac3b114-4e19-47a3-892c-5f5117d84648 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9ac3b114-4e19-47a3-892c-5f5117d84648 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9ac3b114-4e19-47a3-892c-5f5117d84648 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9ac3b114-4e19-47a3-892c-5f5117d84648 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-9ac3b114-4e19-47a3-892c-5f5117d84648 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9ac3b114-4e19-47a3-892c-5f5117d84648.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image {
  box-sizing: border-box;
}



.s-9ac3b114-4e19-47a3-892c-5f5117d84648 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9ac3b114-4e19-47a3-892c-5f5117d84648 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image-container {
      position: relative;
    }

    .s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9ac3b114-4e19-47a3-892c-5f5117d84648 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

@media (min-width: 1200px){#s-9ac3b114-4e19-47a3-892c-5f5117d84648 {
  margin: 0 !important;
  overflow: visible;
}

#s-9ac3b114-4e19-47a3-892c-5f5117d84648-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-9ac3b114-4e19-47a3-892c-5f5117d84648 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9ac3b114-4e19-47a3-892c-5f5117d84648 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9ac3b114-4e19-47a3-892c-5f5117d84648 img.shogun-image {
  /* Add background color handling */
  
}

#s-9ac3b114-4e19-47a3-892c-5f5117d84648 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9ac3b114-4e19-47a3-892c-5f5117d84648 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9ac3b114-4e19-47a3-892c-5f5117d84648 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9ac3b114-4e19-47a3-892c-5f5117d84648 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9ac3b114-4e19-47a3-892c-5f5117d84648 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-9ac3b114-4e19-47a3-892c-5f5117d84648 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9ac3b114-4e19-47a3-892c-5f5117d84648.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image {
  box-sizing: border-box;
}



.s-9ac3b114-4e19-47a3-892c-5f5117d84648 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9ac3b114-4e19-47a3-892c-5f5117d84648 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image-container {
      position: relative;
    }

    .s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9ac3b114-4e19-47a3-892c-5f5117d84648 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-9ac3b114-4e19-47a3-892c-5f5117d84648 {
  margin: 0 !important;
  overflow: visible;
}

#s-9ac3b114-4e19-47a3-892c-5f5117d84648-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-9ac3b114-4e19-47a3-892c-5f5117d84648 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9ac3b114-4e19-47a3-892c-5f5117d84648 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9ac3b114-4e19-47a3-892c-5f5117d84648 img.shogun-image {
  /* Add background color handling */
  
}

#s-9ac3b114-4e19-47a3-892c-5f5117d84648 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9ac3b114-4e19-47a3-892c-5f5117d84648 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9ac3b114-4e19-47a3-892c-5f5117d84648 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9ac3b114-4e19-47a3-892c-5f5117d84648 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9ac3b114-4e19-47a3-892c-5f5117d84648 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-9ac3b114-4e19-47a3-892c-5f5117d84648 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9ac3b114-4e19-47a3-892c-5f5117d84648.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image {
  box-sizing: border-box;
}



.s-9ac3b114-4e19-47a3-892c-5f5117d84648 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9ac3b114-4e19-47a3-892c-5f5117d84648 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image-container {
      position: relative;
    }

    .s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9ac3b114-4e19-47a3-892c-5f5117d84648 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-9ac3b114-4e19-47a3-892c-5f5117d84648 {
  margin: 0 !important;
  overflow: visible;
}

#s-9ac3b114-4e19-47a3-892c-5f5117d84648-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-9ac3b114-4e19-47a3-892c-5f5117d84648 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9ac3b114-4e19-47a3-892c-5f5117d84648 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9ac3b114-4e19-47a3-892c-5f5117d84648 img.shogun-image {
  /* Add background color handling */
  
}

#s-9ac3b114-4e19-47a3-892c-5f5117d84648 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9ac3b114-4e19-47a3-892c-5f5117d84648 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9ac3b114-4e19-47a3-892c-5f5117d84648 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9ac3b114-4e19-47a3-892c-5f5117d84648 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9ac3b114-4e19-47a3-892c-5f5117d84648 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-9ac3b114-4e19-47a3-892c-5f5117d84648 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9ac3b114-4e19-47a3-892c-5f5117d84648.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image {
  box-sizing: border-box;
}



.s-9ac3b114-4e19-47a3-892c-5f5117d84648 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9ac3b114-4e19-47a3-892c-5f5117d84648 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image-container {
      position: relative;
    }

    .s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9ac3b114-4e19-47a3-892c-5f5117d84648 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (max-width: 767px){#s-9ac3b114-4e19-47a3-892c-5f5117d84648 {
  margin: 0 !important;
  overflow: visible;
}

#s-9ac3b114-4e19-47a3-892c-5f5117d84648-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-9ac3b114-4e19-47a3-892c-5f5117d84648 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9ac3b114-4e19-47a3-892c-5f5117d84648 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9ac3b114-4e19-47a3-892c-5f5117d84648 img.shogun-image {
  /* Add background color handling */
  
}

#s-9ac3b114-4e19-47a3-892c-5f5117d84648 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9ac3b114-4e19-47a3-892c-5f5117d84648 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9ac3b114-4e19-47a3-892c-5f5117d84648 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9ac3b114-4e19-47a3-892c-5f5117d84648 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9ac3b114-4e19-47a3-892c-5f5117d84648 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-9ac3b114-4e19-47a3-892c-5f5117d84648 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9ac3b114-4e19-47a3-892c-5f5117d84648.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image {
  box-sizing: border-box;
}



.s-9ac3b114-4e19-47a3-892c-5f5117d84648 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9ac3b114-4e19-47a3-892c-5f5117d84648 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image-container {
      position: relative;
    }

    .s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9ac3b114-4e19-47a3-892c-5f5117d84648.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9ac3b114-4e19-47a3-892c-5f5117d84648 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}
#s-4bcce14d-8dc7-46fa-a5fd-30bc01304ac5 {
  margin-top: -10px;
margin-bottom: -10px;
}

#s-ec44a004-7977-4b07-beb3-205a0c8022b7 {
  margin-top: -10px;
margin-bottom: -10px;
}

#s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 {
  margin-top: 7px;
margin-bottom: 7px;
max-width: 50px;
aspect-ratio: 1/1;
text-align: center;
}

#s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 {
  margin: 0 !important;
  overflow: visible;
}

#s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0-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-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 7px;
  margin-bottom: 7px;
}

.shg-image-content-margin-container-s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 img.shogun-image {
  /* Add background color handling */
  
}

#s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image {
  box-sizing: border-box;
}



.s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image-container {
      position: relative;
    }

    .s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

@media (min-width: 1200px){#s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 {
  margin: 0 !important;
  overflow: visible;
}

#s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0-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-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 img.shogun-image {
  /* Add background color handling */
  
}

#s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image {
  box-sizing: border-box;
}



.s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image-container {
      position: relative;
    }

    .s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 {
  margin: 0 !important;
  overflow: visible;
}

#s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0-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-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 img.shogun-image {
  /* Add background color handling */
  
}

#s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image {
  box-sizing: border-box;
}



.s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image-container {
      position: relative;
    }

    .s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 {
  margin: 0 !important;
  overflow: visible;
}

#s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0-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-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 img.shogun-image {
  /* Add background color handling */
  
}

#s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image {
  box-sizing: border-box;
}



.s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image-container {
      position: relative;
    }

    .s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (max-width: 767px){#s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 {
  margin: 0 !important;
  overflow: visible;
}

#s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0-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-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 img.shogun-image {
  /* Add background color handling */
  
}

#s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image {
  box-sizing: border-box;
}



.s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image-container {
      position: relative;
    }

    .s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}
#s-f3ee9218-3ae1-4976-a25b-b1a3432c34b7 {
  margin-top: -10px;
margin-bottom: -10px;
}

#s-9a369996-ff21-45f7-ad9c-2dd72dc1d809 {
  margin-top: -10px;
margin-bottom: -10px;
}

#s-826d1adf-2270-431b-9550-e9e53677f882 {
  margin-top: 7px;
margin-bottom: 7px;
max-width: 50px;
aspect-ratio: 1/1;
text-align: center;
}

#s-826d1adf-2270-431b-9550-e9e53677f882 {
  margin: 0 !important;
  overflow: visible;
}

#s-826d1adf-2270-431b-9550-e9e53677f882-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-826d1adf-2270-431b-9550-e9e53677f882 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 7px;
  margin-bottom: 7px;
}

.shg-image-content-margin-container-s-826d1adf-2270-431b-9550-e9e53677f882 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-826d1adf-2270-431b-9550-e9e53677f882 img.shogun-image {
  /* Add background color handling */
  
}

#s-826d1adf-2270-431b-9550-e9e53677f882 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-826d1adf-2270-431b-9550-e9e53677f882 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-826d1adf-2270-431b-9550-e9e53677f882 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-826d1adf-2270-431b-9550-e9e53677f882 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-826d1adf-2270-431b-9550-e9e53677f882 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-826d1adf-2270-431b-9550-e9e53677f882 .shogun-image-content {
  
    justify-content: center;
  
}

.s-826d1adf-2270-431b-9550-e9e53677f882.shg-align-container {
  display: flex;
  justify-content: center
}

.s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image {
  box-sizing: border-box;
}



.s-826d1adf-2270-431b-9550-e9e53677f882 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-826d1adf-2270-431b-9550-e9e53677f882 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image-container {
      position: relative;
    }

    .s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-826d1adf-2270-431b-9550-e9e53677f882 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

@media (min-width: 1200px){#s-826d1adf-2270-431b-9550-e9e53677f882 {
  margin: 0 !important;
  overflow: visible;
}

#s-826d1adf-2270-431b-9550-e9e53677f882-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-826d1adf-2270-431b-9550-e9e53677f882 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-826d1adf-2270-431b-9550-e9e53677f882 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-826d1adf-2270-431b-9550-e9e53677f882 img.shogun-image {
  /* Add background color handling */
  
}

#s-826d1adf-2270-431b-9550-e9e53677f882 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-826d1adf-2270-431b-9550-e9e53677f882 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-826d1adf-2270-431b-9550-e9e53677f882 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-826d1adf-2270-431b-9550-e9e53677f882 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-826d1adf-2270-431b-9550-e9e53677f882 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-826d1adf-2270-431b-9550-e9e53677f882 .shogun-image-content {
  
    justify-content: center;
  
}

.s-826d1adf-2270-431b-9550-e9e53677f882.shg-align-container {
  display: flex;
  justify-content: center
}

.s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image {
  box-sizing: border-box;
}



.s-826d1adf-2270-431b-9550-e9e53677f882 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-826d1adf-2270-431b-9550-e9e53677f882 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image-container {
      position: relative;
    }

    .s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-826d1adf-2270-431b-9550-e9e53677f882 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-826d1adf-2270-431b-9550-e9e53677f882 {
  margin: 0 !important;
  overflow: visible;
}

#s-826d1adf-2270-431b-9550-e9e53677f882-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-826d1adf-2270-431b-9550-e9e53677f882 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-826d1adf-2270-431b-9550-e9e53677f882 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-826d1adf-2270-431b-9550-e9e53677f882 img.shogun-image {
  /* Add background color handling */
  
}

#s-826d1adf-2270-431b-9550-e9e53677f882 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-826d1adf-2270-431b-9550-e9e53677f882 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-826d1adf-2270-431b-9550-e9e53677f882 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-826d1adf-2270-431b-9550-e9e53677f882 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-826d1adf-2270-431b-9550-e9e53677f882 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-826d1adf-2270-431b-9550-e9e53677f882 .shogun-image-content {
  
    justify-content: center;
  
}

.s-826d1adf-2270-431b-9550-e9e53677f882.shg-align-container {
  display: flex;
  justify-content: center
}

.s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image {
  box-sizing: border-box;
}



.s-826d1adf-2270-431b-9550-e9e53677f882 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-826d1adf-2270-431b-9550-e9e53677f882 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image-container {
      position: relative;
    }

    .s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-826d1adf-2270-431b-9550-e9e53677f882 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-826d1adf-2270-431b-9550-e9e53677f882 {
  margin: 0 !important;
  overflow: visible;
}

#s-826d1adf-2270-431b-9550-e9e53677f882-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-826d1adf-2270-431b-9550-e9e53677f882 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-826d1adf-2270-431b-9550-e9e53677f882 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-826d1adf-2270-431b-9550-e9e53677f882 img.shogun-image {
  /* Add background color handling */
  
}

#s-826d1adf-2270-431b-9550-e9e53677f882 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-826d1adf-2270-431b-9550-e9e53677f882 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-826d1adf-2270-431b-9550-e9e53677f882 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-826d1adf-2270-431b-9550-e9e53677f882 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-826d1adf-2270-431b-9550-e9e53677f882 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-826d1adf-2270-431b-9550-e9e53677f882 .shogun-image-content {
  
    justify-content: center;
  
}

.s-826d1adf-2270-431b-9550-e9e53677f882.shg-align-container {
  display: flex;
  justify-content: center
}

.s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image {
  box-sizing: border-box;
}



.s-826d1adf-2270-431b-9550-e9e53677f882 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-826d1adf-2270-431b-9550-e9e53677f882 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image-container {
      position: relative;
    }

    .s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-826d1adf-2270-431b-9550-e9e53677f882 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (max-width: 767px){#s-826d1adf-2270-431b-9550-e9e53677f882 {
  margin: 0 !important;
  overflow: visible;
}

#s-826d1adf-2270-431b-9550-e9e53677f882-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-826d1adf-2270-431b-9550-e9e53677f882 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-826d1adf-2270-431b-9550-e9e53677f882 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-826d1adf-2270-431b-9550-e9e53677f882 img.shogun-image {
  /* Add background color handling */
  
}

#s-826d1adf-2270-431b-9550-e9e53677f882 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-826d1adf-2270-431b-9550-e9e53677f882 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-826d1adf-2270-431b-9550-e9e53677f882 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-826d1adf-2270-431b-9550-e9e53677f882 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-826d1adf-2270-431b-9550-e9e53677f882 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-826d1adf-2270-431b-9550-e9e53677f882 .shogun-image-content {
  
    justify-content: center;
  
}

.s-826d1adf-2270-431b-9550-e9e53677f882.shg-align-container {
  display: flex;
  justify-content: center
}

.s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image {
  box-sizing: border-box;
}



.s-826d1adf-2270-431b-9550-e9e53677f882 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-826d1adf-2270-431b-9550-e9e53677f882 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image-container {
      position: relative;
    }

    .s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-826d1adf-2270-431b-9550-e9e53677f882.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-826d1adf-2270-431b-9550-e9e53677f882 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}
#s-3ff3a9ff-fdd1-4b9d-9d16-0b54e8d50602 {
  margin-top: -10px;
margin-bottom: -10px;
}

#s-3ae3f106-9bdd-40d1-b4c3-064ba89c3496 {
  margin-top: -10px;
margin-bottom: -10px;
}

#s-9719db8d-83f8-45da-a026-7bc13dd1bcdb {
  margin-top: 7px;
margin-bottom: 7px;
max-width: 50px;
aspect-ratio: 1/1;
text-align: center;
}

#s-9719db8d-83f8-45da-a026-7bc13dd1bcdb {
  margin: 0 !important;
  overflow: visible;
}

#s-9719db8d-83f8-45da-a026-7bc13dd1bcdb-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-9719db8d-83f8-45da-a026-7bc13dd1bcdb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 7px;
  margin-bottom: 7px;
}

.shg-image-content-margin-container-s-9719db8d-83f8-45da-a026-7bc13dd1bcdb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9719db8d-83f8-45da-a026-7bc13dd1bcdb img.shogun-image {
  /* Add background color handling */
  
}

#s-9719db8d-83f8-45da-a026-7bc13dd1bcdb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9719db8d-83f8-45da-a026-7bc13dd1bcdb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9719db8d-83f8-45da-a026-7bc13dd1bcdb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9719db8d-83f8-45da-a026-7bc13dd1bcdb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9719db8d-83f8-45da-a026-7bc13dd1bcdb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-9719db8d-83f8-45da-a026-7bc13dd1bcdb .shogun-image-content {
  
    justify-content: center;
  
}

.s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image {
  box-sizing: border-box;
}



.s-9719db8d-83f8-45da-a026-7bc13dd1bcdb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9719db8d-83f8-45da-a026-7bc13dd1bcdb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image-container {
      position: relative;
    }

    .s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9719db8d-83f8-45da-a026-7bc13dd1bcdb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

@media (min-width: 1200px){#s-9719db8d-83f8-45da-a026-7bc13dd1bcdb {
  margin: 0 !important;
  overflow: visible;
}

#s-9719db8d-83f8-45da-a026-7bc13dd1bcdb-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-9719db8d-83f8-45da-a026-7bc13dd1bcdb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9719db8d-83f8-45da-a026-7bc13dd1bcdb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9719db8d-83f8-45da-a026-7bc13dd1bcdb img.shogun-image {
  /* Add background color handling */
  
}

#s-9719db8d-83f8-45da-a026-7bc13dd1bcdb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9719db8d-83f8-45da-a026-7bc13dd1bcdb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9719db8d-83f8-45da-a026-7bc13dd1bcdb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9719db8d-83f8-45da-a026-7bc13dd1bcdb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9719db8d-83f8-45da-a026-7bc13dd1bcdb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-9719db8d-83f8-45da-a026-7bc13dd1bcdb .shogun-image-content {
  
    justify-content: center;
  
}

.s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image {
  box-sizing: border-box;
}



.s-9719db8d-83f8-45da-a026-7bc13dd1bcdb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9719db8d-83f8-45da-a026-7bc13dd1bcdb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image-container {
      position: relative;
    }

    .s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9719db8d-83f8-45da-a026-7bc13dd1bcdb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-9719db8d-83f8-45da-a026-7bc13dd1bcdb {
  margin: 0 !important;
  overflow: visible;
}

#s-9719db8d-83f8-45da-a026-7bc13dd1bcdb-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-9719db8d-83f8-45da-a026-7bc13dd1bcdb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9719db8d-83f8-45da-a026-7bc13dd1bcdb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9719db8d-83f8-45da-a026-7bc13dd1bcdb img.shogun-image {
  /* Add background color handling */
  
}

#s-9719db8d-83f8-45da-a026-7bc13dd1bcdb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9719db8d-83f8-45da-a026-7bc13dd1bcdb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9719db8d-83f8-45da-a026-7bc13dd1bcdb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9719db8d-83f8-45da-a026-7bc13dd1bcdb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9719db8d-83f8-45da-a026-7bc13dd1bcdb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-9719db8d-83f8-45da-a026-7bc13dd1bcdb .shogun-image-content {
  
    justify-content: center;
  
}

.s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image {
  box-sizing: border-box;
}



.s-9719db8d-83f8-45da-a026-7bc13dd1bcdb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9719db8d-83f8-45da-a026-7bc13dd1bcdb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image-container {
      position: relative;
    }

    .s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9719db8d-83f8-45da-a026-7bc13dd1bcdb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-9719db8d-83f8-45da-a026-7bc13dd1bcdb {
  margin: 0 !important;
  overflow: visible;
}

#s-9719db8d-83f8-45da-a026-7bc13dd1bcdb-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-9719db8d-83f8-45da-a026-7bc13dd1bcdb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9719db8d-83f8-45da-a026-7bc13dd1bcdb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9719db8d-83f8-45da-a026-7bc13dd1bcdb img.shogun-image {
  /* Add background color handling */
  
}

#s-9719db8d-83f8-45da-a026-7bc13dd1bcdb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9719db8d-83f8-45da-a026-7bc13dd1bcdb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9719db8d-83f8-45da-a026-7bc13dd1bcdb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9719db8d-83f8-45da-a026-7bc13dd1bcdb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9719db8d-83f8-45da-a026-7bc13dd1bcdb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-9719db8d-83f8-45da-a026-7bc13dd1bcdb .shogun-image-content {
  
    justify-content: center;
  
}

.s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image {
  box-sizing: border-box;
}



.s-9719db8d-83f8-45da-a026-7bc13dd1bcdb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9719db8d-83f8-45da-a026-7bc13dd1bcdb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image-container {
      position: relative;
    }

    .s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9719db8d-83f8-45da-a026-7bc13dd1bcdb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (max-width: 767px){#s-9719db8d-83f8-45da-a026-7bc13dd1bcdb {
  margin: 0 !important;
  overflow: visible;
}

#s-9719db8d-83f8-45da-a026-7bc13dd1bcdb-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-9719db8d-83f8-45da-a026-7bc13dd1bcdb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9719db8d-83f8-45da-a026-7bc13dd1bcdb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9719db8d-83f8-45da-a026-7bc13dd1bcdb img.shogun-image {
  /* Add background color handling */
  
}

#s-9719db8d-83f8-45da-a026-7bc13dd1bcdb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9719db8d-83f8-45da-a026-7bc13dd1bcdb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9719db8d-83f8-45da-a026-7bc13dd1bcdb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9719db8d-83f8-45da-a026-7bc13dd1bcdb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9719db8d-83f8-45da-a026-7bc13dd1bcdb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-9719db8d-83f8-45da-a026-7bc13dd1bcdb .shogun-image-content {
  
    justify-content: center;
  
}

.s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image {
  box-sizing: border-box;
}



.s-9719db8d-83f8-45da-a026-7bc13dd1bcdb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9719db8d-83f8-45da-a026-7bc13dd1bcdb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image-container {
      position: relative;
    }

    .s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9719db8d-83f8-45da-a026-7bc13dd1bcdb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9719db8d-83f8-45da-a026-7bc13dd1bcdb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}
#s-5043ee55-6272-4c5b-9222-1f2e0abbc593 {
  margin-top: -10px;
margin-bottom: -10px;
}

#s-4562e581-d770-4b51-b230-b3b89a9b66aa {
  margin-top: -10px;
margin-bottom: -10px;
}

#s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 {
  margin-top: 7px;
margin-bottom: 7px;
max-width: 50px;
aspect-ratio: 1/1;
text-align: center;
}

#s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 {
  margin: 0 !important;
  overflow: visible;
}

#s-752a66e8-8b66-4458-ab98-54ef96e6c3a0-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-752a66e8-8b66-4458-ab98-54ef96e6c3a0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 7px;
  margin-bottom: 7px;
}

.shg-image-content-margin-container-s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 img.shogun-image {
  /* Add background color handling */
  
}

#s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image {
  box-sizing: border-box;
}



.s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image-container {
      position: relative;
    }

    .s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

@media (min-width: 1200px){#s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 {
  margin: 0 !important;
  overflow: visible;
}

#s-752a66e8-8b66-4458-ab98-54ef96e6c3a0-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-752a66e8-8b66-4458-ab98-54ef96e6c3a0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 img.shogun-image {
  /* Add background color handling */
  
}

#s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image {
  box-sizing: border-box;
}



.s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image-container {
      position: relative;
    }

    .s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 {
  margin: 0 !important;
  overflow: visible;
}

#s-752a66e8-8b66-4458-ab98-54ef96e6c3a0-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-752a66e8-8b66-4458-ab98-54ef96e6c3a0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 img.shogun-image {
  /* Add background color handling */
  
}

#s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image {
  box-sizing: border-box;
}



.s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image-container {
      position: relative;
    }

    .s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 {
  margin: 0 !important;
  overflow: visible;
}

#s-752a66e8-8b66-4458-ab98-54ef96e6c3a0-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-752a66e8-8b66-4458-ab98-54ef96e6c3a0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 img.shogun-image {
  /* Add background color handling */
  
}

#s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image {
  box-sizing: border-box;
}



.s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image-container {
      position: relative;
    }

    .s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (max-width: 767px){#s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 {
  margin: 0 !important;
  overflow: visible;
}

#s-752a66e8-8b66-4458-ab98-54ef96e6c3a0-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-752a66e8-8b66-4458-ab98-54ef96e6c3a0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 img.shogun-image {
  /* Add background color handling */
  
}

#s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image {
  box-sizing: border-box;
}



.s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image-container {
      position: relative;
    }

    .s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-752a66e8-8b66-4458-ab98-54ef96e6c3a0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}
#s-8fdf2c92-3239-437c-b447-4e111fc6ff24 {
  margin-top: -10px;
margin-bottom: -10px;
}

#s-1e562f51-4737-465c-b8ad-5ebc611d71f3 {
  margin-top: -10px;
margin-bottom: -10px;
}

#s-c2fbafc8-9f46-45f4-a1e6-111f524493d5 {
  min-height: 50px;
}








#s-c2fbafc8-9f46-45f4-a1e6-111f524493d5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c2fbafc8-9f46-45f4-a1e6-111f524493d5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-26a63bf6-0e4e-4284-b47d-a7f0e05771c2 {
  min-height: 50px;
}








#s-26a63bf6-0e4e-4284-b47d-a7f0e05771c2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-26a63bf6-0e4e-4284-b47d-a7f0e05771c2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ead3098c-d6d1-4f28-85d4-b580e853fed8 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-ead3098c-d6d1-4f28-85d4-b580e853fed8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ead3098c-d6d1-4f28-85d4-b580e853fed8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-9bbfd450-59f0-458f-88ab-d024e3d524d0 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 0%;
padding-left: 3.5%;
padding-bottom: 0%;
padding-right: 3.5%;
}

#s-9bbfd450-59f0-458f-88ab-d024e3d524d0 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(0, 0, 0, 0.06);
}

#s-9bbfd450-59f0-458f-88ab-d024e3d524d0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 15px;
}

#s-9bbfd450-59f0-458f-88ab-d024e3d524d0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 1);
}

#s-9bbfd450-59f0-458f-88ab-d024e3d524d0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

#s-9bbfd450-59f0-458f-88ab-d024e3d524d0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 1);
  text-align: left;
  font-family: Inter;
  font-weight: 600;
  font-style: ;
  font-size: 21px;
}

#s-9bbfd450-59f0-458f-88ab-d024e3d524d0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 21px;
}
@media (min-width: 0px) {
[id="s-54898d88-1bda-46ac-a912-1810f98ef37c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-54898d88-1bda-46ac-a912-1810f98ef37c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-54898d88-1bda-46ac-a912-1810f98ef37c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-54898d88-1bda-46ac-a912-1810f98ef37c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-54898d88-1bda-46ac-a912-1810f98ef37c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-54898d88-1bda-46ac-a912-1810f98ef37c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-54898d88-1bda-46ac-a912-1810f98ef37c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  max-width: 1920px;
aspect-ratio: 1920/1095;
text-align: center;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  margin: 0 !important;
  overflow: visible;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf-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-a52fcb11-5da2-44b0-a35f-14419d193edf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  /* Add background color handling */
  
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-a52fcb11-5da2-44b0-a35f-14419d193edf .shogun-image-content {
  
    justify-content: center;
  
}

.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image {
  box-sizing: border-box;
}



.s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a52fcb11-5da2-44b0-a35f-14419d193edf {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
      position: relative;
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

@media (min-width: 1200px){#s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  margin: 0 !important;
  overflow: visible;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf-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-a52fcb11-5da2-44b0-a35f-14419d193edf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  /* Add background color handling */
  
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-a52fcb11-5da2-44b0-a35f-14419d193edf .shogun-image-content {
  
    justify-content: center;
  
}

.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image {
  box-sizing: border-box;
}



.s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a52fcb11-5da2-44b0-a35f-14419d193edf {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
      position: relative;
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  margin: 0 !important;
  overflow: visible;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf-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-a52fcb11-5da2-44b0-a35f-14419d193edf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  /* Add background color handling */
  
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-a52fcb11-5da2-44b0-a35f-14419d193edf .shogun-image-content {
  
    justify-content: center;
  
}

.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image {
  box-sizing: border-box;
}



.s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a52fcb11-5da2-44b0-a35f-14419d193edf {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
      position: relative;
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  margin: 0 !important;
  overflow: visible;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf-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-a52fcb11-5da2-44b0-a35f-14419d193edf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  /* Add background color handling */
  
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-a52fcb11-5da2-44b0-a35f-14419d193edf .shogun-image-content {
  
    justify-content: center;
  
}

.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image {
  box-sizing: border-box;
}



.s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a52fcb11-5da2-44b0-a35f-14419d193edf {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
      position: relative;
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (max-width: 767px){#s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  margin: 0 !important;
  overflow: visible;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf-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-a52fcb11-5da2-44b0-a35f-14419d193edf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  /* Add background color handling */
  
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-a52fcb11-5da2-44b0-a35f-14419d193edf .shogun-image-content {
  
    justify-content: center;
  
}

.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image {
  box-sizing: border-box;
}



.s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a52fcb11-5da2-44b0-a35f-14419d193edf {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
      position: relative;
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}
#s-03b5c7bd-5615-4187-a40a-5b1218d43e85 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 1%;
padding-right: 1%;
}

#s-72aed6d4-10c3-4b71-960c-f37cf5975c65 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 20px;
padding-left: 1%;
padding-bottom: 20px;
padding-right: 1%;
}

@media (min-width: 0px) {
[id="s-4feb676d-3d8d-4983-9947-1f2a75335573"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4feb676d-3d8d-4983-9947-1f2a75335573"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4feb676d-3d8d-4983-9947-1f2a75335573"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4feb676d-3d8d-4983-9947-1f2a75335573"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-bc0d376e-334a-41e7-b68b-1db7278acd81"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bc0d376e-334a-41e7-b68b-1db7278acd81"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-bc0d376e-334a-41e7-b68b-1db7278acd81"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-bc0d376e-334a-41e7-b68b-1db7278acd81"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-bc0d376e-334a-41e7-b68b-1db7278acd81"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-bc0d376e-334a-41e7-b68b-1db7278acd81"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-bc0d376e-334a-41e7-b68b-1db7278acd81"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-c3095b64-3628-4592-897b-e5373f0bf6b3 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-5daa577d-f884-424a-b61e-af44222d4d39"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5daa577d-f884-424a-b61e-af44222d4d39"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5daa577d-f884-424a-b61e-af44222d4d39"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5daa577d-f884-424a-b61e-af44222d4d39"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5daa577d-f884-424a-b61e-af44222d4d39"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5daa577d-f884-424a-b61e-af44222d4d39"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5daa577d-f884-424a-b61e-af44222d4d39"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-5f826d8b-a70b-4b6d-aeaf-d8c2f68cb969 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-1f404133-c899-4195-9105-824e01f71c4f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1f404133-c899-4195-9105-824e01f71c4f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1f404133-c899-4195-9105-824e01f71c4f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1f404133-c899-4195-9105-824e01f71c4f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-1edf682d-73c7-48fd-aef2-e717d0dbee80"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1edf682d-73c7-48fd-aef2-e717d0dbee80"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1edf682d-73c7-48fd-aef2-e717d0dbee80"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1edf682d-73c7-48fd-aef2-e717d0dbee80"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1edf682d-73c7-48fd-aef2-e717d0dbee80"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1edf682d-73c7-48fd-aef2-e717d0dbee80"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1edf682d-73c7-48fd-aef2-e717d0dbee80"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-117ff71c-8b2c-41b0-908a-a8fb454ff256 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-64bcec11-d1e7-42a4-9d37-e1b9b7343d1d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-64bcec11-d1e7-42a4-9d37-e1b9b7343d1d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-64bcec11-d1e7-42a4-9d37-e1b9b7343d1d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-64bcec11-d1e7-42a4-9d37-e1b9b7343d1d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-64bcec11-d1e7-42a4-9d37-e1b9b7343d1d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-64bcec11-d1e7-42a4-9d37-e1b9b7343d1d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-64bcec11-d1e7-42a4-9d37-e1b9b7343d1d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-d7618d5a-5575-4b39-86bb-69be1fb7754b {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-b933a787-dca2-4087-94b9-5348445b0442 {
  min-height: 50px;
}








#s-b933a787-dca2-4087-94b9-5348445b0442 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b933a787-dca2-4087-94b9-5348445b0442.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0a05ac82-3240-4f5e-883c-d69fc1992324 {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-0a05ac82-3240-4f5e-883c-d69fc1992324 {
  margin: 0 !important;
  overflow: visible;
}

#s-0a05ac82-3240-4f5e-883c-d69fc1992324-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-0a05ac82-3240-4f5e-883c-d69fc1992324 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0a05ac82-3240-4f5e-883c-d69fc1992324 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0a05ac82-3240-4f5e-883c-d69fc1992324 img.shogun-image {
  /* Add background color handling */
  
}

#s-0a05ac82-3240-4f5e-883c-d69fc1992324 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0a05ac82-3240-4f5e-883c-d69fc1992324 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0a05ac82-3240-4f5e-883c-d69fc1992324 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0a05ac82-3240-4f5e-883c-d69fc1992324 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0a05ac82-3240-4f5e-883c-d69fc1992324 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0a05ac82-3240-4f5e-883c-d69fc1992324 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0a05ac82-3240-4f5e-883c-d69fc1992324.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image {
  box-sizing: border-box;
}



.s-0a05ac82-3240-4f5e-883c-d69fc1992324 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0a05ac82-3240-4f5e-883c-d69fc1992324 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image-container {
      position: relative;
    }

    .s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0a05ac82-3240-4f5e-883c-d69fc1992324 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-0a05ac82-3240-4f5e-883c-d69fc1992324 {
  margin: 0 !important;
  overflow: visible;
}

#s-0a05ac82-3240-4f5e-883c-d69fc1992324-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-0a05ac82-3240-4f5e-883c-d69fc1992324 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0a05ac82-3240-4f5e-883c-d69fc1992324 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0a05ac82-3240-4f5e-883c-d69fc1992324 img.shogun-image {
  /* Add background color handling */
  
}

#s-0a05ac82-3240-4f5e-883c-d69fc1992324 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0a05ac82-3240-4f5e-883c-d69fc1992324 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0a05ac82-3240-4f5e-883c-d69fc1992324 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0a05ac82-3240-4f5e-883c-d69fc1992324 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0a05ac82-3240-4f5e-883c-d69fc1992324 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0a05ac82-3240-4f5e-883c-d69fc1992324 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0a05ac82-3240-4f5e-883c-d69fc1992324.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image {
  box-sizing: border-box;
}



.s-0a05ac82-3240-4f5e-883c-d69fc1992324 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0a05ac82-3240-4f5e-883c-d69fc1992324 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image-container {
      position: relative;
    }

    .s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0a05ac82-3240-4f5e-883c-d69fc1992324 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-0a05ac82-3240-4f5e-883c-d69fc1992324 {
  margin: 0 !important;
  overflow: visible;
}

#s-0a05ac82-3240-4f5e-883c-d69fc1992324-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-0a05ac82-3240-4f5e-883c-d69fc1992324 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0a05ac82-3240-4f5e-883c-d69fc1992324 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0a05ac82-3240-4f5e-883c-d69fc1992324 img.shogun-image {
  /* Add background color handling */
  
}

#s-0a05ac82-3240-4f5e-883c-d69fc1992324 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0a05ac82-3240-4f5e-883c-d69fc1992324 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0a05ac82-3240-4f5e-883c-d69fc1992324 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0a05ac82-3240-4f5e-883c-d69fc1992324 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0a05ac82-3240-4f5e-883c-d69fc1992324 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0a05ac82-3240-4f5e-883c-d69fc1992324 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0a05ac82-3240-4f5e-883c-d69fc1992324.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image {
  box-sizing: border-box;
}



.s-0a05ac82-3240-4f5e-883c-d69fc1992324 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0a05ac82-3240-4f5e-883c-d69fc1992324 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image-container {
      position: relative;
    }

    .s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0a05ac82-3240-4f5e-883c-d69fc1992324 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-0a05ac82-3240-4f5e-883c-d69fc1992324 {
  margin: 0 !important;
  overflow: visible;
}

#s-0a05ac82-3240-4f5e-883c-d69fc1992324-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-0a05ac82-3240-4f5e-883c-d69fc1992324 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0a05ac82-3240-4f5e-883c-d69fc1992324 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0a05ac82-3240-4f5e-883c-d69fc1992324 img.shogun-image {
  /* Add background color handling */
  
}

#s-0a05ac82-3240-4f5e-883c-d69fc1992324 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0a05ac82-3240-4f5e-883c-d69fc1992324 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0a05ac82-3240-4f5e-883c-d69fc1992324 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0a05ac82-3240-4f5e-883c-d69fc1992324 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0a05ac82-3240-4f5e-883c-d69fc1992324 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0a05ac82-3240-4f5e-883c-d69fc1992324 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0a05ac82-3240-4f5e-883c-d69fc1992324.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image {
  box-sizing: border-box;
}



.s-0a05ac82-3240-4f5e-883c-d69fc1992324 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0a05ac82-3240-4f5e-883c-d69fc1992324 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image-container {
      position: relative;
    }

    .s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0a05ac82-3240-4f5e-883c-d69fc1992324 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-0a05ac82-3240-4f5e-883c-d69fc1992324 {
  margin: 0 !important;
  overflow: visible;
}

#s-0a05ac82-3240-4f5e-883c-d69fc1992324-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-0a05ac82-3240-4f5e-883c-d69fc1992324 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0a05ac82-3240-4f5e-883c-d69fc1992324 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0a05ac82-3240-4f5e-883c-d69fc1992324 img.shogun-image {
  /* Add background color handling */
  
}

#s-0a05ac82-3240-4f5e-883c-d69fc1992324 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0a05ac82-3240-4f5e-883c-d69fc1992324 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0a05ac82-3240-4f5e-883c-d69fc1992324 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0a05ac82-3240-4f5e-883c-d69fc1992324 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0a05ac82-3240-4f5e-883c-d69fc1992324 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0a05ac82-3240-4f5e-883c-d69fc1992324 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0a05ac82-3240-4f5e-883c-d69fc1992324.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image {
  box-sizing: border-box;
}



.s-0a05ac82-3240-4f5e-883c-d69fc1992324 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0a05ac82-3240-4f5e-883c-d69fc1992324 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image-container {
      position: relative;
    }

    .s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0a05ac82-3240-4f5e-883c-d69fc1992324.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0a05ac82-3240-4f5e-883c-d69fc1992324 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
@media (min-width: 0px) {
[id="s-61b3b4ec-2b75-4807-947b-4759285e8550"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-61b3b4ec-2b75-4807-947b-4759285e8550"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-61b3b4ec-2b75-4807-947b-4759285e8550"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-61b3b4ec-2b75-4807-947b-4759285e8550"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-4efb85ed-a543-438d-83d0-97cbd941f297"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4efb85ed-a543-438d-83d0-97cbd941f297"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-4efb85ed-a543-438d-83d0-97cbd941f297"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4efb85ed-a543-438d-83d0-97cbd941f297"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-4efb85ed-a543-438d-83d0-97cbd941f297"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4efb85ed-a543-438d-83d0-97cbd941f297"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-4efb85ed-a543-438d-83d0-97cbd941f297"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-0c095e80-61b7-4bb7-9b38-f0eb310c6913 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-69944e2d-2bbc-4ed9-80f0-37128f151c4f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-69944e2d-2bbc-4ed9-80f0-37128f151c4f"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-69944e2d-2bbc-4ed9-80f0-37128f151c4f"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-69944e2d-2bbc-4ed9-80f0-37128f151c4f"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-69944e2d-2bbc-4ed9-80f0-37128f151c4f"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-69944e2d-2bbc-4ed9-80f0-37128f151c4f"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-69944e2d-2bbc-4ed9-80f0-37128f151c4f"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-96b4075f-b722-49d5-93b5-56d99c388850 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-ba6ec712-395c-4604-b5c9-0b60886f38fd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ba6ec712-395c-4604-b5c9-0b60886f38fd"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ba6ec712-395c-4604-b5c9-0b60886f38fd"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ba6ec712-395c-4604-b5c9-0b60886f38fd"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-30613d24-348a-4a38-bd98-bf738d9a3087"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-30613d24-348a-4a38-bd98-bf738d9a3087"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-30613d24-348a-4a38-bd98-bf738d9a3087"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-30613d24-348a-4a38-bd98-bf738d9a3087"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-30613d24-348a-4a38-bd98-bf738d9a3087"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-30613d24-348a-4a38-bd98-bf738d9a3087"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-30613d24-348a-4a38-bd98-bf738d9a3087"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-b6334532-6951-4f5d-b3a6-c62614fc7a93 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-c0db458b-02f9-4fa5-ab87-556d0a1854c1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c0db458b-02f9-4fa5-ab87-556d0a1854c1"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c0db458b-02f9-4fa5-ab87-556d0a1854c1"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c0db458b-02f9-4fa5-ab87-556d0a1854c1"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c0db458b-02f9-4fa5-ab87-556d0a1854c1"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c0db458b-02f9-4fa5-ab87-556d0a1854c1"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c0db458b-02f9-4fa5-ab87-556d0a1854c1"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-3d1e5da9-12ad-4362-b0a9-3cd6ebdd03e9 {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-d35a47be-9039-435d-a820-19229fb53489 {
  max-width: 1200px;
aspect-ratio: 1200/430;
text-align: center;
}

#s-d35a47be-9039-435d-a820-19229fb53489 {
  margin: 0 !important;
  overflow: visible;
}

#s-d35a47be-9039-435d-a820-19229fb53489-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-d35a47be-9039-435d-a820-19229fb53489 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d35a47be-9039-435d-a820-19229fb53489 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d35a47be-9039-435d-a820-19229fb53489 img.shogun-image {
  /* Add background color handling */
  
}

#s-d35a47be-9039-435d-a820-19229fb53489 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d35a47be-9039-435d-a820-19229fb53489 .shg-image-content-wrapper {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }

    #s-d35a47be-9039-435d-a820-19229fb53489 .shogun-image-link {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d35a47be-9039-435d-a820-19229fb53489 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d35a47be-9039-435d-a820-19229fb53489.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d35a47be-9039-435d-a820-19229fb53489 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-d35a47be-9039-435d-a820-19229fb53489.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-d35a47be-9039-435d-a820-19229fb53489 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d35a47be-9039-435d-a820-19229fb53489.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d35a47be-9039-435d-a820-19229fb53489.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d35a47be-9039-435d-a820-19229fb53489.shogun-image {
  box-sizing: border-box;
}



.s-d35a47be-9039-435d-a820-19229fb53489 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d35a47be-9039-435d-a820-19229fb53489 {
      --shg-aspect-ratio: calc(1200/430); 
    }

    .s-d35a47be-9039-435d-a820-19229fb53489.shogun-image-container {
      position: relative;
    }

    .s-d35a47be-9039-435d-a820-19229fb53489.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d35a47be-9039-435d-a820-19229fb53489.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d35a47be-9039-435d-a820-19229fb53489 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

@media (min-width: 1200px){#s-d35a47be-9039-435d-a820-19229fb53489 {
  margin: 0 !important;
  overflow: visible;
}

#s-d35a47be-9039-435d-a820-19229fb53489-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-d35a47be-9039-435d-a820-19229fb53489 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d35a47be-9039-435d-a820-19229fb53489 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d35a47be-9039-435d-a820-19229fb53489 img.shogun-image {
  /* Add background color handling */
  
}

#s-d35a47be-9039-435d-a820-19229fb53489 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d35a47be-9039-435d-a820-19229fb53489 .shg-image-content-wrapper {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }

    #s-d35a47be-9039-435d-a820-19229fb53489 .shogun-image-link {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d35a47be-9039-435d-a820-19229fb53489 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d35a47be-9039-435d-a820-19229fb53489.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d35a47be-9039-435d-a820-19229fb53489 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-d35a47be-9039-435d-a820-19229fb53489.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-d35a47be-9039-435d-a820-19229fb53489 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d35a47be-9039-435d-a820-19229fb53489.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d35a47be-9039-435d-a820-19229fb53489.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d35a47be-9039-435d-a820-19229fb53489.shogun-image {
  box-sizing: border-box;
}



.s-d35a47be-9039-435d-a820-19229fb53489 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d35a47be-9039-435d-a820-19229fb53489 {
      --shg-aspect-ratio: calc(1200/430); 
    }

    .s-d35a47be-9039-435d-a820-19229fb53489.shogun-image-container {
      position: relative;
    }

    .s-d35a47be-9039-435d-a820-19229fb53489.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d35a47be-9039-435d-a820-19229fb53489.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d35a47be-9039-435d-a820-19229fb53489 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-d35a47be-9039-435d-a820-19229fb53489 {
  margin: 0 !important;
  overflow: visible;
}

#s-d35a47be-9039-435d-a820-19229fb53489-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-d35a47be-9039-435d-a820-19229fb53489 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d35a47be-9039-435d-a820-19229fb53489 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d35a47be-9039-435d-a820-19229fb53489 img.shogun-image {
  /* Add background color handling */
  
}

#s-d35a47be-9039-435d-a820-19229fb53489 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d35a47be-9039-435d-a820-19229fb53489 .shg-image-content-wrapper {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }

    #s-d35a47be-9039-435d-a820-19229fb53489 .shogun-image-link {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d35a47be-9039-435d-a820-19229fb53489 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d35a47be-9039-435d-a820-19229fb53489.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d35a47be-9039-435d-a820-19229fb53489 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-d35a47be-9039-435d-a820-19229fb53489.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-d35a47be-9039-435d-a820-19229fb53489 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d35a47be-9039-435d-a820-19229fb53489.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d35a47be-9039-435d-a820-19229fb53489.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d35a47be-9039-435d-a820-19229fb53489.shogun-image {
  box-sizing: border-box;
}



.s-d35a47be-9039-435d-a820-19229fb53489 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d35a47be-9039-435d-a820-19229fb53489 {
      --shg-aspect-ratio: calc(1200/430); 
    }

    .s-d35a47be-9039-435d-a820-19229fb53489.shogun-image-container {
      position: relative;
    }

    .s-d35a47be-9039-435d-a820-19229fb53489.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d35a47be-9039-435d-a820-19229fb53489.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d35a47be-9039-435d-a820-19229fb53489 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-d35a47be-9039-435d-a820-19229fb53489 {
  margin: 0 !important;
  overflow: visible;
}

#s-d35a47be-9039-435d-a820-19229fb53489-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-d35a47be-9039-435d-a820-19229fb53489 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d35a47be-9039-435d-a820-19229fb53489 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d35a47be-9039-435d-a820-19229fb53489 img.shogun-image {
  /* Add background color handling */
  
}

#s-d35a47be-9039-435d-a820-19229fb53489 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d35a47be-9039-435d-a820-19229fb53489 .shg-image-content-wrapper {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }

    #s-d35a47be-9039-435d-a820-19229fb53489 .shogun-image-link {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d35a47be-9039-435d-a820-19229fb53489 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d35a47be-9039-435d-a820-19229fb53489.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d35a47be-9039-435d-a820-19229fb53489 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-d35a47be-9039-435d-a820-19229fb53489.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-d35a47be-9039-435d-a820-19229fb53489 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d35a47be-9039-435d-a820-19229fb53489.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d35a47be-9039-435d-a820-19229fb53489.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d35a47be-9039-435d-a820-19229fb53489.shogun-image {
  box-sizing: border-box;
}



.s-d35a47be-9039-435d-a820-19229fb53489 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d35a47be-9039-435d-a820-19229fb53489 {
      --shg-aspect-ratio: calc(1200/430); 
    }

    .s-d35a47be-9039-435d-a820-19229fb53489.shogun-image-container {
      position: relative;
    }

    .s-d35a47be-9039-435d-a820-19229fb53489.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d35a47be-9039-435d-a820-19229fb53489.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d35a47be-9039-435d-a820-19229fb53489 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

}@media (max-width: 767px){#s-d35a47be-9039-435d-a820-19229fb53489 {
  margin: 0 !important;
  overflow: visible;
}

#s-d35a47be-9039-435d-a820-19229fb53489-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-d35a47be-9039-435d-a820-19229fb53489 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d35a47be-9039-435d-a820-19229fb53489 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d35a47be-9039-435d-a820-19229fb53489 img.shogun-image {
  /* Add background color handling */
  
}

#s-d35a47be-9039-435d-a820-19229fb53489 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d35a47be-9039-435d-a820-19229fb53489 .shg-image-content-wrapper {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }

    #s-d35a47be-9039-435d-a820-19229fb53489 .shogun-image-link {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d35a47be-9039-435d-a820-19229fb53489 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d35a47be-9039-435d-a820-19229fb53489.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d35a47be-9039-435d-a820-19229fb53489 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-d35a47be-9039-435d-a820-19229fb53489.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-d35a47be-9039-435d-a820-19229fb53489 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d35a47be-9039-435d-a820-19229fb53489.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d35a47be-9039-435d-a820-19229fb53489.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d35a47be-9039-435d-a820-19229fb53489.shogun-image {
  box-sizing: border-box;
}



.s-d35a47be-9039-435d-a820-19229fb53489 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d35a47be-9039-435d-a820-19229fb53489 {
      --shg-aspect-ratio: calc(1200/430); 
    }

    .s-d35a47be-9039-435d-a820-19229fb53489.shogun-image-container {
      position: relative;
    }

    .s-d35a47be-9039-435d-a820-19229fb53489.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d35a47be-9039-435d-a820-19229fb53489.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d35a47be-9039-435d-a820-19229fb53489 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

}
.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 {
  font-weight: 400;
  font-family: "Inter";
}

.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-ddbd2636-a44b-4336-a422-4841b7bee960 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-ddbd2636-a44b-4336-a422-4841b7bee960:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ddbd2636-a44b-4336-a422-4841b7bee960:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-ddbd2636-a44b-4336-a422-4841b7bee960 {
  margin-top: 0px;
margin-left: 5%;
margin-bottom: 0px;
margin-right: 5%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 32px;
text-align: left;
}
}

  #s-ddbd2636-a44b-4336-a422-4841b7bee960-root {
    text-align: center;
  }


#s-ddbd2636-a44b-4336-a422-4841b7bee960.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ddbd2636-a44b-4336-a422-4841b7bee960-root {
    text-align: left;
  }


#s-ddbd2636-a44b-4336-a422-4841b7bee960.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ddbd2636-a44b-4336-a422-4841b7bee960-root {
    text-align: center;
  }


#s-ddbd2636-a44b-4336-a422-4841b7bee960.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ddbd2636-a44b-4336-a422-4841b7bee960-root {
    text-align: center;
  }


#s-ddbd2636-a44b-4336-a422-4841b7bee960.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ddbd2636-a44b-4336-a422-4841b7bee960-root {
    text-align: center;
  }


#s-ddbd2636-a44b-4336-a422-4841b7bee960.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 {
  max-width: 1500px;
aspect-ratio: 1500/563;
text-align: center;
}

#s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 {
  margin: 0 !important;
  overflow: visible;
}

#s-4feeadf0-4f90-43ff-bbaf-028fb245ec86-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-4feeadf0-4f90-43ff-bbaf-028fb245ec86 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 img.shogun-image {
  /* Add background color handling */
  
}

#s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image {
  box-sizing: border-box;
}



.s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image-container {
      position: relative;
    }

    .s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 {
  margin: 0 !important;
  overflow: visible;
}

#s-4feeadf0-4f90-43ff-bbaf-028fb245ec86-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-4feeadf0-4f90-43ff-bbaf-028fb245ec86 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 img.shogun-image {
  /* Add background color handling */
  
}

#s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image {
  box-sizing: border-box;
}



.s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image-container {
      position: relative;
    }

    .s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 {
  margin: 0 !important;
  overflow: visible;
}

#s-4feeadf0-4f90-43ff-bbaf-028fb245ec86-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-4feeadf0-4f90-43ff-bbaf-028fb245ec86 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 img.shogun-image {
  /* Add background color handling */
  
}

#s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image {
  box-sizing: border-box;
}



.s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image-container {
      position: relative;
    }

    .s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 {
  margin: 0 !important;
  overflow: visible;
}

#s-4feeadf0-4f90-43ff-bbaf-028fb245ec86-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-4feeadf0-4f90-43ff-bbaf-028fb245ec86 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 img.shogun-image {
  /* Add background color handling */
  
}

#s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image {
  box-sizing: border-box;
}



.s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image-container {
      position: relative;
    }

    .s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 {
  margin: 0 !important;
  overflow: visible;
}

#s-4feeadf0-4f90-43ff-bbaf-028fb245ec86-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-4feeadf0-4f90-43ff-bbaf-028fb245ec86 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 img.shogun-image {
  /* Add background color handling */
  
}

#s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image {
  box-sizing: border-box;
}



.s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image-container {
      position: relative;
    }

    .s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4feeadf0-4f90-43ff-bbaf-028fb245ec86.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4feeadf0-4f90-43ff-bbaf-028fb245ec86 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
@media (min-width: 0px) {
[id="s-9f506687-043f-4947-968b-8f7e62713445"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9f506687-043f-4947-968b-8f7e62713445"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9f506687-043f-4947-968b-8f7e62713445"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9f506687-043f-4947-968b-8f7e62713445"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-df8e57e7-f9c2-492b-9074-0c83a7a7195a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-df8e57e7-f9c2-492b-9074-0c83a7a7195a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-df8e57e7-f9c2-492b-9074-0c83a7a7195a"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-df8e57e7-f9c2-492b-9074-0c83a7a7195a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-df8e57e7-f9c2-492b-9074-0c83a7a7195a"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-df8e57e7-f9c2-492b-9074-0c83a7a7195a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-df8e57e7-f9c2-492b-9074-0c83a7a7195a"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-d772055e-9376-419b-9c80-c8c91fd4701f {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-b023d30c-ffc7-4ae5-abb7-f974fd8c5dcb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b023d30c-ffc7-4ae5-abb7-f974fd8c5dcb"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b023d30c-ffc7-4ae5-abb7-f974fd8c5dcb"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b023d30c-ffc7-4ae5-abb7-f974fd8c5dcb"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b023d30c-ffc7-4ae5-abb7-f974fd8c5dcb"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b023d30c-ffc7-4ae5-abb7-f974fd8c5dcb"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b023d30c-ffc7-4ae5-abb7-f974fd8c5dcb"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-cde445f1-9179-4985-b026-b9789c4385fb {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-44a3baba-6781-4d35-ba56-71fcd62a16db {
  min-height: 50px;
}








#s-44a3baba-6781-4d35-ba56-71fcd62a16db > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-44a3baba-6781-4d35-ba56-71fcd62a16db.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: 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;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@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 {
  -webkit-animation: fadeIn 0.5s;
  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-54dcc743-abb1-4420-9e22-e4d9973acbb0 {
  text-align: left;
}


  #s-54dcc743-abb1-4420-9e22-e4d9973acbb0 .shogun-tabs > li > .shogun-tab-box {
    background: #fff;
    border: 1px solid #DDDDDD;
  }
  #s-54dcc743-abb1-4420-9e22-e4d9973acbb0 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: #F4F4F4;
    border: 1px solid #ddd;
  }
#s-54dcc743-abb1-4420-9e22-e4d9973acbb0 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: #50b3da;
  font-family: Inter;
  font-weight: ;
  font-style: ;
  font-size: 18px;
}

#s-54dcc743-abb1-4420-9e22-e4d9973acbb0 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: #555;
}

#s-54dcc743-abb1-4420-9e22-e4d9973acbb0 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: #F4F4F4;
}

#s-54dcc743-abb1-4420-9e22-e4d9973acbb0 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid #ddd;
}

.shogun-video {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.shogun-video-16x9 {
  padding-bottom: 56.25%;
}

.shogun-video-4x3 {
  padding-bottom: 75%;
}

.shogun-video-embed {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#s-7990b9a7-0ca1-4312-88d7-0c44e565cbd7 {
  margin-left: 2%;
margin-right: 2%;
}

#s-94aebe11-e058-436a-9e24-146fd68fe996 {
  margin-left: 2%;
margin-right: 2%;
padding-top: 20px;
padding-bottom: 20px;
}

.shg-hr-wrapper {
  padding: 30px 0;
}

.shg-hr-wrapper hr {
  margin: 0;
  border: 0;
  width: 100%;
}

#s-0002a962-e966-44d7-9bc5-91622bc6468a {
  margin-top: -10px;
margin-bottom: -10px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-0002a962-e966-44d7-9bc5-91622bc6468a hr {
  border-top: 1px solid #ddd;
}

@media (min-width: 0px) {
[id="s-d76d8862-c8fc-4016-acd2-d951d104f473"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d76d8862-c8fc-4016-acd2-d951d104f473"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d76d8862-c8fc-4016-acd2-d951d104f473"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d76d8862-c8fc-4016-acd2-d951d104f473"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-20dc0f21-9064-4684-9d88-ffa093a03393"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-20dc0f21-9064-4684-9d88-ffa093a03393"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-20dc0f21-9064-4684-9d88-ffa093a03393"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-20dc0f21-9064-4684-9d88-ffa093a03393"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-20dc0f21-9064-4684-9d88-ffa093a03393"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-20dc0f21-9064-4684-9d88-ffa093a03393"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-20dc0f21-9064-4684-9d88-ffa093a03393"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-e7a54214-36fb-4bc5-bea1-89202cfabe82 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-180307da-c36b-462b-8cf3-64229aeb8b99"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-180307da-c36b-462b-8cf3-64229aeb8b99"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-180307da-c36b-462b-8cf3-64229aeb8b99"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-180307da-c36b-462b-8cf3-64229aeb8b99"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-180307da-c36b-462b-8cf3-64229aeb8b99"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-180307da-c36b-462b-8cf3-64229aeb8b99"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-180307da-c36b-462b-8cf3-64229aeb8b99"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-1578aab8-3382-4e6e-8c04-92ee34ffe936 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-c4871019-26c3-465b-8438-a0d8da9fd5cc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c4871019-26c3-465b-8438-a0d8da9fd5cc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c4871019-26c3-465b-8438-a0d8da9fd5cc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c4871019-26c3-465b-8438-a0d8da9fd5cc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-fe7fafee-5920-475c-80fb-82275eb03e98"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fe7fafee-5920-475c-80fb-82275eb03e98"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-fe7fafee-5920-475c-80fb-82275eb03e98"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-fe7fafee-5920-475c-80fb-82275eb03e98"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-fe7fafee-5920-475c-80fb-82275eb03e98"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-fe7fafee-5920-475c-80fb-82275eb03e98"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-fe7fafee-5920-475c-80fb-82275eb03e98"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-d0dd7174-f138-4946-975f-4721267cb59f {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-7967ff47-8683-465a-9c60-5114c9805065"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7967ff47-8683-465a-9c60-5114c9805065"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7967ff47-8683-465a-9c60-5114c9805065"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7967ff47-8683-465a-9c60-5114c9805065"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7967ff47-8683-465a-9c60-5114c9805065"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7967ff47-8683-465a-9c60-5114c9805065"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7967ff47-8683-465a-9c60-5114c9805065"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-2bfbefa4-b81f-4175-aacd-a7730fccd6d6 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-98e70483-e0a6-4783-923a-56b44f6d6062"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-98e70483-e0a6-4783-923a-56b44f6d6062"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-98e70483-e0a6-4783-923a-56b44f6d6062"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-98e70483-e0a6-4783-923a-56b44f6d6062"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-ec6ed0ba-0ff3-4979-a2a7-22ca641d0ff8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ec6ed0ba-0ff3-4979-a2a7-22ca641d0ff8"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ec6ed0ba-0ff3-4979-a2a7-22ca641d0ff8"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ec6ed0ba-0ff3-4979-a2a7-22ca641d0ff8"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ec6ed0ba-0ff3-4979-a2a7-22ca641d0ff8"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ec6ed0ba-0ff3-4979-a2a7-22ca641d0ff8"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ec6ed0ba-0ff3-4979-a2a7-22ca641d0ff8"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-4be374e7-ab43-411b-afa9-6166dfed37af {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-51c7c5e6-30eb-4497-b475-0c27c255d1b3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-51c7c5e6-30eb-4497-b475-0c27c255d1b3"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-51c7c5e6-30eb-4497-b475-0c27c255d1b3"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-51c7c5e6-30eb-4497-b475-0c27c255d1b3"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-51c7c5e6-30eb-4497-b475-0c27c255d1b3"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-51c7c5e6-30eb-4497-b475-0c27c255d1b3"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-51c7c5e6-30eb-4497-b475-0c27c255d1b3"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-fe6a1d08-04e3-4c74-a022-7280e3c6ef9a {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-d6a2735e-67c2-482e-91d5-15f408bc7d8b"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-d6a2735e-67c2-482e-91d5-15f408bc7d8b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-d6a2735e-67c2-482e-91d5-15f408bc7d8b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-d6a2735e-67c2-482e-91d5-15f408bc7d8b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a {
  margin: 0 !important;
  overflow: visible;
}

#s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a-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-64d097c3-4ba8-4d09-86ab-760d2d2ba30a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a img.shogun-image {
  /* Add background color handling */
  
}

#s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a .shogun-image-content {
  
    justify-content: center;
  
}

.s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image {
  box-sizing: border-box;
}



.s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image-container {
      position: relative;
    }

    .s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a {
  margin: 0 !important;
  overflow: visible;
}

#s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a-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-64d097c3-4ba8-4d09-86ab-760d2d2ba30a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a img.shogun-image {
  /* Add background color handling */
  
}

#s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a .shogun-image-content {
  
    justify-content: center;
  
}

.s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image {
  box-sizing: border-box;
}



.s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image-container {
      position: relative;
    }

    .s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a {
  margin: 0 !important;
  overflow: visible;
}

#s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a-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-64d097c3-4ba8-4d09-86ab-760d2d2ba30a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a img.shogun-image {
  /* Add background color handling */
  
}

#s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a .shogun-image-content {
  
    justify-content: center;
  
}

.s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image {
  box-sizing: border-box;
}



.s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image-container {
      position: relative;
    }

    .s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a {
  margin: 0 !important;
  overflow: visible;
}

#s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a-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-64d097c3-4ba8-4d09-86ab-760d2d2ba30a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a img.shogun-image {
  /* Add background color handling */
  
}

#s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a .shogun-image-content {
  
    justify-content: center;
  
}

.s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image {
  box-sizing: border-box;
}



.s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image-container {
      position: relative;
    }

    .s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a {
  margin: 0 !important;
  overflow: visible;
}

#s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a-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-64d097c3-4ba8-4d09-86ab-760d2d2ba30a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a img.shogun-image {
  /* Add background color handling */
  
}

#s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a .shogun-image-content {
  
    justify-content: center;
  
}

.s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image {
  box-sizing: border-box;
}



.s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image-container {
      position: relative;
    }

    .s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-64d097c3-4ba8-4d09-86ab-760d2d2ba30a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-c5cc2aed-1760-46dc-8555-5c137caaab71 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-c5cc2aed-1760-46dc-8555-5c137caaab71 {
  margin: 0 !important;
  overflow: visible;
}

#s-c5cc2aed-1760-46dc-8555-5c137caaab71-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-c5cc2aed-1760-46dc-8555-5c137caaab71 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c5cc2aed-1760-46dc-8555-5c137caaab71 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c5cc2aed-1760-46dc-8555-5c137caaab71 img.shogun-image {
  /* Add background color handling */
  
}

#s-c5cc2aed-1760-46dc-8555-5c137caaab71 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c5cc2aed-1760-46dc-8555-5c137caaab71 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c5cc2aed-1760-46dc-8555-5c137caaab71 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c5cc2aed-1760-46dc-8555-5c137caaab71 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c5cc2aed-1760-46dc-8555-5c137caaab71 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-c5cc2aed-1760-46dc-8555-5c137caaab71 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c5cc2aed-1760-46dc-8555-5c137caaab71.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image {
  box-sizing: border-box;
}



.s-c5cc2aed-1760-46dc-8555-5c137caaab71 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c5cc2aed-1760-46dc-8555-5c137caaab71 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image-container {
      position: relative;
    }

    .s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c5cc2aed-1760-46dc-8555-5c137caaab71 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-c5cc2aed-1760-46dc-8555-5c137caaab71 {
  margin: 0 !important;
  overflow: visible;
}

#s-c5cc2aed-1760-46dc-8555-5c137caaab71-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-c5cc2aed-1760-46dc-8555-5c137caaab71 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c5cc2aed-1760-46dc-8555-5c137caaab71 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c5cc2aed-1760-46dc-8555-5c137caaab71 img.shogun-image {
  /* Add background color handling */
  
}

#s-c5cc2aed-1760-46dc-8555-5c137caaab71 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c5cc2aed-1760-46dc-8555-5c137caaab71 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c5cc2aed-1760-46dc-8555-5c137caaab71 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c5cc2aed-1760-46dc-8555-5c137caaab71 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c5cc2aed-1760-46dc-8555-5c137caaab71 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-c5cc2aed-1760-46dc-8555-5c137caaab71 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c5cc2aed-1760-46dc-8555-5c137caaab71.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image {
  box-sizing: border-box;
}



.s-c5cc2aed-1760-46dc-8555-5c137caaab71 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c5cc2aed-1760-46dc-8555-5c137caaab71 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image-container {
      position: relative;
    }

    .s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c5cc2aed-1760-46dc-8555-5c137caaab71 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-c5cc2aed-1760-46dc-8555-5c137caaab71 {
  margin: 0 !important;
  overflow: visible;
}

#s-c5cc2aed-1760-46dc-8555-5c137caaab71-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-c5cc2aed-1760-46dc-8555-5c137caaab71 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c5cc2aed-1760-46dc-8555-5c137caaab71 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c5cc2aed-1760-46dc-8555-5c137caaab71 img.shogun-image {
  /* Add background color handling */
  
}

#s-c5cc2aed-1760-46dc-8555-5c137caaab71 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c5cc2aed-1760-46dc-8555-5c137caaab71 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c5cc2aed-1760-46dc-8555-5c137caaab71 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c5cc2aed-1760-46dc-8555-5c137caaab71 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c5cc2aed-1760-46dc-8555-5c137caaab71 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-c5cc2aed-1760-46dc-8555-5c137caaab71 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c5cc2aed-1760-46dc-8555-5c137caaab71.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image {
  box-sizing: border-box;
}



.s-c5cc2aed-1760-46dc-8555-5c137caaab71 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c5cc2aed-1760-46dc-8555-5c137caaab71 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image-container {
      position: relative;
    }

    .s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c5cc2aed-1760-46dc-8555-5c137caaab71 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-c5cc2aed-1760-46dc-8555-5c137caaab71 {
  margin: 0 !important;
  overflow: visible;
}

#s-c5cc2aed-1760-46dc-8555-5c137caaab71-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-c5cc2aed-1760-46dc-8555-5c137caaab71 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c5cc2aed-1760-46dc-8555-5c137caaab71 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c5cc2aed-1760-46dc-8555-5c137caaab71 img.shogun-image {
  /* Add background color handling */
  
}

#s-c5cc2aed-1760-46dc-8555-5c137caaab71 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c5cc2aed-1760-46dc-8555-5c137caaab71 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c5cc2aed-1760-46dc-8555-5c137caaab71 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c5cc2aed-1760-46dc-8555-5c137caaab71 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c5cc2aed-1760-46dc-8555-5c137caaab71 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-c5cc2aed-1760-46dc-8555-5c137caaab71 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c5cc2aed-1760-46dc-8555-5c137caaab71.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image {
  box-sizing: border-box;
}



.s-c5cc2aed-1760-46dc-8555-5c137caaab71 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c5cc2aed-1760-46dc-8555-5c137caaab71 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image-container {
      position: relative;
    }

    .s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c5cc2aed-1760-46dc-8555-5c137caaab71 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-c5cc2aed-1760-46dc-8555-5c137caaab71 {
  margin: 0 !important;
  overflow: visible;
}

#s-c5cc2aed-1760-46dc-8555-5c137caaab71-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-c5cc2aed-1760-46dc-8555-5c137caaab71 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c5cc2aed-1760-46dc-8555-5c137caaab71 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c5cc2aed-1760-46dc-8555-5c137caaab71 img.shogun-image {
  /* Add background color handling */
  
}

#s-c5cc2aed-1760-46dc-8555-5c137caaab71 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c5cc2aed-1760-46dc-8555-5c137caaab71 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c5cc2aed-1760-46dc-8555-5c137caaab71 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c5cc2aed-1760-46dc-8555-5c137caaab71 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c5cc2aed-1760-46dc-8555-5c137caaab71 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-c5cc2aed-1760-46dc-8555-5c137caaab71 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c5cc2aed-1760-46dc-8555-5c137caaab71.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image {
  box-sizing: border-box;
}



.s-c5cc2aed-1760-46dc-8555-5c137caaab71 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c5cc2aed-1760-46dc-8555-5c137caaab71 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image-container {
      position: relative;
    }

    .s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c5cc2aed-1760-46dc-8555-5c137caaab71.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c5cc2aed-1760-46dc-8555-5c137caaab71 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-af491368-1e76-4d4e-b435-8095c29ef719 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-af491368-1e76-4d4e-b435-8095c29ef719 {
  margin: 0 !important;
  overflow: visible;
}

#s-af491368-1e76-4d4e-b435-8095c29ef719-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-af491368-1e76-4d4e-b435-8095c29ef719 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-af491368-1e76-4d4e-b435-8095c29ef719 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-af491368-1e76-4d4e-b435-8095c29ef719 img.shogun-image {
  /* Add background color handling */
  
}

#s-af491368-1e76-4d4e-b435-8095c29ef719 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-af491368-1e76-4d4e-b435-8095c29ef719 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-af491368-1e76-4d4e-b435-8095c29ef719 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-af491368-1e76-4d4e-b435-8095c29ef719 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-af491368-1e76-4d4e-b435-8095c29ef719 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-af491368-1e76-4d4e-b435-8095c29ef719 .shogun-image-content {
  
    justify-content: center;
  
}

.s-af491368-1e76-4d4e-b435-8095c29ef719.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image {
  box-sizing: border-box;
}



.s-af491368-1e76-4d4e-b435-8095c29ef719 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-af491368-1e76-4d4e-b435-8095c29ef719 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image-container {
      position: relative;
    }

    .s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-af491368-1e76-4d4e-b435-8095c29ef719 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-af491368-1e76-4d4e-b435-8095c29ef719 {
  margin: 0 !important;
  overflow: visible;
}

#s-af491368-1e76-4d4e-b435-8095c29ef719-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-af491368-1e76-4d4e-b435-8095c29ef719 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-af491368-1e76-4d4e-b435-8095c29ef719 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-af491368-1e76-4d4e-b435-8095c29ef719 img.shogun-image {
  /* Add background color handling */
  
}

#s-af491368-1e76-4d4e-b435-8095c29ef719 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-af491368-1e76-4d4e-b435-8095c29ef719 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-af491368-1e76-4d4e-b435-8095c29ef719 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-af491368-1e76-4d4e-b435-8095c29ef719 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-af491368-1e76-4d4e-b435-8095c29ef719 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-af491368-1e76-4d4e-b435-8095c29ef719 .shogun-image-content {
  
    justify-content: center;
  
}

.s-af491368-1e76-4d4e-b435-8095c29ef719.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image {
  box-sizing: border-box;
}



.s-af491368-1e76-4d4e-b435-8095c29ef719 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-af491368-1e76-4d4e-b435-8095c29ef719 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image-container {
      position: relative;
    }

    .s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-af491368-1e76-4d4e-b435-8095c29ef719 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-af491368-1e76-4d4e-b435-8095c29ef719 {
  margin: 0 !important;
  overflow: visible;
}

#s-af491368-1e76-4d4e-b435-8095c29ef719-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-af491368-1e76-4d4e-b435-8095c29ef719 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-af491368-1e76-4d4e-b435-8095c29ef719 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-af491368-1e76-4d4e-b435-8095c29ef719 img.shogun-image {
  /* Add background color handling */
  
}

#s-af491368-1e76-4d4e-b435-8095c29ef719 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-af491368-1e76-4d4e-b435-8095c29ef719 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-af491368-1e76-4d4e-b435-8095c29ef719 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-af491368-1e76-4d4e-b435-8095c29ef719 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-af491368-1e76-4d4e-b435-8095c29ef719 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-af491368-1e76-4d4e-b435-8095c29ef719 .shogun-image-content {
  
    justify-content: center;
  
}

.s-af491368-1e76-4d4e-b435-8095c29ef719.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image {
  box-sizing: border-box;
}



.s-af491368-1e76-4d4e-b435-8095c29ef719 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-af491368-1e76-4d4e-b435-8095c29ef719 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image-container {
      position: relative;
    }

    .s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-af491368-1e76-4d4e-b435-8095c29ef719 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-af491368-1e76-4d4e-b435-8095c29ef719 {
  margin: 0 !important;
  overflow: visible;
}

#s-af491368-1e76-4d4e-b435-8095c29ef719-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-af491368-1e76-4d4e-b435-8095c29ef719 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-af491368-1e76-4d4e-b435-8095c29ef719 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-af491368-1e76-4d4e-b435-8095c29ef719 img.shogun-image {
  /* Add background color handling */
  
}

#s-af491368-1e76-4d4e-b435-8095c29ef719 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-af491368-1e76-4d4e-b435-8095c29ef719 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-af491368-1e76-4d4e-b435-8095c29ef719 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-af491368-1e76-4d4e-b435-8095c29ef719 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-af491368-1e76-4d4e-b435-8095c29ef719 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-af491368-1e76-4d4e-b435-8095c29ef719 .shogun-image-content {
  
    justify-content: center;
  
}

.s-af491368-1e76-4d4e-b435-8095c29ef719.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image {
  box-sizing: border-box;
}



.s-af491368-1e76-4d4e-b435-8095c29ef719 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-af491368-1e76-4d4e-b435-8095c29ef719 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image-container {
      position: relative;
    }

    .s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-af491368-1e76-4d4e-b435-8095c29ef719 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-af491368-1e76-4d4e-b435-8095c29ef719 {
  margin: 0 !important;
  overflow: visible;
}

#s-af491368-1e76-4d4e-b435-8095c29ef719-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-af491368-1e76-4d4e-b435-8095c29ef719 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-af491368-1e76-4d4e-b435-8095c29ef719 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-af491368-1e76-4d4e-b435-8095c29ef719 img.shogun-image {
  /* Add background color handling */
  
}

#s-af491368-1e76-4d4e-b435-8095c29ef719 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-af491368-1e76-4d4e-b435-8095c29ef719 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-af491368-1e76-4d4e-b435-8095c29ef719 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-af491368-1e76-4d4e-b435-8095c29ef719 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-af491368-1e76-4d4e-b435-8095c29ef719 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-af491368-1e76-4d4e-b435-8095c29ef719 .shogun-image-content {
  
    justify-content: center;
  
}

.s-af491368-1e76-4d4e-b435-8095c29ef719.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image {
  box-sizing: border-box;
}



.s-af491368-1e76-4d4e-b435-8095c29ef719 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-af491368-1e76-4d4e-b435-8095c29ef719 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image-container {
      position: relative;
    }

    .s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-af491368-1e76-4d4e-b435-8095c29ef719.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-af491368-1e76-4d4e-b435-8095c29ef719 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-5619cd80-7300-40a2-ac82-df0d8513bdee {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-5619cd80-7300-40a2-ac82-df0d8513bdee {
  margin: 0 !important;
  overflow: visible;
}

#s-5619cd80-7300-40a2-ac82-df0d8513bdee-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-5619cd80-7300-40a2-ac82-df0d8513bdee {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5619cd80-7300-40a2-ac82-df0d8513bdee {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5619cd80-7300-40a2-ac82-df0d8513bdee img.shogun-image {
  /* Add background color handling */
  
}

#s-5619cd80-7300-40a2-ac82-df0d8513bdee img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5619cd80-7300-40a2-ac82-df0d8513bdee .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5619cd80-7300-40a2-ac82-df0d8513bdee .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5619cd80-7300-40a2-ac82-df0d8513bdee .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5619cd80-7300-40a2-ac82-df0d8513bdee img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-5619cd80-7300-40a2-ac82-df0d8513bdee .shogun-image-content {
  
    justify-content: center;
  
}

.s-5619cd80-7300-40a2-ac82-df0d8513bdee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image {
  box-sizing: border-box;
}



.s-5619cd80-7300-40a2-ac82-df0d8513bdee img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5619cd80-7300-40a2-ac82-df0d8513bdee {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image-container {
      position: relative;
    }

    .s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5619cd80-7300-40a2-ac82-df0d8513bdee img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-5619cd80-7300-40a2-ac82-df0d8513bdee {
  margin: 0 !important;
  overflow: visible;
}

#s-5619cd80-7300-40a2-ac82-df0d8513bdee-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-5619cd80-7300-40a2-ac82-df0d8513bdee {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5619cd80-7300-40a2-ac82-df0d8513bdee {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5619cd80-7300-40a2-ac82-df0d8513bdee img.shogun-image {
  /* Add background color handling */
  
}

#s-5619cd80-7300-40a2-ac82-df0d8513bdee img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5619cd80-7300-40a2-ac82-df0d8513bdee .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5619cd80-7300-40a2-ac82-df0d8513bdee .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5619cd80-7300-40a2-ac82-df0d8513bdee .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5619cd80-7300-40a2-ac82-df0d8513bdee img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-5619cd80-7300-40a2-ac82-df0d8513bdee .shogun-image-content {
  
    justify-content: center;
  
}

.s-5619cd80-7300-40a2-ac82-df0d8513bdee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image {
  box-sizing: border-box;
}



.s-5619cd80-7300-40a2-ac82-df0d8513bdee img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5619cd80-7300-40a2-ac82-df0d8513bdee {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image-container {
      position: relative;
    }

    .s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5619cd80-7300-40a2-ac82-df0d8513bdee img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-5619cd80-7300-40a2-ac82-df0d8513bdee {
  margin: 0 !important;
  overflow: visible;
}

#s-5619cd80-7300-40a2-ac82-df0d8513bdee-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-5619cd80-7300-40a2-ac82-df0d8513bdee {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5619cd80-7300-40a2-ac82-df0d8513bdee {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5619cd80-7300-40a2-ac82-df0d8513bdee img.shogun-image {
  /* Add background color handling */
  
}

#s-5619cd80-7300-40a2-ac82-df0d8513bdee img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5619cd80-7300-40a2-ac82-df0d8513bdee .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5619cd80-7300-40a2-ac82-df0d8513bdee .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5619cd80-7300-40a2-ac82-df0d8513bdee .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5619cd80-7300-40a2-ac82-df0d8513bdee img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-5619cd80-7300-40a2-ac82-df0d8513bdee .shogun-image-content {
  
    justify-content: center;
  
}

.s-5619cd80-7300-40a2-ac82-df0d8513bdee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image {
  box-sizing: border-box;
}



.s-5619cd80-7300-40a2-ac82-df0d8513bdee img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5619cd80-7300-40a2-ac82-df0d8513bdee {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image-container {
      position: relative;
    }

    .s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5619cd80-7300-40a2-ac82-df0d8513bdee img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-5619cd80-7300-40a2-ac82-df0d8513bdee {
  margin: 0 !important;
  overflow: visible;
}

#s-5619cd80-7300-40a2-ac82-df0d8513bdee-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-5619cd80-7300-40a2-ac82-df0d8513bdee {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5619cd80-7300-40a2-ac82-df0d8513bdee {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5619cd80-7300-40a2-ac82-df0d8513bdee img.shogun-image {
  /* Add background color handling */
  
}

#s-5619cd80-7300-40a2-ac82-df0d8513bdee img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5619cd80-7300-40a2-ac82-df0d8513bdee .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5619cd80-7300-40a2-ac82-df0d8513bdee .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5619cd80-7300-40a2-ac82-df0d8513bdee .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5619cd80-7300-40a2-ac82-df0d8513bdee img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-5619cd80-7300-40a2-ac82-df0d8513bdee .shogun-image-content {
  
    justify-content: center;
  
}

.s-5619cd80-7300-40a2-ac82-df0d8513bdee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image {
  box-sizing: border-box;
}



.s-5619cd80-7300-40a2-ac82-df0d8513bdee img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5619cd80-7300-40a2-ac82-df0d8513bdee {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image-container {
      position: relative;
    }

    .s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5619cd80-7300-40a2-ac82-df0d8513bdee img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-5619cd80-7300-40a2-ac82-df0d8513bdee {
  margin: 0 !important;
  overflow: visible;
}

#s-5619cd80-7300-40a2-ac82-df0d8513bdee-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-5619cd80-7300-40a2-ac82-df0d8513bdee {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5619cd80-7300-40a2-ac82-df0d8513bdee {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5619cd80-7300-40a2-ac82-df0d8513bdee img.shogun-image {
  /* Add background color handling */
  
}

#s-5619cd80-7300-40a2-ac82-df0d8513bdee img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5619cd80-7300-40a2-ac82-df0d8513bdee .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5619cd80-7300-40a2-ac82-df0d8513bdee .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5619cd80-7300-40a2-ac82-df0d8513bdee .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5619cd80-7300-40a2-ac82-df0d8513bdee img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-5619cd80-7300-40a2-ac82-df0d8513bdee .shogun-image-content {
  
    justify-content: center;
  
}

.s-5619cd80-7300-40a2-ac82-df0d8513bdee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image {
  box-sizing: border-box;
}



.s-5619cd80-7300-40a2-ac82-df0d8513bdee img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5619cd80-7300-40a2-ac82-df0d8513bdee {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image-container {
      position: relative;
    }

    .s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5619cd80-7300-40a2-ac82-df0d8513bdee.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5619cd80-7300-40a2-ac82-df0d8513bdee img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
@media (min-width: 0px) {
[id="s-021727ef-e4fc-4020-90b5-200dcc978b3c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-021727ef-e4fc-4020-90b5-200dcc978b3c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-021727ef-e4fc-4020-90b5-200dcc978b3c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-021727ef-e4fc-4020-90b5-200dcc978b3c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-cc6241c7-9670-4b63-a3cb-dd724f55c58d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cc6241c7-9670-4b63-a3cb-dd724f55c58d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-cc6241c7-9670-4b63-a3cb-dd724f55c58d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-cc6241c7-9670-4b63-a3cb-dd724f55c58d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-cc6241c7-9670-4b63-a3cb-dd724f55c58d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-cc6241c7-9670-4b63-a3cb-dd724f55c58d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-cc6241c7-9670-4b63-a3cb-dd724f55c58d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-8d672ebc-972d-4b23-857a-1efd4666594b {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-ba4f47eb-a7b9-4b2c-8133-46dcd30b2c36"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ba4f47eb-a7b9-4b2c-8133-46dcd30b2c36"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ba4f47eb-a7b9-4b2c-8133-46dcd30b2c36"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ba4f47eb-a7b9-4b2c-8133-46dcd30b2c36"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ba4f47eb-a7b9-4b2c-8133-46dcd30b2c36"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ba4f47eb-a7b9-4b2c-8133-46dcd30b2c36"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ba4f47eb-a7b9-4b2c-8133-46dcd30b2c36"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-9e0c83a0-700f-4671-96d4-387344d6c5a7 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-77529620-667f-4e2d-8b42-cd632fc0874f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-77529620-667f-4e2d-8b42-cd632fc0874f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-77529620-667f-4e2d-8b42-cd632fc0874f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-77529620-667f-4e2d-8b42-cd632fc0874f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-77529620-667f-4e2d-8b42-cd632fc0874f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-77529620-667f-4e2d-8b42-cd632fc0874f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-77529620-667f-4e2d-8b42-cd632fc0874f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

#s-f6d74f76-2ff2-4645-9f25-3a427e529c9b {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 0%;
padding-right: 0%;
}

#s-b5dcbd14-c684-4870-ad1a-39c52240302c {
  margin-left: 4%;
margin-right: 4%;
padding-top: 19px;
padding-left: 1%;
padding-bottom: 19px;
padding-right: 1%;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  max-width: 1920px;
aspect-ratio: 1920/1095;
text-align: center;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  margin: 0 !important;
  overflow: visible;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b-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-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  /* Add background color handling */
  
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shogun-image-content {
  
    justify-content: center;
  
}

.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image {
  box-sizing: border-box;
}



.s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
      position: relative;
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

@media (min-width: 1200px){#s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  margin: 0 !important;
  overflow: visible;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b-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-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  /* Add background color handling */
  
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shogun-image-content {
  
    justify-content: center;
  
}

.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image {
  box-sizing: border-box;
}



.s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
      position: relative;
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  margin: 0 !important;
  overflow: visible;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b-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-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  /* Add background color handling */
  
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shogun-image-content {
  
    justify-content: center;
  
}

.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image {
  box-sizing: border-box;
}



.s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
      position: relative;
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  margin: 0 !important;
  overflow: visible;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b-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-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  /* Add background color handling */
  
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shogun-image-content {
  
    justify-content: center;
  
}

.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image {
  box-sizing: border-box;
}



.s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
      position: relative;
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (max-width: 767px){#s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  margin: 0 !important;
  overflow: visible;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b-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-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  /* Add background color handling */
  
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shogun-image-content {
  
    justify-content: center;
  
}

.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image {
  box-sizing: border-box;
}



.s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
      position: relative;
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}
@media (min-width: 0px) {
[id="s-83c7b66f-d5be-43d3-b456-607cbcec1bab"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-83c7b66f-d5be-43d3-b456-607cbcec1bab"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-83c7b66f-d5be-43d3-b456-607cbcec1bab"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-83c7b66f-d5be-43d3-b456-607cbcec1bab"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-af0b132b-52c8-4553-92d4-046b7cf2b9d7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-af0b132b-52c8-4553-92d4-046b7cf2b9d7"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-af0b132b-52c8-4553-92d4-046b7cf2b9d7"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-af0b132b-52c8-4553-92d4-046b7cf2b9d7"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-af0b132b-52c8-4553-92d4-046b7cf2b9d7"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-af0b132b-52c8-4553-92d4-046b7cf2b9d7"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-af0b132b-52c8-4553-92d4-046b7cf2b9d7"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-0442edd6-ce92-4ae9-bc69-970d55212c95 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-485639b7-3f9c-4cb5-aac2-7093220b9b74"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-485639b7-3f9c-4cb5-aac2-7093220b9b74"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-485639b7-3f9c-4cb5-aac2-7093220b9b74"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-485639b7-3f9c-4cb5-aac2-7093220b9b74"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-485639b7-3f9c-4cb5-aac2-7093220b9b74"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-485639b7-3f9c-4cb5-aac2-7093220b9b74"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-485639b7-3f9c-4cb5-aac2-7093220b9b74"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-e336077d-df7e-45ac-9150-a0b6824fdc0b {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-aa8b12dc-bb9b-4e1f-bb7f-29dda3da8ed4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-aa8b12dc-bb9b-4e1f-bb7f-29dda3da8ed4"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-aa8b12dc-bb9b-4e1f-bb7f-29dda3da8ed4"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-aa8b12dc-bb9b-4e1f-bb7f-29dda3da8ed4"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-867569cd-6a2b-401d-a953-03dd4355cf2c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-867569cd-6a2b-401d-a953-03dd4355cf2c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-867569cd-6a2b-401d-a953-03dd4355cf2c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-867569cd-6a2b-401d-a953-03dd4355cf2c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-867569cd-6a2b-401d-a953-03dd4355cf2c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-867569cd-6a2b-401d-a953-03dd4355cf2c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-867569cd-6a2b-401d-a953-03dd4355cf2c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-5d7dc0c4-040c-43c4-b0dc-ccf341cf15bb {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-f24f988a-12cc-417d-947c-c5657c13a3bf"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f24f988a-12cc-417d-947c-c5657c13a3bf"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f24f988a-12cc-417d-947c-c5657c13a3bf"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f24f988a-12cc-417d-947c-c5657c13a3bf"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f24f988a-12cc-417d-947c-c5657c13a3bf"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f24f988a-12cc-417d-947c-c5657c13a3bf"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f24f988a-12cc-417d-947c-c5657c13a3bf"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-f4cab4c2-266b-4cfc-897f-39a7acff7eb3 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-e0589a80-9a48-4864-9798-879aae8345d4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e0589a80-9a48-4864-9798-879aae8345d4"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e0589a80-9a48-4864-9798-879aae8345d4"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e0589a80-9a48-4864-9798-879aae8345d4"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-e3dbc102-9b6a-49c3-8185-968de8d21490"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e3dbc102-9b6a-49c3-8185-968de8d21490"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e3dbc102-9b6a-49c3-8185-968de8d21490"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e3dbc102-9b6a-49c3-8185-968de8d21490"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e3dbc102-9b6a-49c3-8185-968de8d21490"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e3dbc102-9b6a-49c3-8185-968de8d21490"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e3dbc102-9b6a-49c3-8185-968de8d21490"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-fa14fdb5-d462-4c33-aae3-31af2a54be61 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-58f3d00c-a863-496f-b394-31b1a8b6c1be"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-58f3d00c-a863-496f-b394-31b1a8b6c1be"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-58f3d00c-a863-496f-b394-31b1a8b6c1be"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-58f3d00c-a863-496f-b394-31b1a8b6c1be"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-58f3d00c-a863-496f-b394-31b1a8b6c1be"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-58f3d00c-a863-496f-b394-31b1a8b6c1be"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-58f3d00c-a863-496f-b394-31b1a8b6c1be"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-a0d4b1e4-928e-4c7f-ab4d-c76ac6143b57 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-9041b654-1cc3-4568-b2ff-5032a6711479"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-9041b654-1cc3-4568-b2ff-5032a6711479"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-9041b654-1cc3-4568-b2ff-5032a6711479"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-9041b654-1cc3-4568-b2ff-5032a6711479"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f {
  margin: 0 !important;
  overflow: visible;
}

#s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f-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-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f img.shogun-image {
  /* Add background color handling */
  
}

#s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f .shogun-image-content {
  
    justify-content: center;
  
}

.s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image {
  box-sizing: border-box;
}



.s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image-container {
      position: relative;
    }

    .s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f {
  margin: 0 !important;
  overflow: visible;
}

#s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f-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-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f img.shogun-image {
  /* Add background color handling */
  
}

#s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f .shogun-image-content {
  
    justify-content: center;
  
}

.s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image {
  box-sizing: border-box;
}



.s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image-container {
      position: relative;
    }

    .s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f {
  margin: 0 !important;
  overflow: visible;
}

#s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f-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-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f img.shogun-image {
  /* Add background color handling */
  
}

#s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f .shogun-image-content {
  
    justify-content: center;
  
}

.s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image {
  box-sizing: border-box;
}



.s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image-container {
      position: relative;
    }

    .s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f {
  margin: 0 !important;
  overflow: visible;
}

#s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f-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-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f img.shogun-image {
  /* Add background color handling */
  
}

#s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f .shogun-image-content {
  
    justify-content: center;
  
}

.s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image {
  box-sizing: border-box;
}



.s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image-container {
      position: relative;
    }

    .s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f {
  margin: 0 !important;
  overflow: visible;
}

#s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f-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-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f img.shogun-image {
  /* Add background color handling */
  
}

#s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f .shogun-image-content {
  
    justify-content: center;
  
}

.s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image {
  box-sizing: border-box;
}



.s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image-container {
      position: relative;
    }

    .s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-faa16f0a-d4e2-4dd7-ae0c-a0d95aeb452f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-0dfce473-d62e-4411-ad4e-3cfd79b49453 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-0dfce473-d62e-4411-ad4e-3cfd79b49453 {
  margin: 0 !important;
  overflow: visible;
}

#s-0dfce473-d62e-4411-ad4e-3cfd79b49453-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-0dfce473-d62e-4411-ad4e-3cfd79b49453 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0dfce473-d62e-4411-ad4e-3cfd79b49453 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0dfce473-d62e-4411-ad4e-3cfd79b49453 img.shogun-image {
  /* Add background color handling */
  
}

#s-0dfce473-d62e-4411-ad4e-3cfd79b49453 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0dfce473-d62e-4411-ad4e-3cfd79b49453 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0dfce473-d62e-4411-ad4e-3cfd79b49453 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0dfce473-d62e-4411-ad4e-3cfd79b49453 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0dfce473-d62e-4411-ad4e-3cfd79b49453 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-0dfce473-d62e-4411-ad4e-3cfd79b49453 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image {
  box-sizing: border-box;
}



.s-0dfce473-d62e-4411-ad4e-3cfd79b49453 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0dfce473-d62e-4411-ad4e-3cfd79b49453 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image-container {
      position: relative;
    }

    .s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0dfce473-d62e-4411-ad4e-3cfd79b49453 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-0dfce473-d62e-4411-ad4e-3cfd79b49453 {
  margin: 0 !important;
  overflow: visible;
}

#s-0dfce473-d62e-4411-ad4e-3cfd79b49453-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-0dfce473-d62e-4411-ad4e-3cfd79b49453 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0dfce473-d62e-4411-ad4e-3cfd79b49453 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0dfce473-d62e-4411-ad4e-3cfd79b49453 img.shogun-image {
  /* Add background color handling */
  
}

#s-0dfce473-d62e-4411-ad4e-3cfd79b49453 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0dfce473-d62e-4411-ad4e-3cfd79b49453 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0dfce473-d62e-4411-ad4e-3cfd79b49453 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0dfce473-d62e-4411-ad4e-3cfd79b49453 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0dfce473-d62e-4411-ad4e-3cfd79b49453 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-0dfce473-d62e-4411-ad4e-3cfd79b49453 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image {
  box-sizing: border-box;
}



.s-0dfce473-d62e-4411-ad4e-3cfd79b49453 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0dfce473-d62e-4411-ad4e-3cfd79b49453 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image-container {
      position: relative;
    }

    .s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0dfce473-d62e-4411-ad4e-3cfd79b49453 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-0dfce473-d62e-4411-ad4e-3cfd79b49453 {
  margin: 0 !important;
  overflow: visible;
}

#s-0dfce473-d62e-4411-ad4e-3cfd79b49453-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-0dfce473-d62e-4411-ad4e-3cfd79b49453 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0dfce473-d62e-4411-ad4e-3cfd79b49453 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0dfce473-d62e-4411-ad4e-3cfd79b49453 img.shogun-image {
  /* Add background color handling */
  
}

#s-0dfce473-d62e-4411-ad4e-3cfd79b49453 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0dfce473-d62e-4411-ad4e-3cfd79b49453 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0dfce473-d62e-4411-ad4e-3cfd79b49453 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0dfce473-d62e-4411-ad4e-3cfd79b49453 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0dfce473-d62e-4411-ad4e-3cfd79b49453 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-0dfce473-d62e-4411-ad4e-3cfd79b49453 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image {
  box-sizing: border-box;
}



.s-0dfce473-d62e-4411-ad4e-3cfd79b49453 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0dfce473-d62e-4411-ad4e-3cfd79b49453 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image-container {
      position: relative;
    }

    .s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0dfce473-d62e-4411-ad4e-3cfd79b49453 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-0dfce473-d62e-4411-ad4e-3cfd79b49453 {
  margin: 0 !important;
  overflow: visible;
}

#s-0dfce473-d62e-4411-ad4e-3cfd79b49453-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-0dfce473-d62e-4411-ad4e-3cfd79b49453 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0dfce473-d62e-4411-ad4e-3cfd79b49453 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0dfce473-d62e-4411-ad4e-3cfd79b49453 img.shogun-image {
  /* Add background color handling */
  
}

#s-0dfce473-d62e-4411-ad4e-3cfd79b49453 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0dfce473-d62e-4411-ad4e-3cfd79b49453 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0dfce473-d62e-4411-ad4e-3cfd79b49453 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0dfce473-d62e-4411-ad4e-3cfd79b49453 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0dfce473-d62e-4411-ad4e-3cfd79b49453 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-0dfce473-d62e-4411-ad4e-3cfd79b49453 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image {
  box-sizing: border-box;
}



.s-0dfce473-d62e-4411-ad4e-3cfd79b49453 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0dfce473-d62e-4411-ad4e-3cfd79b49453 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image-container {
      position: relative;
    }

    .s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0dfce473-d62e-4411-ad4e-3cfd79b49453 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-0dfce473-d62e-4411-ad4e-3cfd79b49453 {
  margin: 0 !important;
  overflow: visible;
}

#s-0dfce473-d62e-4411-ad4e-3cfd79b49453-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-0dfce473-d62e-4411-ad4e-3cfd79b49453 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0dfce473-d62e-4411-ad4e-3cfd79b49453 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0dfce473-d62e-4411-ad4e-3cfd79b49453 img.shogun-image {
  /* Add background color handling */
  
}

#s-0dfce473-d62e-4411-ad4e-3cfd79b49453 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0dfce473-d62e-4411-ad4e-3cfd79b49453 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0dfce473-d62e-4411-ad4e-3cfd79b49453 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0dfce473-d62e-4411-ad4e-3cfd79b49453 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0dfce473-d62e-4411-ad4e-3cfd79b49453 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-0dfce473-d62e-4411-ad4e-3cfd79b49453 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image {
  box-sizing: border-box;
}



.s-0dfce473-d62e-4411-ad4e-3cfd79b49453 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0dfce473-d62e-4411-ad4e-3cfd79b49453 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image-container {
      position: relative;
    }

    .s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0dfce473-d62e-4411-ad4e-3cfd79b49453.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0dfce473-d62e-4411-ad4e-3cfd79b49453 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 {
  margin: 0 !important;
  overflow: visible;
}

#s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96-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-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 img.shogun-image {
  /* Add background color handling */
  
}

#s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 .shogun-image-content {
  
    justify-content: center;
  
}

.s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image {
  box-sizing: border-box;
}



.s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image-container {
      position: relative;
    }

    .s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 {
  margin: 0 !important;
  overflow: visible;
}

#s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96-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-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 img.shogun-image {
  /* Add background color handling */
  
}

#s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 .shogun-image-content {
  
    justify-content: center;
  
}

.s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image {
  box-sizing: border-box;
}



.s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image-container {
      position: relative;
    }

    .s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 {
  margin: 0 !important;
  overflow: visible;
}

#s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96-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-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 img.shogun-image {
  /* Add background color handling */
  
}

#s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 .shogun-image-content {
  
    justify-content: center;
  
}

.s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image {
  box-sizing: border-box;
}



.s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image-container {
      position: relative;
    }

    .s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 {
  margin: 0 !important;
  overflow: visible;
}

#s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96-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-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 img.shogun-image {
  /* Add background color handling */
  
}

#s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 .shogun-image-content {
  
    justify-content: center;
  
}

.s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image {
  box-sizing: border-box;
}



.s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image-container {
      position: relative;
    }

    .s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 {
  margin: 0 !important;
  overflow: visible;
}

#s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96-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-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 img.shogun-image {
  /* Add background color handling */
  
}

#s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 .shogun-image-content {
  
    justify-content: center;
  
}

.s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image {
  box-sizing: border-box;
}



.s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image-container {
      position: relative;
    }

    .s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-32ef7c5d-a4c4-4e77-acb7-f2f1d9c62c96 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-a385dac6-5096-440b-ac5e-182280fc3636 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-a385dac6-5096-440b-ac5e-182280fc3636 {
  margin: 0 !important;
  overflow: visible;
}

#s-a385dac6-5096-440b-ac5e-182280fc3636-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-a385dac6-5096-440b-ac5e-182280fc3636 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a385dac6-5096-440b-ac5e-182280fc3636 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a385dac6-5096-440b-ac5e-182280fc3636 img.shogun-image {
  /* Add background color handling */
  
}

#s-a385dac6-5096-440b-ac5e-182280fc3636 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a385dac6-5096-440b-ac5e-182280fc3636 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a385dac6-5096-440b-ac5e-182280fc3636 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a385dac6-5096-440b-ac5e-182280fc3636 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a385dac6-5096-440b-ac5e-182280fc3636 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-a385dac6-5096-440b-ac5e-182280fc3636 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a385dac6-5096-440b-ac5e-182280fc3636.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image {
  box-sizing: border-box;
}



.s-a385dac6-5096-440b-ac5e-182280fc3636 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a385dac6-5096-440b-ac5e-182280fc3636 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image-container {
      position: relative;
    }

    .s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a385dac6-5096-440b-ac5e-182280fc3636 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-a385dac6-5096-440b-ac5e-182280fc3636 {
  margin: 0 !important;
  overflow: visible;
}

#s-a385dac6-5096-440b-ac5e-182280fc3636-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-a385dac6-5096-440b-ac5e-182280fc3636 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a385dac6-5096-440b-ac5e-182280fc3636 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a385dac6-5096-440b-ac5e-182280fc3636 img.shogun-image {
  /* Add background color handling */
  
}

#s-a385dac6-5096-440b-ac5e-182280fc3636 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a385dac6-5096-440b-ac5e-182280fc3636 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a385dac6-5096-440b-ac5e-182280fc3636 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a385dac6-5096-440b-ac5e-182280fc3636 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a385dac6-5096-440b-ac5e-182280fc3636 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-a385dac6-5096-440b-ac5e-182280fc3636 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a385dac6-5096-440b-ac5e-182280fc3636.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image {
  box-sizing: border-box;
}



.s-a385dac6-5096-440b-ac5e-182280fc3636 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a385dac6-5096-440b-ac5e-182280fc3636 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image-container {
      position: relative;
    }

    .s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a385dac6-5096-440b-ac5e-182280fc3636 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-a385dac6-5096-440b-ac5e-182280fc3636 {
  margin: 0 !important;
  overflow: visible;
}

#s-a385dac6-5096-440b-ac5e-182280fc3636-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-a385dac6-5096-440b-ac5e-182280fc3636 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a385dac6-5096-440b-ac5e-182280fc3636 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a385dac6-5096-440b-ac5e-182280fc3636 img.shogun-image {
  /* Add background color handling */
  
}

#s-a385dac6-5096-440b-ac5e-182280fc3636 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a385dac6-5096-440b-ac5e-182280fc3636 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a385dac6-5096-440b-ac5e-182280fc3636 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a385dac6-5096-440b-ac5e-182280fc3636 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a385dac6-5096-440b-ac5e-182280fc3636 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-a385dac6-5096-440b-ac5e-182280fc3636 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a385dac6-5096-440b-ac5e-182280fc3636.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image {
  box-sizing: border-box;
}



.s-a385dac6-5096-440b-ac5e-182280fc3636 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a385dac6-5096-440b-ac5e-182280fc3636 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image-container {
      position: relative;
    }

    .s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a385dac6-5096-440b-ac5e-182280fc3636 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-a385dac6-5096-440b-ac5e-182280fc3636 {
  margin: 0 !important;
  overflow: visible;
}

#s-a385dac6-5096-440b-ac5e-182280fc3636-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-a385dac6-5096-440b-ac5e-182280fc3636 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a385dac6-5096-440b-ac5e-182280fc3636 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a385dac6-5096-440b-ac5e-182280fc3636 img.shogun-image {
  /* Add background color handling */
  
}

#s-a385dac6-5096-440b-ac5e-182280fc3636 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a385dac6-5096-440b-ac5e-182280fc3636 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a385dac6-5096-440b-ac5e-182280fc3636 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a385dac6-5096-440b-ac5e-182280fc3636 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a385dac6-5096-440b-ac5e-182280fc3636 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-a385dac6-5096-440b-ac5e-182280fc3636 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a385dac6-5096-440b-ac5e-182280fc3636.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image {
  box-sizing: border-box;
}



.s-a385dac6-5096-440b-ac5e-182280fc3636 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a385dac6-5096-440b-ac5e-182280fc3636 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image-container {
      position: relative;
    }

    .s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a385dac6-5096-440b-ac5e-182280fc3636 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-a385dac6-5096-440b-ac5e-182280fc3636 {
  margin: 0 !important;
  overflow: visible;
}

#s-a385dac6-5096-440b-ac5e-182280fc3636-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-a385dac6-5096-440b-ac5e-182280fc3636 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a385dac6-5096-440b-ac5e-182280fc3636 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a385dac6-5096-440b-ac5e-182280fc3636 img.shogun-image {
  /* Add background color handling */
  
}

#s-a385dac6-5096-440b-ac5e-182280fc3636 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a385dac6-5096-440b-ac5e-182280fc3636 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a385dac6-5096-440b-ac5e-182280fc3636 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a385dac6-5096-440b-ac5e-182280fc3636 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a385dac6-5096-440b-ac5e-182280fc3636 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-a385dac6-5096-440b-ac5e-182280fc3636 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a385dac6-5096-440b-ac5e-182280fc3636.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image {
  box-sizing: border-box;
}



.s-a385dac6-5096-440b-ac5e-182280fc3636 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a385dac6-5096-440b-ac5e-182280fc3636 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image-container {
      position: relative;
    }

    .s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a385dac6-5096-440b-ac5e-182280fc3636.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a385dac6-5096-440b-ac5e-182280fc3636 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
@media (min-width: 0px) {
[id="s-bf46267a-3bc3-4c10-ae89-d846769b6e8f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bf46267a-3bc3-4c10-ae89-d846769b6e8f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-bf46267a-3bc3-4c10-ae89-d846769b6e8f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-bf46267a-3bc3-4c10-ae89-d846769b6e8f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-32e89e05-d7cc-47dd-86fa-3aac051d854b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-32e89e05-d7cc-47dd-86fa-3aac051d854b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-32e89e05-d7cc-47dd-86fa-3aac051d854b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-32e89e05-d7cc-47dd-86fa-3aac051d854b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-32e89e05-d7cc-47dd-86fa-3aac051d854b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-32e89e05-d7cc-47dd-86fa-3aac051d854b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-32e89e05-d7cc-47dd-86fa-3aac051d854b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-295e298a-baaa-4911-ba2a-f5d30b6506cc {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-0494bfe6-117a-4a87-b213-f758624e1dc5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0494bfe6-117a-4a87-b213-f758624e1dc5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0494bfe6-117a-4a87-b213-f758624e1dc5"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0494bfe6-117a-4a87-b213-f758624e1dc5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0494bfe6-117a-4a87-b213-f758624e1dc5"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0494bfe6-117a-4a87-b213-f758624e1dc5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0494bfe6-117a-4a87-b213-f758624e1dc5"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-45d31166-c8d6-4e40-9316-7c31cce06c46 {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-dab90108-228d-4410-b572-d40bb7b5e9cd {
  margin-top: -10px;
margin-bottom: -10px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-dab90108-228d-4410-b572-d40bb7b5e9cd hr {
  border-top: 1px solid #ddd;
}

@media (min-width: 0px) {
[id="s-4ded1902-ea92-435a-b1bb-867a62f4d87e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4ded1902-ea92-435a-b1bb-867a62f4d87e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4ded1902-ea92-435a-b1bb-867a62f4d87e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4ded1902-ea92-435a-b1bb-867a62f4d87e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-4f38cd8e-30f3-46d2-8c09-ccbad8fb69fc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4f38cd8e-30f3-46d2-8c09-ccbad8fb69fc"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4f38cd8e-30f3-46d2-8c09-ccbad8fb69fc"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4f38cd8e-30f3-46d2-8c09-ccbad8fb69fc"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4f38cd8e-30f3-46d2-8c09-ccbad8fb69fc"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4f38cd8e-30f3-46d2-8c09-ccbad8fb69fc"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4f38cd8e-30f3-46d2-8c09-ccbad8fb69fc"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-fe3479ad-8217-4c48-a6de-3eeeeafd2ad1 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-57fa58c7-b3b7-4314-a9d1-3f09b4bb8ffb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-57fa58c7-b3b7-4314-a9d1-3f09b4bb8ffb"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-57fa58c7-b3b7-4314-a9d1-3f09b4bb8ffb"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-57fa58c7-b3b7-4314-a9d1-3f09b4bb8ffb"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-57fa58c7-b3b7-4314-a9d1-3f09b4bb8ffb"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-57fa58c7-b3b7-4314-a9d1-3f09b4bb8ffb"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-57fa58c7-b3b7-4314-a9d1-3f09b4bb8ffb"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-b6a19e6b-1ce6-4761-88c2-203d63618c28 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-181973d5-da0a-47fd-81fc-bc4b0a9b8817"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-181973d5-da0a-47fd-81fc-bc4b0a9b8817"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-181973d5-da0a-47fd-81fc-bc4b0a9b8817"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-181973d5-da0a-47fd-81fc-bc4b0a9b8817"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-fc0991a5-505a-42b9-8216-19d5eaf20d90"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fc0991a5-505a-42b9-8216-19d5eaf20d90"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-fc0991a5-505a-42b9-8216-19d5eaf20d90"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-fc0991a5-505a-42b9-8216-19d5eaf20d90"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-fc0991a5-505a-42b9-8216-19d5eaf20d90"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-fc0991a5-505a-42b9-8216-19d5eaf20d90"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-fc0991a5-505a-42b9-8216-19d5eaf20d90"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-8590a84a-b78e-4239-86e4-56d2fe3337fa {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-7b8f5102-8cdc-4147-b314-ed35bf4c939e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7b8f5102-8cdc-4147-b314-ed35bf4c939e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7b8f5102-8cdc-4147-b314-ed35bf4c939e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7b8f5102-8cdc-4147-b314-ed35bf4c939e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7b8f5102-8cdc-4147-b314-ed35bf4c939e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7b8f5102-8cdc-4147-b314-ed35bf4c939e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7b8f5102-8cdc-4147-b314-ed35bf4c939e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-1bddc8c4-0a01-4d9e-a2e4-11c5f7766db1 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-9758c644-f901-4ce1-ae70-bab8a734ce5d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9758c644-f901-4ce1-ae70-bab8a734ce5d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9758c644-f901-4ce1-ae70-bab8a734ce5d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9758c644-f901-4ce1-ae70-bab8a734ce5d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-6e20098f-37ac-4d6f-8c56-edd6bc22ccd2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6e20098f-37ac-4d6f-8c56-edd6bc22ccd2"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-6e20098f-37ac-4d6f-8c56-edd6bc22ccd2"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6e20098f-37ac-4d6f-8c56-edd6bc22ccd2"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-6e20098f-37ac-4d6f-8c56-edd6bc22ccd2"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6e20098f-37ac-4d6f-8c56-edd6bc22ccd2"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-6e20098f-37ac-4d6f-8c56-edd6bc22ccd2"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-a6af36e8-40a6-40fc-b1fa-bc7b92311874 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-bef5a9a7-05f9-4b05-837f-71f2f99a324c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bef5a9a7-05f9-4b05-837f-71f2f99a324c"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-bef5a9a7-05f9-4b05-837f-71f2f99a324c"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-bef5a9a7-05f9-4b05-837f-71f2f99a324c"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-bef5a9a7-05f9-4b05-837f-71f2f99a324c"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-bef5a9a7-05f9-4b05-837f-71f2f99a324c"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-bef5a9a7-05f9-4b05-837f-71f2f99a324c"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-241b0947-2b5d-4e34-86e8-2573835ed951 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-c72e831a-744f-4a23-aad0-54e32425dfd4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c72e831a-744f-4a23-aad0-54e32425dfd4"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c72e831a-744f-4a23-aad0-54e32425dfd4"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c72e831a-744f-4a23-aad0-54e32425dfd4"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-528b3888-402f-4954-afe9-84a82a8339bb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-528b3888-402f-4954-afe9-84a82a8339bb"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-528b3888-402f-4954-afe9-84a82a8339bb"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-528b3888-402f-4954-afe9-84a82a8339bb"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-528b3888-402f-4954-afe9-84a82a8339bb"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-528b3888-402f-4954-afe9-84a82a8339bb"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-528b3888-402f-4954-afe9-84a82a8339bb"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-04796f40-6527-4924-b5ee-9b4540390fef {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-1ca8d2bc-460a-4e75-af19-9453e60586c5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1ca8d2bc-460a-4e75-af19-9453e60586c5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1ca8d2bc-460a-4e75-af19-9453e60586c5"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1ca8d2bc-460a-4e75-af19-9453e60586c5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1ca8d2bc-460a-4e75-af19-9453e60586c5"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1ca8d2bc-460a-4e75-af19-9453e60586c5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1ca8d2bc-460a-4e75-af19-9453e60586c5"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-0992381d-e686-4c5b-a195-f8ee2d994129 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-4fca2b10-5564-41c0-858a-f4062bd610df"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4fca2b10-5564-41c0-858a-f4062bd610df"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-4fca2b10-5564-41c0-858a-f4062bd610df"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4fca2b10-5564-41c0-858a-f4062bd610df"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-4fca2b10-5564-41c0-858a-f4062bd610df"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4fca2b10-5564-41c0-858a-f4062bd610df"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-4fca2b10-5564-41c0-858a-f4062bd610df"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  max-width: 1920px;
aspect-ratio: 1920/1095;
text-align: center;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7-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-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image {
  box-sizing: border-box;
}



.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
      position: relative;
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

@media (min-width: 1200px){#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7-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-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image {
  box-sizing: border-box;
}



.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
      position: relative;
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7-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-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image {
  box-sizing: border-box;
}



.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
      position: relative;
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7-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-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image {
  box-sizing: border-box;
}



.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
      position: relative;
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (max-width: 767px){#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7-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-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image {
  box-sizing: border-box;
}



.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
      position: relative;
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}
#s-6b828aca-d3d4-456f-8393-362d48823dbe {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 1%;
padding-right: 1%;
}

#s-c750f8e5-53aa-4959-8439-4bb9ed0925d7 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 19px;
padding-left: 1%;
padding-bottom: 19px;
padding-right: 1%;
}

@media (min-width: 0px) {
[id="s-21786758-2d6c-429e-b726-ca421b2be0f1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-21786758-2d6c-429e-b726-ca421b2be0f1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-21786758-2d6c-429e-b726-ca421b2be0f1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-21786758-2d6c-429e-b726-ca421b2be0f1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-3139a940-1833-4aec-b68e-958fd6d397c8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3139a940-1833-4aec-b68e-958fd6d397c8"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3139a940-1833-4aec-b68e-958fd6d397c8"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3139a940-1833-4aec-b68e-958fd6d397c8"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3139a940-1833-4aec-b68e-958fd6d397c8"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3139a940-1833-4aec-b68e-958fd6d397c8"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3139a940-1833-4aec-b68e-958fd6d397c8"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-4b7ef971-6c00-4ac4-95bd-7d48e9225359 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-1d093148-ba4c-4c0b-8d67-5da5d9c45b5f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1d093148-ba4c-4c0b-8d67-5da5d9c45b5f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1d093148-ba4c-4c0b-8d67-5da5d9c45b5f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1d093148-ba4c-4c0b-8d67-5da5d9c45b5f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1d093148-ba4c-4c0b-8d67-5da5d9c45b5f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1d093148-ba4c-4c0b-8d67-5da5d9c45b5f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1d093148-ba4c-4c0b-8d67-5da5d9c45b5f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-29e9a621-a67d-4432-a53e-5e1e67a69706 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-03f789ef-aa58-4a1d-9b52-bb5568506271"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-03f789ef-aa58-4a1d-9b52-bb5568506271"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-03f789ef-aa58-4a1d-9b52-bb5568506271"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-03f789ef-aa58-4a1d-9b52-bb5568506271"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-cdd7182f-7d43-45df-9b5d-727e1fd4e465"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cdd7182f-7d43-45df-9b5d-727e1fd4e465"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-cdd7182f-7d43-45df-9b5d-727e1fd4e465"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-cdd7182f-7d43-45df-9b5d-727e1fd4e465"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-cdd7182f-7d43-45df-9b5d-727e1fd4e465"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-cdd7182f-7d43-45df-9b5d-727e1fd4e465"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-cdd7182f-7d43-45df-9b5d-727e1fd4e465"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-a561ac3e-4874-448b-81e9-22ba577838f1 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-ff1e9f55-3347-4064-8413-f1b7216fa719"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ff1e9f55-3347-4064-8413-f1b7216fa719"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ff1e9f55-3347-4064-8413-f1b7216fa719"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ff1e9f55-3347-4064-8413-f1b7216fa719"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ff1e9f55-3347-4064-8413-f1b7216fa719"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ff1e9f55-3347-4064-8413-f1b7216fa719"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ff1e9f55-3347-4064-8413-f1b7216fa719"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-b7a26225-0284-408a-8c00-1c8fac58c667 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-ea0d071c-9df4-47d3-b9ba-827b3d851b64"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ea0d071c-9df4-47d3-b9ba-827b3d851b64"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ea0d071c-9df4-47d3-b9ba-827b3d851b64"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ea0d071c-9df4-47d3-b9ba-827b3d851b64"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-5ae008fa-d01a-4b50-8a41-682caa204660"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5ae008fa-d01a-4b50-8a41-682caa204660"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-5ae008fa-d01a-4b50-8a41-682caa204660"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5ae008fa-d01a-4b50-8a41-682caa204660"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-5ae008fa-d01a-4b50-8a41-682caa204660"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5ae008fa-d01a-4b50-8a41-682caa204660"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-5ae008fa-d01a-4b50-8a41-682caa204660"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-d882a9b6-5436-4775-b3cc-1079f42a3f74 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-d87a2ee8-7ec8-4a00-83c7-807d00fd2d2c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d87a2ee8-7ec8-4a00-83c7-807d00fd2d2c"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d87a2ee8-7ec8-4a00-83c7-807d00fd2d2c"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d87a2ee8-7ec8-4a00-83c7-807d00fd2d2c"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d87a2ee8-7ec8-4a00-83c7-807d00fd2d2c"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d87a2ee8-7ec8-4a00-83c7-807d00fd2d2c"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d87a2ee8-7ec8-4a00-83c7-807d00fd2d2c"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-21ca66ac-5af9-4ab0-8f67-d8658315c4f9 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-7fae6498-8dec-4cdd-bd0f-e59265f9ad7c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7fae6498-8dec-4cdd-bd0f-e59265f9ad7c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7fae6498-8dec-4cdd-bd0f-e59265f9ad7c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7fae6498-8dec-4cdd-bd0f-e59265f9ad7c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-604e08f8-217f-4d49-bf94-1383d21a9e44"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-604e08f8-217f-4d49-bf94-1383d21a9e44"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-604e08f8-217f-4d49-bf94-1383d21a9e44"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-604e08f8-217f-4d49-bf94-1383d21a9e44"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-604e08f8-217f-4d49-bf94-1383d21a9e44"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-604e08f8-217f-4d49-bf94-1383d21a9e44"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-604e08f8-217f-4d49-bf94-1383d21a9e44"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-6be95b18-2315-40df-a680-42be0803a6e8 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-6dcaa283-e055-4ce1-9627-445f40a2e211"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6dcaa283-e055-4ce1-9627-445f40a2e211"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6dcaa283-e055-4ce1-9627-445f40a2e211"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6dcaa283-e055-4ce1-9627-445f40a2e211"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6dcaa283-e055-4ce1-9627-445f40a2e211"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6dcaa283-e055-4ce1-9627-445f40a2e211"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6dcaa283-e055-4ce1-9627-445f40a2e211"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-74bd1d5e-919b-4f93-a753-63420c038ac9 {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-980a9cbe-4a60-49c0-b776-07a6b0fa49fb {
  margin-top: -10px;
margin-bottom: -10px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-980a9cbe-4a60-49c0-b776-07a6b0fa49fb hr {
  border-top: 1px solid #ddd;
}

@media (min-width: 0px) {
[id="s-575adf1f-34b1-47ea-a3e3-2f14b65d993a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-575adf1f-34b1-47ea-a3e3-2f14b65d993a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-575adf1f-34b1-47ea-a3e3-2f14b65d993a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-575adf1f-34b1-47ea-a3e3-2f14b65d993a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-d302646c-d6b4-41c0-bcc5-c4e3e872dfe5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d302646c-d6b4-41c0-bcc5-c4e3e872dfe5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d302646c-d6b4-41c0-bcc5-c4e3e872dfe5"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d302646c-d6b4-41c0-bcc5-c4e3e872dfe5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d302646c-d6b4-41c0-bcc5-c4e3e872dfe5"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d302646c-d6b4-41c0-bcc5-c4e3e872dfe5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d302646c-d6b4-41c0-bcc5-c4e3e872dfe5"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-139025a2-7c63-42e4-b25e-a3f1b8933387 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-627475ce-dd03-47a3-96cb-3bea0eb0727d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-627475ce-dd03-47a3-96cb-3bea0eb0727d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-627475ce-dd03-47a3-96cb-3bea0eb0727d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-627475ce-dd03-47a3-96cb-3bea0eb0727d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-627475ce-dd03-47a3-96cb-3bea0eb0727d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-627475ce-dd03-47a3-96cb-3bea0eb0727d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-627475ce-dd03-47a3-96cb-3bea0eb0727d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-a3eab4bc-4051-442d-95a9-c888f784aa83 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-5c2205e9-575d-42c3-b99d-2b0cd7f37fcf"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5c2205e9-575d-42c3-b99d-2b0cd7f37fcf"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5c2205e9-575d-42c3-b99d-2b0cd7f37fcf"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5c2205e9-575d-42c3-b99d-2b0cd7f37fcf"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-7ff0d7df-0e3f-4fdd-9774-1a84aa5ad872"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7ff0d7df-0e3f-4fdd-9774-1a84aa5ad872"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7ff0d7df-0e3f-4fdd-9774-1a84aa5ad872"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7ff0d7df-0e3f-4fdd-9774-1a84aa5ad872"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7ff0d7df-0e3f-4fdd-9774-1a84aa5ad872"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7ff0d7df-0e3f-4fdd-9774-1a84aa5ad872"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7ff0d7df-0e3f-4fdd-9774-1a84aa5ad872"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-4aeb64f0-024b-4278-9976-d7bee829577a {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-7638dd94-0c7a-41ef-b2e2-b8129f0feb5a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7638dd94-0c7a-41ef-b2e2-b8129f0feb5a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7638dd94-0c7a-41ef-b2e2-b8129f0feb5a"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7638dd94-0c7a-41ef-b2e2-b8129f0feb5a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7638dd94-0c7a-41ef-b2e2-b8129f0feb5a"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7638dd94-0c7a-41ef-b2e2-b8129f0feb5a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7638dd94-0c7a-41ef-b2e2-b8129f0feb5a"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-cffd34dd-05d4-4373-b759-22f9da006595 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-4ab97598-b57a-4322-bba3-007756ab3673"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4ab97598-b57a-4322-bba3-007756ab3673"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4ab97598-b57a-4322-bba3-007756ab3673"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4ab97598-b57a-4322-bba3-007756ab3673"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-29f785f7-6e50-4509-a000-00817f285cea"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-29f785f7-6e50-4509-a000-00817f285cea"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-29f785f7-6e50-4509-a000-00817f285cea"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-29f785f7-6e50-4509-a000-00817f285cea"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-29f785f7-6e50-4509-a000-00817f285cea"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-29f785f7-6e50-4509-a000-00817f285cea"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-29f785f7-6e50-4509-a000-00817f285cea"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-653b00da-7ea8-44b9-9524-9c6e5af8552e {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-0e78b0bf-00ef-4173-afe5-409c6c7d7db8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0e78b0bf-00ef-4173-afe5-409c6c7d7db8"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-0e78b0bf-00ef-4173-afe5-409c6c7d7db8"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0e78b0bf-00ef-4173-afe5-409c6c7d7db8"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-0e78b0bf-00ef-4173-afe5-409c6c7d7db8"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0e78b0bf-00ef-4173-afe5-409c6c7d7db8"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-0e78b0bf-00ef-4173-afe5-409c6c7d7db8"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-c0302967-feec-4fca-8175-79fe6cf3103f {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-982de66a-4a58-4e81-a2f5-e157b46f9655"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-982de66a-4a58-4e81-a2f5-e157b46f9655"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-982de66a-4a58-4e81-a2f5-e157b46f9655"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-982de66a-4a58-4e81-a2f5-e157b46f9655"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-e314e582-c8c2-4dbf-95ac-731a870cde0f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e314e582-c8c2-4dbf-95ac-731a870cde0f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e314e582-c8c2-4dbf-95ac-731a870cde0f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e314e582-c8c2-4dbf-95ac-731a870cde0f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e314e582-c8c2-4dbf-95ac-731a870cde0f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e314e582-c8c2-4dbf-95ac-731a870cde0f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e314e582-c8c2-4dbf-95ac-731a870cde0f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-ed390a4d-4cd8-4333-981b-18f807e3fb17 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-6beaef2d-a794-4a76-af25-f42c4c8b349d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6beaef2d-a794-4a76-af25-f42c4c8b349d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6beaef2d-a794-4a76-af25-f42c4c8b349d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6beaef2d-a794-4a76-af25-f42c4c8b349d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6beaef2d-a794-4a76-af25-f42c4c8b349d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6beaef2d-a794-4a76-af25-f42c4c8b349d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6beaef2d-a794-4a76-af25-f42c4c8b349d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-12e8ee09-077f-47bc-9c40-51f6b3791346 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-0182cb5a-0cbb-4fad-bdbf-c69749d990e5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0182cb5a-0cbb-4fad-bdbf-c69749d990e5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0182cb5a-0cbb-4fad-bdbf-c69749d990e5"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0182cb5a-0cbb-4fad-bdbf-c69749d990e5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0182cb5a-0cbb-4fad-bdbf-c69749d990e5"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0182cb5a-0cbb-4fad-bdbf-c69749d990e5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0182cb5a-0cbb-4fad-bdbf-c69749d990e5"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

#s-b1f03b3d-6438-459a-98b5-462562ae6955 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 0%;
padding-right: 0%;
}

#s-25a13f82-cef6-488b-a792-0f73c901d434 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 20px;
padding-left: 1%;
padding-bottom: 20px;
padding-right: 1%;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  max-width: 1920px;
aspect-ratio: 1920/1095;
text-align: center;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  margin: 0 !important;
  overflow: visible;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93-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-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  /* Add background color handling */
  
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image {
  box-sizing: border-box;
}



.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
      position: relative;
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

@media (min-width: 1200px){#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  margin: 0 !important;
  overflow: visible;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93-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-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  /* Add background color handling */
  
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image {
  box-sizing: border-box;
}



.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
      position: relative;
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  margin: 0 !important;
  overflow: visible;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93-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-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  /* Add background color handling */
  
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image {
  box-sizing: border-box;
}



.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
      position: relative;
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  margin: 0 !important;
  overflow: visible;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93-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-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  /* Add background color handling */
  
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image {
  box-sizing: border-box;
}



.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
      position: relative;
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (max-width: 767px){#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  margin: 0 !important;
  overflow: visible;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93-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-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  /* Add background color handling */
  
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image {
  box-sizing: border-box;
}



.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
      position: relative;
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}
@media (min-width: 0px) {
[id="s-2d01f338-7cc9-4269-b4aa-7d35bafaf2a6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2d01f338-7cc9-4269-b4aa-7d35bafaf2a6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2d01f338-7cc9-4269-b4aa-7d35bafaf2a6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2d01f338-7cc9-4269-b4aa-7d35bafaf2a6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-752086ec-9b51-4f09-becb-97f72527c38b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-752086ec-9b51-4f09-becb-97f72527c38b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-752086ec-9b51-4f09-becb-97f72527c38b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-752086ec-9b51-4f09-becb-97f72527c38b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-752086ec-9b51-4f09-becb-97f72527c38b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-752086ec-9b51-4f09-becb-97f72527c38b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-752086ec-9b51-4f09-becb-97f72527c38b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-b9e1200c-560f-43f8-bfd2-6f4ceccc9a38 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-9943fbe7-3341-4bdf-83b0-c9c716c0d3c6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9943fbe7-3341-4bdf-83b0-c9c716c0d3c6"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-9943fbe7-3341-4bdf-83b0-c9c716c0d3c6"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9943fbe7-3341-4bdf-83b0-c9c716c0d3c6"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-9943fbe7-3341-4bdf-83b0-c9c716c0d3c6"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9943fbe7-3341-4bdf-83b0-c9c716c0d3c6"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-9943fbe7-3341-4bdf-83b0-c9c716c0d3c6"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-69533067-7f7a-45ff-b0b3-0cebabe9dd66 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-a9fae03c-a3dc-48ef-9545-3012e2c41352"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a9fae03c-a3dc-48ef-9545-3012e2c41352"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a9fae03c-a3dc-48ef-9545-3012e2c41352"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a9fae03c-a3dc-48ef-9545-3012e2c41352"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-caed6270-5189-41fa-bc20-9557b4c5c023"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-caed6270-5189-41fa-bc20-9557b4c5c023"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-caed6270-5189-41fa-bc20-9557b4c5c023"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-caed6270-5189-41fa-bc20-9557b4c5c023"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-caed6270-5189-41fa-bc20-9557b4c5c023"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-caed6270-5189-41fa-bc20-9557b4c5c023"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-caed6270-5189-41fa-bc20-9557b4c5c023"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-bd588a83-22fd-4086-aacd-fab90431f0ef {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-880b5604-0b86-4d63-868a-6f3ac9f321ad"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-880b5604-0b86-4d63-868a-6f3ac9f321ad"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-880b5604-0b86-4d63-868a-6f3ac9f321ad"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-880b5604-0b86-4d63-868a-6f3ac9f321ad"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-880b5604-0b86-4d63-868a-6f3ac9f321ad"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-880b5604-0b86-4d63-868a-6f3ac9f321ad"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-880b5604-0b86-4d63-868a-6f3ac9f321ad"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-2a19036c-7c49-4019-a680-c9e270185a4b {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-4b8859e9-98ba-490d-9586-9d3294576d6c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4b8859e9-98ba-490d-9586-9d3294576d6c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4b8859e9-98ba-490d-9586-9d3294576d6c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4b8859e9-98ba-490d-9586-9d3294576d6c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-384e988d-8027-4d02-bb91-7462fe4554ce"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-384e988d-8027-4d02-bb91-7462fe4554ce"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-384e988d-8027-4d02-bb91-7462fe4554ce"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-384e988d-8027-4d02-bb91-7462fe4554ce"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-384e988d-8027-4d02-bb91-7462fe4554ce"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-384e988d-8027-4d02-bb91-7462fe4554ce"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-384e988d-8027-4d02-bb91-7462fe4554ce"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-464d4cb9-52e6-4683-aca0-fe33c3761d6e {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-b54bbf74-5053-4c20-b3f0-6a8dca2dfe66"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b54bbf74-5053-4c20-b3f0-6a8dca2dfe66"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-b54bbf74-5053-4c20-b3f0-6a8dca2dfe66"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b54bbf74-5053-4c20-b3f0-6a8dca2dfe66"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-b54bbf74-5053-4c20-b3f0-6a8dca2dfe66"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b54bbf74-5053-4c20-b3f0-6a8dca2dfe66"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-b54bbf74-5053-4c20-b3f0-6a8dca2dfe66"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-38ca9b35-de46-4156-9c4b-72786d95550e {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-70fc825b-d212-4109-a00b-2e1343af042f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-70fc825b-d212-4109-a00b-2e1343af042f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-70fc825b-d212-4109-a00b-2e1343af042f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-70fc825b-d212-4109-a00b-2e1343af042f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-8fc3b759-ab53-4a98-a6eb-07c4d12f678f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8fc3b759-ab53-4a98-a6eb-07c4d12f678f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8fc3b759-ab53-4a98-a6eb-07c4d12f678f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8fc3b759-ab53-4a98-a6eb-07c4d12f678f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8fc3b759-ab53-4a98-a6eb-07c4d12f678f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8fc3b759-ab53-4a98-a6eb-07c4d12f678f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8fc3b759-ab53-4a98-a6eb-07c4d12f678f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-ee28e36b-a6c6-47b3-8c66-5b490190041c {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-e6dcc2ef-6025-4d3f-9cde-579d64b8217c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e6dcc2ef-6025-4d3f-9cde-579d64b8217c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e6dcc2ef-6025-4d3f-9cde-579d64b8217c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e6dcc2ef-6025-4d3f-9cde-579d64b8217c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e6dcc2ef-6025-4d3f-9cde-579d64b8217c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e6dcc2ef-6025-4d3f-9cde-579d64b8217c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e6dcc2ef-6025-4d3f-9cde-579d64b8217c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-518dd8b7-c3d9-4048-9b10-6a0ba3f91fd8 {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-9c164dda-f399-4ee9-bd39-5f679cc3c74b {
  margin-top: -10px;
margin-bottom: -10px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-9c164dda-f399-4ee9-bd39-5f679cc3c74b hr {
  border-top: 1px solid #ddd;
}

@media (min-width: 0px) {
[id="s-24a2a339-1ea5-4d74-a8a0-c94b27d4d00b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-24a2a339-1ea5-4d74-a8a0-c94b27d4d00b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-24a2a339-1ea5-4d74-a8a0-c94b27d4d00b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-24a2a339-1ea5-4d74-a8a0-c94b27d4d00b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-50a0b098-8eaa-487b-8aa0-8d58d0dd8068"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-50a0b098-8eaa-487b-8aa0-8d58d0dd8068"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-50a0b098-8eaa-487b-8aa0-8d58d0dd8068"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-50a0b098-8eaa-487b-8aa0-8d58d0dd8068"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-50a0b098-8eaa-487b-8aa0-8d58d0dd8068"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-50a0b098-8eaa-487b-8aa0-8d58d0dd8068"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-50a0b098-8eaa-487b-8aa0-8d58d0dd8068"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-3fd63644-5ca3-4799-841c-06050361a99a {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-cee9f653-0d09-400d-bf6a-cce91474077d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cee9f653-0d09-400d-bf6a-cce91474077d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-cee9f653-0d09-400d-bf6a-cce91474077d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-cee9f653-0d09-400d-bf6a-cce91474077d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-cee9f653-0d09-400d-bf6a-cce91474077d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-cee9f653-0d09-400d-bf6a-cce91474077d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-cee9f653-0d09-400d-bf6a-cce91474077d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-ce562fdc-58f7-455f-8df3-23640ce198fc {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-a7d16d8a-ba63-4b95-ba64-6a2fa33628fd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a7d16d8a-ba63-4b95-ba64-6a2fa33628fd"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a7d16d8a-ba63-4b95-ba64-6a2fa33628fd"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a7d16d8a-ba63-4b95-ba64-6a2fa33628fd"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-0134bfda-d662-4ded-a189-9594ee5520a0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0134bfda-d662-4ded-a189-9594ee5520a0"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-0134bfda-d662-4ded-a189-9594ee5520a0"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0134bfda-d662-4ded-a189-9594ee5520a0"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-0134bfda-d662-4ded-a189-9594ee5520a0"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0134bfda-d662-4ded-a189-9594ee5520a0"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-0134bfda-d662-4ded-a189-9594ee5520a0"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-4239a46b-e517-4f41-a443-b89eff11d9d8 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-be531544-afc8-450a-b318-3387819596c4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-be531544-afc8-450a-b318-3387819596c4"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-be531544-afc8-450a-b318-3387819596c4"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-be531544-afc8-450a-b318-3387819596c4"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-be531544-afc8-450a-b318-3387819596c4"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-be531544-afc8-450a-b318-3387819596c4"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-be531544-afc8-450a-b318-3387819596c4"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-02942829-fc6c-405c-8c86-cf656e1b981c {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-1f2a7553-5c36-4268-9300-e90e18b381a6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1f2a7553-5c36-4268-9300-e90e18b381a6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1f2a7553-5c36-4268-9300-e90e18b381a6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1f2a7553-5c36-4268-9300-e90e18b381a6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-362496c1-98fd-4108-a521-83cdcb38afeb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-362496c1-98fd-4108-a521-83cdcb38afeb"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-362496c1-98fd-4108-a521-83cdcb38afeb"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-362496c1-98fd-4108-a521-83cdcb38afeb"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-362496c1-98fd-4108-a521-83cdcb38afeb"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-362496c1-98fd-4108-a521-83cdcb38afeb"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-362496c1-98fd-4108-a521-83cdcb38afeb"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-69c312f2-4464-4f73-8992-47ec933c0fe7 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-86830cc3-149a-483c-9b09-e9a062aefaae"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-86830cc3-149a-483c-9b09-e9a062aefaae"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-86830cc3-149a-483c-9b09-e9a062aefaae"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-86830cc3-149a-483c-9b09-e9a062aefaae"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-86830cc3-149a-483c-9b09-e9a062aefaae"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-86830cc3-149a-483c-9b09-e9a062aefaae"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-86830cc3-149a-483c-9b09-e9a062aefaae"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-61d475d5-3e8a-4712-ae29-47036d9f744c {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-1f960006-a887-4f26-bfdd-553078128265"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1f960006-a887-4f26-bfdd-553078128265"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-1f960006-a887-4f26-bfdd-553078128265"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1f960006-a887-4f26-bfdd-553078128265"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-1f960006-a887-4f26-bfdd-553078128265"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1f960006-a887-4f26-bfdd-553078128265"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-1f960006-a887-4f26-bfdd-553078128265"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

#s-e55bff6c-3ee0-48f9-8617-c88465813c8b {
  max-width: 1920px;
aspect-ratio: 1920/1095;
text-align: center;
}

#s-e55bff6c-3ee0-48f9-8617-c88465813c8b {
  margin: 0 !important;
  overflow: visible;
}

#s-e55bff6c-3ee0-48f9-8617-c88465813c8b-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-e55bff6c-3ee0-48f9-8617-c88465813c8b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e55bff6c-3ee0-48f9-8617-c88465813c8b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e55bff6c-3ee0-48f9-8617-c88465813c8b img.shogun-image {
  /* Add background color handling */
  
}

#s-e55bff6c-3ee0-48f9-8617-c88465813c8b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e55bff6c-3ee0-48f9-8617-c88465813c8b .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-e55bff6c-3ee0-48f9-8617-c88465813c8b .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e55bff6c-3ee0-48f9-8617-c88465813c8b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e55bff6c-3ee0-48f9-8617-c88465813c8b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-e55bff6c-3ee0-48f9-8617-c88465813c8b .shogun-image-content {
  
    justify-content: center;
  
}

.s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image {
  box-sizing: border-box;
}



.s-e55bff6c-3ee0-48f9-8617-c88465813c8b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e55bff6c-3ee0-48f9-8617-c88465813c8b {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image-container {
      position: relative;
    }

    .s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e55bff6c-3ee0-48f9-8617-c88465813c8b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

@media (min-width: 1200px){#s-e55bff6c-3ee0-48f9-8617-c88465813c8b {
  margin: 0 !important;
  overflow: visible;
}

#s-e55bff6c-3ee0-48f9-8617-c88465813c8b-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-e55bff6c-3ee0-48f9-8617-c88465813c8b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e55bff6c-3ee0-48f9-8617-c88465813c8b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e55bff6c-3ee0-48f9-8617-c88465813c8b img.shogun-image {
  /* Add background color handling */
  
}

#s-e55bff6c-3ee0-48f9-8617-c88465813c8b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e55bff6c-3ee0-48f9-8617-c88465813c8b .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-e55bff6c-3ee0-48f9-8617-c88465813c8b .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e55bff6c-3ee0-48f9-8617-c88465813c8b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e55bff6c-3ee0-48f9-8617-c88465813c8b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-e55bff6c-3ee0-48f9-8617-c88465813c8b .shogun-image-content {
  
    justify-content: center;
  
}

.s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image {
  box-sizing: border-box;
}



.s-e55bff6c-3ee0-48f9-8617-c88465813c8b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e55bff6c-3ee0-48f9-8617-c88465813c8b {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image-container {
      position: relative;
    }

    .s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e55bff6c-3ee0-48f9-8617-c88465813c8b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-e55bff6c-3ee0-48f9-8617-c88465813c8b {
  margin: 0 !important;
  overflow: visible;
}

#s-e55bff6c-3ee0-48f9-8617-c88465813c8b-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-e55bff6c-3ee0-48f9-8617-c88465813c8b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e55bff6c-3ee0-48f9-8617-c88465813c8b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e55bff6c-3ee0-48f9-8617-c88465813c8b img.shogun-image {
  /* Add background color handling */
  
}

#s-e55bff6c-3ee0-48f9-8617-c88465813c8b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e55bff6c-3ee0-48f9-8617-c88465813c8b .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-e55bff6c-3ee0-48f9-8617-c88465813c8b .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e55bff6c-3ee0-48f9-8617-c88465813c8b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e55bff6c-3ee0-48f9-8617-c88465813c8b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-e55bff6c-3ee0-48f9-8617-c88465813c8b .shogun-image-content {
  
    justify-content: center;
  
}

.s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image {
  box-sizing: border-box;
}



.s-e55bff6c-3ee0-48f9-8617-c88465813c8b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e55bff6c-3ee0-48f9-8617-c88465813c8b {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image-container {
      position: relative;
    }

    .s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e55bff6c-3ee0-48f9-8617-c88465813c8b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-e55bff6c-3ee0-48f9-8617-c88465813c8b {
  margin: 0 !important;
  overflow: visible;
}

#s-e55bff6c-3ee0-48f9-8617-c88465813c8b-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-e55bff6c-3ee0-48f9-8617-c88465813c8b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e55bff6c-3ee0-48f9-8617-c88465813c8b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e55bff6c-3ee0-48f9-8617-c88465813c8b img.shogun-image {
  /* Add background color handling */
  
}

#s-e55bff6c-3ee0-48f9-8617-c88465813c8b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e55bff6c-3ee0-48f9-8617-c88465813c8b .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-e55bff6c-3ee0-48f9-8617-c88465813c8b .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e55bff6c-3ee0-48f9-8617-c88465813c8b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e55bff6c-3ee0-48f9-8617-c88465813c8b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-e55bff6c-3ee0-48f9-8617-c88465813c8b .shogun-image-content {
  
    justify-content: center;
  
}

.s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image {
  box-sizing: border-box;
}



.s-e55bff6c-3ee0-48f9-8617-c88465813c8b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e55bff6c-3ee0-48f9-8617-c88465813c8b {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image-container {
      position: relative;
    }

    .s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e55bff6c-3ee0-48f9-8617-c88465813c8b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (max-width: 767px){#s-e55bff6c-3ee0-48f9-8617-c88465813c8b {
  margin: 0 !important;
  overflow: visible;
}

#s-e55bff6c-3ee0-48f9-8617-c88465813c8b-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-e55bff6c-3ee0-48f9-8617-c88465813c8b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e55bff6c-3ee0-48f9-8617-c88465813c8b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e55bff6c-3ee0-48f9-8617-c88465813c8b img.shogun-image {
  /* Add background color handling */
  
}

#s-e55bff6c-3ee0-48f9-8617-c88465813c8b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e55bff6c-3ee0-48f9-8617-c88465813c8b .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-e55bff6c-3ee0-48f9-8617-c88465813c8b .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e55bff6c-3ee0-48f9-8617-c88465813c8b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e55bff6c-3ee0-48f9-8617-c88465813c8b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-e55bff6c-3ee0-48f9-8617-c88465813c8b .shogun-image-content {
  
    justify-content: center;
  
}

.s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image {
  box-sizing: border-box;
}



.s-e55bff6c-3ee0-48f9-8617-c88465813c8b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e55bff6c-3ee0-48f9-8617-c88465813c8b {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image-container {
      position: relative;
    }

    .s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e55bff6c-3ee0-48f9-8617-c88465813c8b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e55bff6c-3ee0-48f9-8617-c88465813c8b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}
#s-00f67e5d-9fe0-4b84-be0e-f9c8d33bb949 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 1%;
padding-right: 1%;
}

#s-ba2a4933-691f-42a3-945b-0b3bfbae436d {
  margin-left: 4%;
margin-right: 4%;
padding-top: 19px;
padding-left: 1%;
padding-bottom: 19px;
padding-right: 1%;
}

@media (min-width: 0px) {
[id="s-b029d72f-29b6-463d-a661-2a50aefb25f2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b029d72f-29b6-463d-a661-2a50aefb25f2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b029d72f-29b6-463d-a661-2a50aefb25f2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b029d72f-29b6-463d-a661-2a50aefb25f2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-ecb6579f-d4c0-4784-95a3-25fa408cffca"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ecb6579f-d4c0-4784-95a3-25fa408cffca"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ecb6579f-d4c0-4784-95a3-25fa408cffca"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ecb6579f-d4c0-4784-95a3-25fa408cffca"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ecb6579f-d4c0-4784-95a3-25fa408cffca"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ecb6579f-d4c0-4784-95a3-25fa408cffca"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ecb6579f-d4c0-4784-95a3-25fa408cffca"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-d22e188b-da1b-4c3a-8b90-c27e16a74aaf {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-5e3a5783-e264-4331-8aca-9d5713b3d312"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5e3a5783-e264-4331-8aca-9d5713b3d312"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5e3a5783-e264-4331-8aca-9d5713b3d312"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5e3a5783-e264-4331-8aca-9d5713b3d312"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5e3a5783-e264-4331-8aca-9d5713b3d312"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5e3a5783-e264-4331-8aca-9d5713b3d312"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5e3a5783-e264-4331-8aca-9d5713b3d312"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-aec084e9-ed78-4874-83f9-db1cef1cdf01 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-0ebab975-659a-458f-a431-d9e4f41d8468"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0ebab975-659a-458f-a431-d9e4f41d8468"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0ebab975-659a-458f-a431-d9e4f41d8468"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0ebab975-659a-458f-a431-d9e4f41d8468"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-7d97c944-7244-4f78-9c90-2ba2bbfed141"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7d97c944-7244-4f78-9c90-2ba2bbfed141"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7d97c944-7244-4f78-9c90-2ba2bbfed141"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7d97c944-7244-4f78-9c90-2ba2bbfed141"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7d97c944-7244-4f78-9c90-2ba2bbfed141"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7d97c944-7244-4f78-9c90-2ba2bbfed141"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7d97c944-7244-4f78-9c90-2ba2bbfed141"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-860c3428-4312-40b1-adf6-afd099ec2e57 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-3c061f95-9577-41af-a361-3862cc5abc4c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3c061f95-9577-41af-a361-3862cc5abc4c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3c061f95-9577-41af-a361-3862cc5abc4c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3c061f95-9577-41af-a361-3862cc5abc4c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3c061f95-9577-41af-a361-3862cc5abc4c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3c061f95-9577-41af-a361-3862cc5abc4c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3c061f95-9577-41af-a361-3862cc5abc4c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-1c06a018-42a0-4bd8-a62f-4cf14b5d273e {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-a52c7620-531d-4438-bec0-cfada3c97bb5 {
  margin-top: -10px;
margin-bottom: -10px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-a52c7620-531d-4438-bec0-cfada3c97bb5 hr {
  border-top: 1px solid #ddd;
}

@media (min-width: 0px) {
[id="s-28e86b04-3814-49e1-a788-f70a8061ea12"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-28e86b04-3814-49e1-a788-f70a8061ea12"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-28e86b04-3814-49e1-a788-f70a8061ea12"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-28e86b04-3814-49e1-a788-f70a8061ea12"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-8c11e7cc-aa45-4a9c-8507-e4897b381f0e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8c11e7cc-aa45-4a9c-8507-e4897b381f0e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8c11e7cc-aa45-4a9c-8507-e4897b381f0e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8c11e7cc-aa45-4a9c-8507-e4897b381f0e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8c11e7cc-aa45-4a9c-8507-e4897b381f0e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8c11e7cc-aa45-4a9c-8507-e4897b381f0e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8c11e7cc-aa45-4a9c-8507-e4897b381f0e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-92b4bdb7-327c-441e-832f-a9ee5569467d {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-e061e5b9-b318-4309-ad66-cee4ad718462"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e061e5b9-b318-4309-ad66-cee4ad718462"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e061e5b9-b318-4309-ad66-cee4ad718462"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e061e5b9-b318-4309-ad66-cee4ad718462"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e061e5b9-b318-4309-ad66-cee4ad718462"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e061e5b9-b318-4309-ad66-cee4ad718462"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e061e5b9-b318-4309-ad66-cee4ad718462"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-3caf3d2f-cb83-4a9c-9a6c-605faea1631f {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-53515241-1332-4040-aed6-c42e76b59442"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-53515241-1332-4040-aed6-c42e76b59442"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-53515241-1332-4040-aed6-c42e76b59442"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-53515241-1332-4040-aed6-c42e76b59442"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-759109ac-febe-4bac-9fb7-c02ae89774d6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-759109ac-febe-4bac-9fb7-c02ae89774d6"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-759109ac-febe-4bac-9fb7-c02ae89774d6"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-759109ac-febe-4bac-9fb7-c02ae89774d6"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-759109ac-febe-4bac-9fb7-c02ae89774d6"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-759109ac-febe-4bac-9fb7-c02ae89774d6"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-759109ac-febe-4bac-9fb7-c02ae89774d6"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-3afbff8f-5bcb-4baa-b583-edd2e5a54619 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-d47f75f9-3ecb-430e-81c4-ebe5cc8e3eb1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d47f75f9-3ecb-430e-81c4-ebe5cc8e3eb1"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d47f75f9-3ecb-430e-81c4-ebe5cc8e3eb1"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d47f75f9-3ecb-430e-81c4-ebe5cc8e3eb1"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d47f75f9-3ecb-430e-81c4-ebe5cc8e3eb1"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d47f75f9-3ecb-430e-81c4-ebe5cc8e3eb1"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d47f75f9-3ecb-430e-81c4-ebe5cc8e3eb1"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-b3b05280-7885-4994-96fa-26bd68114c10 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-2c01168d-5475-446e-a276-88f54b459027"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2c01168d-5475-446e-a276-88f54b459027"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2c01168d-5475-446e-a276-88f54b459027"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2c01168d-5475-446e-a276-88f54b459027"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2c01168d-5475-446e-a276-88f54b459027"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2c01168d-5475-446e-a276-88f54b459027"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2c01168d-5475-446e-a276-88f54b459027"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

#s-ebc40fe0-f39f-41e2-8666-c97922c3b656 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 0%;
padding-right: 0%;
}

#s-dc580f0f-ee38-4ae6-be72-f4b1e92b8819 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 20px;
padding-left: 1%;
padding-bottom: 20px;
padding-right: 1%;
}

#s-f31d5d4c-14de-4c71-bb1f-a89b7622531a {
  max-width: 1920px;
aspect-ratio: 1920/1095;
text-align: center;
}

#s-f31d5d4c-14de-4c71-bb1f-a89b7622531a {
  margin: 0 !important;
  overflow: visible;
}

#s-f31d5d4c-14de-4c71-bb1f-a89b7622531a-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-f31d5d4c-14de-4c71-bb1f-a89b7622531a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f31d5d4c-14de-4c71-bb1f-a89b7622531a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f31d5d4c-14de-4c71-bb1f-a89b7622531a img.shogun-image {
  /* Add background color handling */
  
}

#s-f31d5d4c-14de-4c71-bb1f-a89b7622531a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f31d5d4c-14de-4c71-bb1f-a89b7622531a .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-f31d5d4c-14de-4c71-bb1f-a89b7622531a .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f31d5d4c-14de-4c71-bb1f-a89b7622531a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f31d5d4c-14de-4c71-bb1f-a89b7622531a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-f31d5d4c-14de-4c71-bb1f-a89b7622531a .shogun-image-content {
  
    justify-content: center;
  
}

.s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image {
  box-sizing: border-box;
}



.s-f31d5d4c-14de-4c71-bb1f-a89b7622531a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f31d5d4c-14de-4c71-bb1f-a89b7622531a {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image-container {
      position: relative;
    }

    .s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f31d5d4c-14de-4c71-bb1f-a89b7622531a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

@media (min-width: 1200px){#s-f31d5d4c-14de-4c71-bb1f-a89b7622531a {
  margin: 0 !important;
  overflow: visible;
}

#s-f31d5d4c-14de-4c71-bb1f-a89b7622531a-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-f31d5d4c-14de-4c71-bb1f-a89b7622531a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f31d5d4c-14de-4c71-bb1f-a89b7622531a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f31d5d4c-14de-4c71-bb1f-a89b7622531a img.shogun-image {
  /* Add background color handling */
  
}

#s-f31d5d4c-14de-4c71-bb1f-a89b7622531a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f31d5d4c-14de-4c71-bb1f-a89b7622531a .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-f31d5d4c-14de-4c71-bb1f-a89b7622531a .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f31d5d4c-14de-4c71-bb1f-a89b7622531a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f31d5d4c-14de-4c71-bb1f-a89b7622531a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-f31d5d4c-14de-4c71-bb1f-a89b7622531a .shogun-image-content {
  
    justify-content: center;
  
}

.s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image {
  box-sizing: border-box;
}



.s-f31d5d4c-14de-4c71-bb1f-a89b7622531a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f31d5d4c-14de-4c71-bb1f-a89b7622531a {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image-container {
      position: relative;
    }

    .s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f31d5d4c-14de-4c71-bb1f-a89b7622531a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-f31d5d4c-14de-4c71-bb1f-a89b7622531a {
  margin: 0 !important;
  overflow: visible;
}

#s-f31d5d4c-14de-4c71-bb1f-a89b7622531a-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-f31d5d4c-14de-4c71-bb1f-a89b7622531a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f31d5d4c-14de-4c71-bb1f-a89b7622531a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f31d5d4c-14de-4c71-bb1f-a89b7622531a img.shogun-image {
  /* Add background color handling */
  
}

#s-f31d5d4c-14de-4c71-bb1f-a89b7622531a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f31d5d4c-14de-4c71-bb1f-a89b7622531a .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-f31d5d4c-14de-4c71-bb1f-a89b7622531a .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f31d5d4c-14de-4c71-bb1f-a89b7622531a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f31d5d4c-14de-4c71-bb1f-a89b7622531a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-f31d5d4c-14de-4c71-bb1f-a89b7622531a .shogun-image-content {
  
    justify-content: center;
  
}

.s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image {
  box-sizing: border-box;
}



.s-f31d5d4c-14de-4c71-bb1f-a89b7622531a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f31d5d4c-14de-4c71-bb1f-a89b7622531a {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image-container {
      position: relative;
    }

    .s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f31d5d4c-14de-4c71-bb1f-a89b7622531a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-f31d5d4c-14de-4c71-bb1f-a89b7622531a {
  margin: 0 !important;
  overflow: visible;
}

#s-f31d5d4c-14de-4c71-bb1f-a89b7622531a-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-f31d5d4c-14de-4c71-bb1f-a89b7622531a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f31d5d4c-14de-4c71-bb1f-a89b7622531a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f31d5d4c-14de-4c71-bb1f-a89b7622531a img.shogun-image {
  /* Add background color handling */
  
}

#s-f31d5d4c-14de-4c71-bb1f-a89b7622531a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f31d5d4c-14de-4c71-bb1f-a89b7622531a .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-f31d5d4c-14de-4c71-bb1f-a89b7622531a .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f31d5d4c-14de-4c71-bb1f-a89b7622531a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f31d5d4c-14de-4c71-bb1f-a89b7622531a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-f31d5d4c-14de-4c71-bb1f-a89b7622531a .shogun-image-content {
  
    justify-content: center;
  
}

.s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image {
  box-sizing: border-box;
}



.s-f31d5d4c-14de-4c71-bb1f-a89b7622531a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f31d5d4c-14de-4c71-bb1f-a89b7622531a {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image-container {
      position: relative;
    }

    .s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f31d5d4c-14de-4c71-bb1f-a89b7622531a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (max-width: 767px){#s-f31d5d4c-14de-4c71-bb1f-a89b7622531a {
  margin: 0 !important;
  overflow: visible;
}

#s-f31d5d4c-14de-4c71-bb1f-a89b7622531a-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-f31d5d4c-14de-4c71-bb1f-a89b7622531a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f31d5d4c-14de-4c71-bb1f-a89b7622531a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f31d5d4c-14de-4c71-bb1f-a89b7622531a img.shogun-image {
  /* Add background color handling */
  
}

#s-f31d5d4c-14de-4c71-bb1f-a89b7622531a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f31d5d4c-14de-4c71-bb1f-a89b7622531a .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-f31d5d4c-14de-4c71-bb1f-a89b7622531a .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f31d5d4c-14de-4c71-bb1f-a89b7622531a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f31d5d4c-14de-4c71-bb1f-a89b7622531a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-f31d5d4c-14de-4c71-bb1f-a89b7622531a .shogun-image-content {
  
    justify-content: center;
  
}

.s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image {
  box-sizing: border-box;
}



.s-f31d5d4c-14de-4c71-bb1f-a89b7622531a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f31d5d4c-14de-4c71-bb1f-a89b7622531a {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image-container {
      position: relative;
    }

    .s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f31d5d4c-14de-4c71-bb1f-a89b7622531a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f31d5d4c-14de-4c71-bb1f-a89b7622531a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}
@media (min-width: 0px) {
[id="s-66dc32e9-6cfb-429b-a9b3-8bc3fd00f884"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-66dc32e9-6cfb-429b-a9b3-8bc3fd00f884"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-66dc32e9-6cfb-429b-a9b3-8bc3fd00f884"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-66dc32e9-6cfb-429b-a9b3-8bc3fd00f884"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-df329232-f50f-452c-810e-48c03785f8f4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-df329232-f50f-452c-810e-48c03785f8f4"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-df329232-f50f-452c-810e-48c03785f8f4"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-df329232-f50f-452c-810e-48c03785f8f4"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-df329232-f50f-452c-810e-48c03785f8f4"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-df329232-f50f-452c-810e-48c03785f8f4"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-df329232-f50f-452c-810e-48c03785f8f4"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-2a1fed5c-b2ca-49aa-8c06-a78809932ffb {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-1e459e16-a572-4002-bb64-2801903cc7ef"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1e459e16-a572-4002-bb64-2801903cc7ef"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1e459e16-a572-4002-bb64-2801903cc7ef"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1e459e16-a572-4002-bb64-2801903cc7ef"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1e459e16-a572-4002-bb64-2801903cc7ef"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1e459e16-a572-4002-bb64-2801903cc7ef"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1e459e16-a572-4002-bb64-2801903cc7ef"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-e01fcbbd-d67e-4f3b-b15b-5c58b2b7730b {
  background-color: rgba(232, 232, 232, 1);
}
}
.shg-sld-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

#s-a15bc421-e490-4ef0-91de-20f8673db472 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
}

#s-a15bc421-e490-4ef0-91de-20f8673db472 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-a15bc421-e490-4ef0-91de-20f8673db472 .shg-sld-nav-button.shg-sld-left,
#s-a15bc421-e490-4ef0-91de-20f8673db472 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-eed5b47a-223b-48f4-bc3c-d888f44b1078 {
  margin-left: auto;
margin-right: auto;
max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-eed5b47a-223b-48f4-bc3c-d888f44b1078 {
  margin: 0 !important;
  overflow: visible;
}

#s-eed5b47a-223b-48f4-bc3c-d888f44b1078-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-eed5b47a-223b-48f4-bc3c-d888f44b1078 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-eed5b47a-223b-48f4-bc3c-d888f44b1078 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eed5b47a-223b-48f4-bc3c-d888f44b1078 img.shogun-image {
  /* Add background color handling */
  
}

#s-eed5b47a-223b-48f4-bc3c-d888f44b1078 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-eed5b47a-223b-48f4-bc3c-d888f44b1078 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-eed5b47a-223b-48f4-bc3c-d888f44b1078 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eed5b47a-223b-48f4-bc3c-d888f44b1078 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-eed5b47a-223b-48f4-bc3c-d888f44b1078 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-eed5b47a-223b-48f4-bc3c-d888f44b1078 .shogun-image-content {
  
    justify-content: center;
  
}

.s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image {
  box-sizing: border-box;
}



.s-eed5b47a-223b-48f4-bc3c-d888f44b1078 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-eed5b47a-223b-48f4-bc3c-d888f44b1078 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image-container {
      position: relative;
    }

    .s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eed5b47a-223b-48f4-bc3c-d888f44b1078 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-eed5b47a-223b-48f4-bc3c-d888f44b1078 {
  margin: 0 !important;
  overflow: visible;
}

#s-eed5b47a-223b-48f4-bc3c-d888f44b1078-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-eed5b47a-223b-48f4-bc3c-d888f44b1078 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-eed5b47a-223b-48f4-bc3c-d888f44b1078 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eed5b47a-223b-48f4-bc3c-d888f44b1078 img.shogun-image {
  /* Add background color handling */
  
}

#s-eed5b47a-223b-48f4-bc3c-d888f44b1078 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-eed5b47a-223b-48f4-bc3c-d888f44b1078 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-eed5b47a-223b-48f4-bc3c-d888f44b1078 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eed5b47a-223b-48f4-bc3c-d888f44b1078 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-eed5b47a-223b-48f4-bc3c-d888f44b1078 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-eed5b47a-223b-48f4-bc3c-d888f44b1078 .shogun-image-content {
  
    justify-content: center;
  
}

.s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image {
  box-sizing: border-box;
}



.s-eed5b47a-223b-48f4-bc3c-d888f44b1078 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-eed5b47a-223b-48f4-bc3c-d888f44b1078 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image-container {
      position: relative;
    }

    .s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eed5b47a-223b-48f4-bc3c-d888f44b1078 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-eed5b47a-223b-48f4-bc3c-d888f44b1078 {
  margin: 0 !important;
  overflow: visible;
}

#s-eed5b47a-223b-48f4-bc3c-d888f44b1078-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-eed5b47a-223b-48f4-bc3c-d888f44b1078 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-eed5b47a-223b-48f4-bc3c-d888f44b1078 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eed5b47a-223b-48f4-bc3c-d888f44b1078 img.shogun-image {
  /* Add background color handling */
  
}

#s-eed5b47a-223b-48f4-bc3c-d888f44b1078 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-eed5b47a-223b-48f4-bc3c-d888f44b1078 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-eed5b47a-223b-48f4-bc3c-d888f44b1078 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eed5b47a-223b-48f4-bc3c-d888f44b1078 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-eed5b47a-223b-48f4-bc3c-d888f44b1078 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-eed5b47a-223b-48f4-bc3c-d888f44b1078 .shogun-image-content {
  
    justify-content: center;
  
}

.s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image {
  box-sizing: border-box;
}



.s-eed5b47a-223b-48f4-bc3c-d888f44b1078 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-eed5b47a-223b-48f4-bc3c-d888f44b1078 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image-container {
      position: relative;
    }

    .s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eed5b47a-223b-48f4-bc3c-d888f44b1078 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-eed5b47a-223b-48f4-bc3c-d888f44b1078 {
  margin: 0 !important;
  overflow: visible;
}

#s-eed5b47a-223b-48f4-bc3c-d888f44b1078-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-eed5b47a-223b-48f4-bc3c-d888f44b1078 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-eed5b47a-223b-48f4-bc3c-d888f44b1078 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eed5b47a-223b-48f4-bc3c-d888f44b1078 img.shogun-image {
  /* Add background color handling */
  
}

#s-eed5b47a-223b-48f4-bc3c-d888f44b1078 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-eed5b47a-223b-48f4-bc3c-d888f44b1078 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-eed5b47a-223b-48f4-bc3c-d888f44b1078 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eed5b47a-223b-48f4-bc3c-d888f44b1078 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-eed5b47a-223b-48f4-bc3c-d888f44b1078 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-eed5b47a-223b-48f4-bc3c-d888f44b1078 .shogun-image-content {
  
    justify-content: center;
  
}

.s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image {
  box-sizing: border-box;
}



.s-eed5b47a-223b-48f4-bc3c-d888f44b1078 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-eed5b47a-223b-48f4-bc3c-d888f44b1078 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image-container {
      position: relative;
    }

    .s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eed5b47a-223b-48f4-bc3c-d888f44b1078 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-eed5b47a-223b-48f4-bc3c-d888f44b1078 {
  margin: 0 !important;
  overflow: visible;
}

#s-eed5b47a-223b-48f4-bc3c-d888f44b1078-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-eed5b47a-223b-48f4-bc3c-d888f44b1078 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-eed5b47a-223b-48f4-bc3c-d888f44b1078 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eed5b47a-223b-48f4-bc3c-d888f44b1078 img.shogun-image {
  /* Add background color handling */
  
}

#s-eed5b47a-223b-48f4-bc3c-d888f44b1078 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-eed5b47a-223b-48f4-bc3c-d888f44b1078 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-eed5b47a-223b-48f4-bc3c-d888f44b1078 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eed5b47a-223b-48f4-bc3c-d888f44b1078 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-eed5b47a-223b-48f4-bc3c-d888f44b1078 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-eed5b47a-223b-48f4-bc3c-d888f44b1078 .shogun-image-content {
  
    justify-content: center;
  
}

.s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image {
  box-sizing: border-box;
}



.s-eed5b47a-223b-48f4-bc3c-d888f44b1078 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-eed5b47a-223b-48f4-bc3c-d888f44b1078 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image-container {
      position: relative;
    }

    .s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eed5b47a-223b-48f4-bc3c-d888f44b1078.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eed5b47a-223b-48f4-bc3c-d888f44b1078 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-717f7be5-02a2-44e6-adc4-1441f9f84815 {
  margin-left: auto;
margin-right: auto;
max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-717f7be5-02a2-44e6-adc4-1441f9f84815 {
  margin: 0 !important;
  overflow: visible;
}

#s-717f7be5-02a2-44e6-adc4-1441f9f84815-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-717f7be5-02a2-44e6-adc4-1441f9f84815 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-717f7be5-02a2-44e6-adc4-1441f9f84815 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-717f7be5-02a2-44e6-adc4-1441f9f84815 img.shogun-image {
  /* Add background color handling */
  
}

#s-717f7be5-02a2-44e6-adc4-1441f9f84815 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-717f7be5-02a2-44e6-adc4-1441f9f84815 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-717f7be5-02a2-44e6-adc4-1441f9f84815 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-717f7be5-02a2-44e6-adc4-1441f9f84815 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-717f7be5-02a2-44e6-adc4-1441f9f84815 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-717f7be5-02a2-44e6-adc4-1441f9f84815 .shogun-image-content {
  
    justify-content: center;
  
}

.s-717f7be5-02a2-44e6-adc4-1441f9f84815.shg-align-container {
  display: flex;
  justify-content: center
}

.s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image {
  box-sizing: border-box;
}



.s-717f7be5-02a2-44e6-adc4-1441f9f84815 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-717f7be5-02a2-44e6-adc4-1441f9f84815 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image-container {
      position: relative;
    }

    .s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-717f7be5-02a2-44e6-adc4-1441f9f84815 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-717f7be5-02a2-44e6-adc4-1441f9f84815 {
  margin: 0 !important;
  overflow: visible;
}

#s-717f7be5-02a2-44e6-adc4-1441f9f84815-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-717f7be5-02a2-44e6-adc4-1441f9f84815 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-717f7be5-02a2-44e6-adc4-1441f9f84815 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-717f7be5-02a2-44e6-adc4-1441f9f84815 img.shogun-image {
  /* Add background color handling */
  
}

#s-717f7be5-02a2-44e6-adc4-1441f9f84815 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-717f7be5-02a2-44e6-adc4-1441f9f84815 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-717f7be5-02a2-44e6-adc4-1441f9f84815 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-717f7be5-02a2-44e6-adc4-1441f9f84815 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-717f7be5-02a2-44e6-adc4-1441f9f84815 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-717f7be5-02a2-44e6-adc4-1441f9f84815 .shogun-image-content {
  
    justify-content: center;
  
}

.s-717f7be5-02a2-44e6-adc4-1441f9f84815.shg-align-container {
  display: flex;
  justify-content: center
}

.s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image {
  box-sizing: border-box;
}



.s-717f7be5-02a2-44e6-adc4-1441f9f84815 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-717f7be5-02a2-44e6-adc4-1441f9f84815 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image-container {
      position: relative;
    }

    .s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-717f7be5-02a2-44e6-adc4-1441f9f84815 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-717f7be5-02a2-44e6-adc4-1441f9f84815 {
  margin: 0 !important;
  overflow: visible;
}

#s-717f7be5-02a2-44e6-adc4-1441f9f84815-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-717f7be5-02a2-44e6-adc4-1441f9f84815 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-717f7be5-02a2-44e6-adc4-1441f9f84815 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-717f7be5-02a2-44e6-adc4-1441f9f84815 img.shogun-image {
  /* Add background color handling */
  
}

#s-717f7be5-02a2-44e6-adc4-1441f9f84815 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-717f7be5-02a2-44e6-adc4-1441f9f84815 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-717f7be5-02a2-44e6-adc4-1441f9f84815 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-717f7be5-02a2-44e6-adc4-1441f9f84815 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-717f7be5-02a2-44e6-adc4-1441f9f84815 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-717f7be5-02a2-44e6-adc4-1441f9f84815 .shogun-image-content {
  
    justify-content: center;
  
}

.s-717f7be5-02a2-44e6-adc4-1441f9f84815.shg-align-container {
  display: flex;
  justify-content: center
}

.s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image {
  box-sizing: border-box;
}



.s-717f7be5-02a2-44e6-adc4-1441f9f84815 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-717f7be5-02a2-44e6-adc4-1441f9f84815 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image-container {
      position: relative;
    }

    .s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-717f7be5-02a2-44e6-adc4-1441f9f84815 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-717f7be5-02a2-44e6-adc4-1441f9f84815 {
  margin: 0 !important;
  overflow: visible;
}

#s-717f7be5-02a2-44e6-adc4-1441f9f84815-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-717f7be5-02a2-44e6-adc4-1441f9f84815 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-717f7be5-02a2-44e6-adc4-1441f9f84815 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-717f7be5-02a2-44e6-adc4-1441f9f84815 img.shogun-image {
  /* Add background color handling */
  
}

#s-717f7be5-02a2-44e6-adc4-1441f9f84815 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-717f7be5-02a2-44e6-adc4-1441f9f84815 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-717f7be5-02a2-44e6-adc4-1441f9f84815 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-717f7be5-02a2-44e6-adc4-1441f9f84815 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-717f7be5-02a2-44e6-adc4-1441f9f84815 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-717f7be5-02a2-44e6-adc4-1441f9f84815 .shogun-image-content {
  
    justify-content: center;
  
}

.s-717f7be5-02a2-44e6-adc4-1441f9f84815.shg-align-container {
  display: flex;
  justify-content: center
}

.s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image {
  box-sizing: border-box;
}



.s-717f7be5-02a2-44e6-adc4-1441f9f84815 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-717f7be5-02a2-44e6-adc4-1441f9f84815 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image-container {
      position: relative;
    }

    .s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-717f7be5-02a2-44e6-adc4-1441f9f84815 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-717f7be5-02a2-44e6-adc4-1441f9f84815 {
  margin: 0 !important;
  overflow: visible;
}

#s-717f7be5-02a2-44e6-adc4-1441f9f84815-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-717f7be5-02a2-44e6-adc4-1441f9f84815 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-717f7be5-02a2-44e6-adc4-1441f9f84815 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-717f7be5-02a2-44e6-adc4-1441f9f84815 img.shogun-image {
  /* Add background color handling */
  
}

#s-717f7be5-02a2-44e6-adc4-1441f9f84815 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-717f7be5-02a2-44e6-adc4-1441f9f84815 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-717f7be5-02a2-44e6-adc4-1441f9f84815 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-717f7be5-02a2-44e6-adc4-1441f9f84815 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-717f7be5-02a2-44e6-adc4-1441f9f84815 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-717f7be5-02a2-44e6-adc4-1441f9f84815 .shogun-image-content {
  
    justify-content: center;
  
}

.s-717f7be5-02a2-44e6-adc4-1441f9f84815.shg-align-container {
  display: flex;
  justify-content: center
}

.s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image {
  box-sizing: border-box;
}



.s-717f7be5-02a2-44e6-adc4-1441f9f84815 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-717f7be5-02a2-44e6-adc4-1441f9f84815 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image-container {
      position: relative;
    }

    .s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-717f7be5-02a2-44e6-adc4-1441f9f84815.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-717f7be5-02a2-44e6-adc4-1441f9f84815 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-8a793c80-580c-4349-b602-2db1dbf8b4f3 {
  margin-left: auto;
margin-right: auto;
max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-8a793c80-580c-4349-b602-2db1dbf8b4f3 {
  margin: 0 !important;
  overflow: visible;
}

#s-8a793c80-580c-4349-b602-2db1dbf8b4f3-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-8a793c80-580c-4349-b602-2db1dbf8b4f3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8a793c80-580c-4349-b602-2db1dbf8b4f3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8a793c80-580c-4349-b602-2db1dbf8b4f3 img.shogun-image {
  /* Add background color handling */
  
}

#s-8a793c80-580c-4349-b602-2db1dbf8b4f3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8a793c80-580c-4349-b602-2db1dbf8b4f3 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-8a793c80-580c-4349-b602-2db1dbf8b4f3 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8a793c80-580c-4349-b602-2db1dbf8b4f3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8a793c80-580c-4349-b602-2db1dbf8b4f3 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-8a793c80-580c-4349-b602-2db1dbf8b4f3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image {
  box-sizing: border-box;
}



.s-8a793c80-580c-4349-b602-2db1dbf8b4f3 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8a793c80-580c-4349-b602-2db1dbf8b4f3 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image-container {
      position: relative;
    }

    .s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8a793c80-580c-4349-b602-2db1dbf8b4f3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-8a793c80-580c-4349-b602-2db1dbf8b4f3 {
  margin: 0 !important;
  overflow: visible;
}

#s-8a793c80-580c-4349-b602-2db1dbf8b4f3-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-8a793c80-580c-4349-b602-2db1dbf8b4f3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8a793c80-580c-4349-b602-2db1dbf8b4f3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8a793c80-580c-4349-b602-2db1dbf8b4f3 img.shogun-image {
  /* Add background color handling */
  
}

#s-8a793c80-580c-4349-b602-2db1dbf8b4f3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8a793c80-580c-4349-b602-2db1dbf8b4f3 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-8a793c80-580c-4349-b602-2db1dbf8b4f3 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8a793c80-580c-4349-b602-2db1dbf8b4f3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8a793c80-580c-4349-b602-2db1dbf8b4f3 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-8a793c80-580c-4349-b602-2db1dbf8b4f3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image {
  box-sizing: border-box;
}



.s-8a793c80-580c-4349-b602-2db1dbf8b4f3 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8a793c80-580c-4349-b602-2db1dbf8b4f3 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image-container {
      position: relative;
    }

    .s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8a793c80-580c-4349-b602-2db1dbf8b4f3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-8a793c80-580c-4349-b602-2db1dbf8b4f3 {
  margin: 0 !important;
  overflow: visible;
}

#s-8a793c80-580c-4349-b602-2db1dbf8b4f3-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-8a793c80-580c-4349-b602-2db1dbf8b4f3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8a793c80-580c-4349-b602-2db1dbf8b4f3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8a793c80-580c-4349-b602-2db1dbf8b4f3 img.shogun-image {
  /* Add background color handling */
  
}

#s-8a793c80-580c-4349-b602-2db1dbf8b4f3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8a793c80-580c-4349-b602-2db1dbf8b4f3 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-8a793c80-580c-4349-b602-2db1dbf8b4f3 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8a793c80-580c-4349-b602-2db1dbf8b4f3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8a793c80-580c-4349-b602-2db1dbf8b4f3 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-8a793c80-580c-4349-b602-2db1dbf8b4f3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image {
  box-sizing: border-box;
}



.s-8a793c80-580c-4349-b602-2db1dbf8b4f3 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8a793c80-580c-4349-b602-2db1dbf8b4f3 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image-container {
      position: relative;
    }

    .s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8a793c80-580c-4349-b602-2db1dbf8b4f3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-8a793c80-580c-4349-b602-2db1dbf8b4f3 {
  margin: 0 !important;
  overflow: visible;
}

#s-8a793c80-580c-4349-b602-2db1dbf8b4f3-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-8a793c80-580c-4349-b602-2db1dbf8b4f3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8a793c80-580c-4349-b602-2db1dbf8b4f3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8a793c80-580c-4349-b602-2db1dbf8b4f3 img.shogun-image {
  /* Add background color handling */
  
}

#s-8a793c80-580c-4349-b602-2db1dbf8b4f3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8a793c80-580c-4349-b602-2db1dbf8b4f3 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-8a793c80-580c-4349-b602-2db1dbf8b4f3 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8a793c80-580c-4349-b602-2db1dbf8b4f3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8a793c80-580c-4349-b602-2db1dbf8b4f3 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-8a793c80-580c-4349-b602-2db1dbf8b4f3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image {
  box-sizing: border-box;
}



.s-8a793c80-580c-4349-b602-2db1dbf8b4f3 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8a793c80-580c-4349-b602-2db1dbf8b4f3 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image-container {
      position: relative;
    }

    .s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8a793c80-580c-4349-b602-2db1dbf8b4f3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-8a793c80-580c-4349-b602-2db1dbf8b4f3 {
  margin: 0 !important;
  overflow: visible;
}

#s-8a793c80-580c-4349-b602-2db1dbf8b4f3-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-8a793c80-580c-4349-b602-2db1dbf8b4f3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8a793c80-580c-4349-b602-2db1dbf8b4f3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8a793c80-580c-4349-b602-2db1dbf8b4f3 img.shogun-image {
  /* Add background color handling */
  
}

#s-8a793c80-580c-4349-b602-2db1dbf8b4f3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8a793c80-580c-4349-b602-2db1dbf8b4f3 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-8a793c80-580c-4349-b602-2db1dbf8b4f3 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8a793c80-580c-4349-b602-2db1dbf8b4f3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8a793c80-580c-4349-b602-2db1dbf8b4f3 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-8a793c80-580c-4349-b602-2db1dbf8b4f3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image {
  box-sizing: border-box;
}



.s-8a793c80-580c-4349-b602-2db1dbf8b4f3 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8a793c80-580c-4349-b602-2db1dbf8b4f3 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image-container {
      position: relative;
    }

    .s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8a793c80-580c-4349-b602-2db1dbf8b4f3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8a793c80-580c-4349-b602-2db1dbf8b4f3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-97ee9476-26a9-4715-8837-1bba0517368f {
  margin-left: auto;
margin-right: auto;
max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-97ee9476-26a9-4715-8837-1bba0517368f {
  margin: 0 !important;
  overflow: visible;
}

#s-97ee9476-26a9-4715-8837-1bba0517368f-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-97ee9476-26a9-4715-8837-1bba0517368f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-97ee9476-26a9-4715-8837-1bba0517368f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-97ee9476-26a9-4715-8837-1bba0517368f img.shogun-image {
  /* Add background color handling */
  
}

#s-97ee9476-26a9-4715-8837-1bba0517368f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-97ee9476-26a9-4715-8837-1bba0517368f .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-97ee9476-26a9-4715-8837-1bba0517368f .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-97ee9476-26a9-4715-8837-1bba0517368f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-97ee9476-26a9-4715-8837-1bba0517368f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-97ee9476-26a9-4715-8837-1bba0517368f .shogun-image-content {
  
    justify-content: center;
  
}

.s-97ee9476-26a9-4715-8837-1bba0517368f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image {
  box-sizing: border-box;
}



.s-97ee9476-26a9-4715-8837-1bba0517368f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-97ee9476-26a9-4715-8837-1bba0517368f {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image-container {
      position: relative;
    }

    .s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-97ee9476-26a9-4715-8837-1bba0517368f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-97ee9476-26a9-4715-8837-1bba0517368f {
  margin: 0 !important;
  overflow: visible;
}

#s-97ee9476-26a9-4715-8837-1bba0517368f-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-97ee9476-26a9-4715-8837-1bba0517368f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-97ee9476-26a9-4715-8837-1bba0517368f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-97ee9476-26a9-4715-8837-1bba0517368f img.shogun-image {
  /* Add background color handling */
  
}

#s-97ee9476-26a9-4715-8837-1bba0517368f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-97ee9476-26a9-4715-8837-1bba0517368f .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-97ee9476-26a9-4715-8837-1bba0517368f .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-97ee9476-26a9-4715-8837-1bba0517368f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-97ee9476-26a9-4715-8837-1bba0517368f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-97ee9476-26a9-4715-8837-1bba0517368f .shogun-image-content {
  
    justify-content: center;
  
}

.s-97ee9476-26a9-4715-8837-1bba0517368f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image {
  box-sizing: border-box;
}



.s-97ee9476-26a9-4715-8837-1bba0517368f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-97ee9476-26a9-4715-8837-1bba0517368f {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image-container {
      position: relative;
    }

    .s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-97ee9476-26a9-4715-8837-1bba0517368f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-97ee9476-26a9-4715-8837-1bba0517368f {
  margin: 0 !important;
  overflow: visible;
}

#s-97ee9476-26a9-4715-8837-1bba0517368f-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-97ee9476-26a9-4715-8837-1bba0517368f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-97ee9476-26a9-4715-8837-1bba0517368f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-97ee9476-26a9-4715-8837-1bba0517368f img.shogun-image {
  /* Add background color handling */
  
}

#s-97ee9476-26a9-4715-8837-1bba0517368f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-97ee9476-26a9-4715-8837-1bba0517368f .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-97ee9476-26a9-4715-8837-1bba0517368f .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-97ee9476-26a9-4715-8837-1bba0517368f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-97ee9476-26a9-4715-8837-1bba0517368f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-97ee9476-26a9-4715-8837-1bba0517368f .shogun-image-content {
  
    justify-content: center;
  
}

.s-97ee9476-26a9-4715-8837-1bba0517368f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image {
  box-sizing: border-box;
}



.s-97ee9476-26a9-4715-8837-1bba0517368f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-97ee9476-26a9-4715-8837-1bba0517368f {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image-container {
      position: relative;
    }

    .s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-97ee9476-26a9-4715-8837-1bba0517368f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-97ee9476-26a9-4715-8837-1bba0517368f {
  margin: 0 !important;
  overflow: visible;
}

#s-97ee9476-26a9-4715-8837-1bba0517368f-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-97ee9476-26a9-4715-8837-1bba0517368f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-97ee9476-26a9-4715-8837-1bba0517368f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-97ee9476-26a9-4715-8837-1bba0517368f img.shogun-image {
  /* Add background color handling */
  
}

#s-97ee9476-26a9-4715-8837-1bba0517368f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-97ee9476-26a9-4715-8837-1bba0517368f .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-97ee9476-26a9-4715-8837-1bba0517368f .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-97ee9476-26a9-4715-8837-1bba0517368f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-97ee9476-26a9-4715-8837-1bba0517368f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-97ee9476-26a9-4715-8837-1bba0517368f .shogun-image-content {
  
    justify-content: center;
  
}

.s-97ee9476-26a9-4715-8837-1bba0517368f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image {
  box-sizing: border-box;
}



.s-97ee9476-26a9-4715-8837-1bba0517368f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-97ee9476-26a9-4715-8837-1bba0517368f {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image-container {
      position: relative;
    }

    .s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-97ee9476-26a9-4715-8837-1bba0517368f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-97ee9476-26a9-4715-8837-1bba0517368f {
  margin: 0 !important;
  overflow: visible;
}

#s-97ee9476-26a9-4715-8837-1bba0517368f-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-97ee9476-26a9-4715-8837-1bba0517368f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-97ee9476-26a9-4715-8837-1bba0517368f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-97ee9476-26a9-4715-8837-1bba0517368f img.shogun-image {
  /* Add background color handling */
  
}

#s-97ee9476-26a9-4715-8837-1bba0517368f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-97ee9476-26a9-4715-8837-1bba0517368f .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-97ee9476-26a9-4715-8837-1bba0517368f .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-97ee9476-26a9-4715-8837-1bba0517368f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-97ee9476-26a9-4715-8837-1bba0517368f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-97ee9476-26a9-4715-8837-1bba0517368f .shogun-image-content {
  
    justify-content: center;
  
}

.s-97ee9476-26a9-4715-8837-1bba0517368f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image {
  box-sizing: border-box;
}



.s-97ee9476-26a9-4715-8837-1bba0517368f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-97ee9476-26a9-4715-8837-1bba0517368f {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image-container {
      position: relative;
    }

    .s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-97ee9476-26a9-4715-8837-1bba0517368f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-97ee9476-26a9-4715-8837-1bba0517368f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-03dbe5aa-8eed-492b-8c49-552737d63a4f {
  margin-left: auto;
margin-right: auto;
max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-03dbe5aa-8eed-492b-8c49-552737d63a4f {
  margin: 0 !important;
  overflow: visible;
}

#s-03dbe5aa-8eed-492b-8c49-552737d63a4f-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-03dbe5aa-8eed-492b-8c49-552737d63a4f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-03dbe5aa-8eed-492b-8c49-552737d63a4f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-03dbe5aa-8eed-492b-8c49-552737d63a4f img.shogun-image {
  /* Add background color handling */
  
}

#s-03dbe5aa-8eed-492b-8c49-552737d63a4f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-03dbe5aa-8eed-492b-8c49-552737d63a4f .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-03dbe5aa-8eed-492b-8c49-552737d63a4f .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-03dbe5aa-8eed-492b-8c49-552737d63a4f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-03dbe5aa-8eed-492b-8c49-552737d63a4f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-03dbe5aa-8eed-492b-8c49-552737d63a4f .shogun-image-content {
  
    justify-content: center;
  
}

.s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image {
  box-sizing: border-box;
}



.s-03dbe5aa-8eed-492b-8c49-552737d63a4f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-03dbe5aa-8eed-492b-8c49-552737d63a4f {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image-container {
      position: relative;
    }

    .s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-03dbe5aa-8eed-492b-8c49-552737d63a4f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-03dbe5aa-8eed-492b-8c49-552737d63a4f {
  margin: 0 !important;
  overflow: visible;
}

#s-03dbe5aa-8eed-492b-8c49-552737d63a4f-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-03dbe5aa-8eed-492b-8c49-552737d63a4f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-03dbe5aa-8eed-492b-8c49-552737d63a4f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-03dbe5aa-8eed-492b-8c49-552737d63a4f img.shogun-image {
  /* Add background color handling */
  
}

#s-03dbe5aa-8eed-492b-8c49-552737d63a4f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-03dbe5aa-8eed-492b-8c49-552737d63a4f .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-03dbe5aa-8eed-492b-8c49-552737d63a4f .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-03dbe5aa-8eed-492b-8c49-552737d63a4f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-03dbe5aa-8eed-492b-8c49-552737d63a4f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-03dbe5aa-8eed-492b-8c49-552737d63a4f .shogun-image-content {
  
    justify-content: center;
  
}

.s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image {
  box-sizing: border-box;
}



.s-03dbe5aa-8eed-492b-8c49-552737d63a4f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-03dbe5aa-8eed-492b-8c49-552737d63a4f {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image-container {
      position: relative;
    }

    .s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-03dbe5aa-8eed-492b-8c49-552737d63a4f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-03dbe5aa-8eed-492b-8c49-552737d63a4f {
  margin: 0 !important;
  overflow: visible;
}

#s-03dbe5aa-8eed-492b-8c49-552737d63a4f-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-03dbe5aa-8eed-492b-8c49-552737d63a4f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-03dbe5aa-8eed-492b-8c49-552737d63a4f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-03dbe5aa-8eed-492b-8c49-552737d63a4f img.shogun-image {
  /* Add background color handling */
  
}

#s-03dbe5aa-8eed-492b-8c49-552737d63a4f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-03dbe5aa-8eed-492b-8c49-552737d63a4f .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-03dbe5aa-8eed-492b-8c49-552737d63a4f .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-03dbe5aa-8eed-492b-8c49-552737d63a4f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-03dbe5aa-8eed-492b-8c49-552737d63a4f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-03dbe5aa-8eed-492b-8c49-552737d63a4f .shogun-image-content {
  
    justify-content: center;
  
}

.s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image {
  box-sizing: border-box;
}



.s-03dbe5aa-8eed-492b-8c49-552737d63a4f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-03dbe5aa-8eed-492b-8c49-552737d63a4f {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image-container {
      position: relative;
    }

    .s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-03dbe5aa-8eed-492b-8c49-552737d63a4f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-03dbe5aa-8eed-492b-8c49-552737d63a4f {
  margin: 0 !important;
  overflow: visible;
}

#s-03dbe5aa-8eed-492b-8c49-552737d63a4f-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-03dbe5aa-8eed-492b-8c49-552737d63a4f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-03dbe5aa-8eed-492b-8c49-552737d63a4f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-03dbe5aa-8eed-492b-8c49-552737d63a4f img.shogun-image {
  /* Add background color handling */
  
}

#s-03dbe5aa-8eed-492b-8c49-552737d63a4f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-03dbe5aa-8eed-492b-8c49-552737d63a4f .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-03dbe5aa-8eed-492b-8c49-552737d63a4f .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-03dbe5aa-8eed-492b-8c49-552737d63a4f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-03dbe5aa-8eed-492b-8c49-552737d63a4f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-03dbe5aa-8eed-492b-8c49-552737d63a4f .shogun-image-content {
  
    justify-content: center;
  
}

.s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image {
  box-sizing: border-box;
}



.s-03dbe5aa-8eed-492b-8c49-552737d63a4f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-03dbe5aa-8eed-492b-8c49-552737d63a4f {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image-container {
      position: relative;
    }

    .s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-03dbe5aa-8eed-492b-8c49-552737d63a4f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-03dbe5aa-8eed-492b-8c49-552737d63a4f {
  margin: 0 !important;
  overflow: visible;
}

#s-03dbe5aa-8eed-492b-8c49-552737d63a4f-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-03dbe5aa-8eed-492b-8c49-552737d63a4f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-03dbe5aa-8eed-492b-8c49-552737d63a4f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-03dbe5aa-8eed-492b-8c49-552737d63a4f img.shogun-image {
  /* Add background color handling */
  
}

#s-03dbe5aa-8eed-492b-8c49-552737d63a4f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-03dbe5aa-8eed-492b-8c49-552737d63a4f .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-03dbe5aa-8eed-492b-8c49-552737d63a4f .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-03dbe5aa-8eed-492b-8c49-552737d63a4f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-03dbe5aa-8eed-492b-8c49-552737d63a4f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-03dbe5aa-8eed-492b-8c49-552737d63a4f .shogun-image-content {
  
    justify-content: center;
  
}

.s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image {
  box-sizing: border-box;
}



.s-03dbe5aa-8eed-492b-8c49-552737d63a4f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-03dbe5aa-8eed-492b-8c49-552737d63a4f {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image-container {
      position: relative;
    }

    .s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-03dbe5aa-8eed-492b-8c49-552737d63a4f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-03dbe5aa-8eed-492b-8c49-552737d63a4f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf {
  margin-left: auto;
margin-right: auto;
max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf {
  margin: 0 !important;
  overflow: visible;
}

#s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf-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-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf img.shogun-image {
  /* Add background color handling */
  
}

#s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf .shogun-image-content {
  
    justify-content: center;
  
}

.s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image {
  box-sizing: border-box;
}



.s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image-container {
      position: relative;
    }

    .s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf {
  margin: 0 !important;
  overflow: visible;
}

#s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf-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-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf img.shogun-image {
  /* Add background color handling */
  
}

#s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf .shogun-image-content {
  
    justify-content: center;
  
}

.s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image {
  box-sizing: border-box;
}



.s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image-container {
      position: relative;
    }

    .s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf {
  margin: 0 !important;
  overflow: visible;
}

#s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf-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-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf img.shogun-image {
  /* Add background color handling */
  
}

#s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf .shogun-image-content {
  
    justify-content: center;
  
}

.s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image {
  box-sizing: border-box;
}



.s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image-container {
      position: relative;
    }

    .s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf {
  margin: 0 !important;
  overflow: visible;
}

#s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf-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-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf img.shogun-image {
  /* Add background color handling */
  
}

#s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf .shogun-image-content {
  
    justify-content: center;
  
}

.s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image {
  box-sizing: border-box;
}



.s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image-container {
      position: relative;
    }

    .s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf {
  margin: 0 !important;
  overflow: visible;
}

#s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf-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-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf img.shogun-image {
  /* Add background color handling */
  
}

#s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf .shogun-image-content {
  
    justify-content: center;
  
}

.s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image {
  box-sizing: border-box;
}



.s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image-container {
      position: relative;
    }

    .s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0c11e648-7e90-4edb-88d0-bf6a0af7c7bf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 {
  margin-left: auto;
margin-right: auto;
max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 {
  margin: 0 !important;
  overflow: visible;
}

#s-0b738a09-fb48-4cd6-a27f-f4af108e2b74-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-0b738a09-fb48-4cd6-a27f-f4af108e2b74 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 img.shogun-image {
  /* Add background color handling */
  
}

#s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image {
  box-sizing: border-box;
}



.s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image-container {
      position: relative;
    }

    .s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 {
  margin: 0 !important;
  overflow: visible;
}

#s-0b738a09-fb48-4cd6-a27f-f4af108e2b74-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-0b738a09-fb48-4cd6-a27f-f4af108e2b74 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 img.shogun-image {
  /* Add background color handling */
  
}

#s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image {
  box-sizing: border-box;
}



.s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image-container {
      position: relative;
    }

    .s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 {
  margin: 0 !important;
  overflow: visible;
}

#s-0b738a09-fb48-4cd6-a27f-f4af108e2b74-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-0b738a09-fb48-4cd6-a27f-f4af108e2b74 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 img.shogun-image {
  /* Add background color handling */
  
}

#s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image {
  box-sizing: border-box;
}



.s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image-container {
      position: relative;
    }

    .s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 {
  margin: 0 !important;
  overflow: visible;
}

#s-0b738a09-fb48-4cd6-a27f-f4af108e2b74-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-0b738a09-fb48-4cd6-a27f-f4af108e2b74 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 img.shogun-image {
  /* Add background color handling */
  
}

#s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image {
  box-sizing: border-box;
}



.s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image-container {
      position: relative;
    }

    .s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 {
  margin: 0 !important;
  overflow: visible;
}

#s-0b738a09-fb48-4cd6-a27f-f4af108e2b74-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-0b738a09-fb48-4cd6-a27f-f4af108e2b74 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 img.shogun-image {
  /* Add background color handling */
  
}

#s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image {
  box-sizing: border-box;
}



.s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image-container {
      position: relative;
    }

    .s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0b738a09-fb48-4cd6-a27f-f4af108e2b74.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0b738a09-fb48-4cd6-a27f-f4af108e2b74 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 {
  margin-left: auto;
margin-right: auto;
max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 {
  margin: 0 !important;
  overflow: visible;
}

#s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6-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-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 img.shogun-image {
  /* Add background color handling */
  
}

#s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image {
  box-sizing: border-box;
}



.s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image-container {
      position: relative;
    }

    .s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 {
  margin: 0 !important;
  overflow: visible;
}

#s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6-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-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 img.shogun-image {
  /* Add background color handling */
  
}

#s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image {
  box-sizing: border-box;
}



.s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image-container {
      position: relative;
    }

    .s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 {
  margin: 0 !important;
  overflow: visible;
}

#s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6-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-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 img.shogun-image {
  /* Add background color handling */
  
}

#s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image {
  box-sizing: border-box;
}



.s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image-container {
      position: relative;
    }

    .s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 {
  margin: 0 !important;
  overflow: visible;
}

#s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6-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-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 img.shogun-image {
  /* Add background color handling */
  
}

#s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image {
  box-sizing: border-box;
}



.s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image-container {
      position: relative;
    }

    .s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 {
  margin: 0 !important;
  overflow: visible;
}

#s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6-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-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 img.shogun-image {
  /* Add background color handling */
  
}

#s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image {
  box-sizing: border-box;
}



.s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image-container {
      position: relative;
    }

    .s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a6423285-3d93-47f6-bb8e-9d6e58f3e1a6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
@media (min-width: 0px) {
[id="s-a3806db4-33a1-411d-9e50-8d19a94ea822"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a3806db4-33a1-411d-9e50-8d19a94ea822"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a3806db4-33a1-411d-9e50-8d19a94ea822"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a3806db4-33a1-411d-9e50-8d19a94ea822"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-1034bc4f-435c-4388-8b1b-599d09615e4e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1034bc4f-435c-4388-8b1b-599d09615e4e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1034bc4f-435c-4388-8b1b-599d09615e4e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1034bc4f-435c-4388-8b1b-599d09615e4e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1034bc4f-435c-4388-8b1b-599d09615e4e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1034bc4f-435c-4388-8b1b-599d09615e4e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1034bc4f-435c-4388-8b1b-599d09615e4e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-ad14c4f1-4e9a-45a1-b1e0-5a34c32c5a3e {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-815dfe67-438d-438d-b10c-847a2e5e4336"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-815dfe67-438d-438d-b10c-847a2e5e4336"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-815dfe67-438d-438d-b10c-847a2e5e4336"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-815dfe67-438d-438d-b10c-847a2e5e4336"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-815dfe67-438d-438d-b10c-847a2e5e4336"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-815dfe67-438d-438d-b10c-847a2e5e4336"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-815dfe67-438d-438d-b10c-847a2e5e4336"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-e1b4dd97-ed72-4067-95d3-10734d40e6f8 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-a15d46c7-289e-48a5-beba-81f920ec7481"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a15d46c7-289e-48a5-beba-81f920ec7481"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a15d46c7-289e-48a5-beba-81f920ec7481"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a15d46c7-289e-48a5-beba-81f920ec7481"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-927a0a96-fb83-4cd0-adc2-1ef9e5051047"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-927a0a96-fb83-4cd0-adc2-1ef9e5051047"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-927a0a96-fb83-4cd0-adc2-1ef9e5051047"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-927a0a96-fb83-4cd0-adc2-1ef9e5051047"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-927a0a96-fb83-4cd0-adc2-1ef9e5051047"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-927a0a96-fb83-4cd0-adc2-1ef9e5051047"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-927a0a96-fb83-4cd0-adc2-1ef9e5051047"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-a73aec79-fea5-4f9c-ad26-ad5ccc193a15 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-a5e63ae1-7b20-44fb-a8dc-0455afbaa8ce"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a5e63ae1-7b20-44fb-a8dc-0455afbaa8ce"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a5e63ae1-7b20-44fb-a8dc-0455afbaa8ce"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a5e63ae1-7b20-44fb-a8dc-0455afbaa8ce"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a5e63ae1-7b20-44fb-a8dc-0455afbaa8ce"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a5e63ae1-7b20-44fb-a8dc-0455afbaa8ce"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a5e63ae1-7b20-44fb-a8dc-0455afbaa8ce"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-ca15e705-4b30-406d-8432-e1616e28fba0 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-bfd2b201-7129-4754-a35c-cb128f68ee4a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bfd2b201-7129-4754-a35c-cb128f68ee4a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-bfd2b201-7129-4754-a35c-cb128f68ee4a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-bfd2b201-7129-4754-a35c-cb128f68ee4a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-830fbc72-ea63-4c9d-ac11-de90ca024399"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-830fbc72-ea63-4c9d-ac11-de90ca024399"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-830fbc72-ea63-4c9d-ac11-de90ca024399"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-830fbc72-ea63-4c9d-ac11-de90ca024399"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-830fbc72-ea63-4c9d-ac11-de90ca024399"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-830fbc72-ea63-4c9d-ac11-de90ca024399"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-830fbc72-ea63-4c9d-ac11-de90ca024399"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-b44f51e8-52dc-402a-85f0-a27cf3cc81c6 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-5553c953-bdee-44eb-85a9-fe5f5772dbbe"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5553c953-bdee-44eb-85a9-fe5f5772dbbe"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5553c953-bdee-44eb-85a9-fe5f5772dbbe"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5553c953-bdee-44eb-85a9-fe5f5772dbbe"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5553c953-bdee-44eb-85a9-fe5f5772dbbe"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5553c953-bdee-44eb-85a9-fe5f5772dbbe"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5553c953-bdee-44eb-85a9-fe5f5772dbbe"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-7177204d-ebf1-461d-841a-099c153f8e6e {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-0384417b-02f4-4e6a-a9bf-72b0e78008fb {
  margin-top: -8px;
margin-bottom: -8px;
min-height: 50px;
}








#s-0384417b-02f4-4e6a-a9bf-72b0e78008fb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0384417b-02f4-4e6a-a9bf-72b0e78008fb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f71d5cb5-9a97-4468-ab71-f05817588259 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f71d5cb5-9a97-4468-ab71-f05817588259 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-49dcf8b6-d507-4741-918f-439f7d16c90c {
  margin-top: -8px;
margin-bottom: -8px;
min-height: 50px;
}








#s-49dcf8b6-d507-4741-918f-439f7d16c90c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-49dcf8b6-d507-4741-918f-439f7d16c90c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-f7d06d9e-4ce5-411a-a96a-9ddb9c295860"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f7d06d9e-4ce5-411a-a96a-9ddb9c295860"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f7d06d9e-4ce5-411a-a96a-9ddb9c295860"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f7d06d9e-4ce5-411a-a96a-9ddb9c295860"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-6238bd34-b03d-414a-b429-8b66260bd782 {
  max-width: 610px;
aspect-ratio: 610/208;
text-align: center;
}
@media (min-width: 1200px){#s-6238bd34-b03d-414a-b429-8b66260bd782 {
  max-width: 200px;
}
}
#s-6238bd34-b03d-414a-b429-8b66260bd782 {
  margin: 0 !important;
  overflow: visible;
}

#s-6238bd34-b03d-414a-b429-8b66260bd782-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-6238bd34-b03d-414a-b429-8b66260bd782 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6238bd34-b03d-414a-b429-8b66260bd782 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6238bd34-b03d-414a-b429-8b66260bd782 img.shogun-image {
  /* Add background color handling */
  
}

#s-6238bd34-b03d-414a-b429-8b66260bd782 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6238bd34-b03d-414a-b429-8b66260bd782 .shg-image-content-wrapper {
      aspect-ratio: 610/208;
      min-width: 100%;
      height: auto;
    }

    #s-6238bd34-b03d-414a-b429-8b66260bd782 .shogun-image-link {
      aspect-ratio: 610/208;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6238bd34-b03d-414a-b429-8b66260bd782 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6238bd34-b03d-414a-b429-8b66260bd782 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 610px;
  }



  img.s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image {
    
    
    
    max-height: 610px;
  }


.s-6238bd34-b03d-414a-b429-8b66260bd782 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6238bd34-b03d-414a-b429-8b66260bd782.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image {
  box-sizing: border-box;
}



.s-6238bd34-b03d-414a-b429-8b66260bd782 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6238bd34-b03d-414a-b429-8b66260bd782 {
      --shg-aspect-ratio: calc(610/208); 
    }

    .s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image-container {
      position: relative;
    }

    .s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6238bd34-b03d-414a-b429-8b66260bd782 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 610px;
    }
  }

@media (min-width: 1200px){#s-6238bd34-b03d-414a-b429-8b66260bd782 {
  margin: 0 !important;
  overflow: visible;
}

#s-6238bd34-b03d-414a-b429-8b66260bd782-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-6238bd34-b03d-414a-b429-8b66260bd782 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6238bd34-b03d-414a-b429-8b66260bd782 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6238bd34-b03d-414a-b429-8b66260bd782 img.shogun-image {
  /* Add background color handling */
  
}

#s-6238bd34-b03d-414a-b429-8b66260bd782 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6238bd34-b03d-414a-b429-8b66260bd782 .shg-image-content-wrapper {
      aspect-ratio: 610/208;
      min-width: 100%;
      height: auto;
    }

    #s-6238bd34-b03d-414a-b429-8b66260bd782 .shogun-image-link {
      aspect-ratio: 610/208;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6238bd34-b03d-414a-b429-8b66260bd782 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6238bd34-b03d-414a-b429-8b66260bd782 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 610px;
  }



  img.s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image {
    
    
    
    max-height: 610px;
  }


.s-6238bd34-b03d-414a-b429-8b66260bd782 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6238bd34-b03d-414a-b429-8b66260bd782.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image {
  box-sizing: border-box;
}



.s-6238bd34-b03d-414a-b429-8b66260bd782 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6238bd34-b03d-414a-b429-8b66260bd782 {
      --shg-aspect-ratio: calc(610/208); 
    }

    .s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image-container {
      position: relative;
    }

    .s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6238bd34-b03d-414a-b429-8b66260bd782 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 610px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-6238bd34-b03d-414a-b429-8b66260bd782 {
  margin: 0 !important;
  overflow: visible;
}

#s-6238bd34-b03d-414a-b429-8b66260bd782-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-6238bd34-b03d-414a-b429-8b66260bd782 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6238bd34-b03d-414a-b429-8b66260bd782 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6238bd34-b03d-414a-b429-8b66260bd782 img.shogun-image {
  /* Add background color handling */
  
}

#s-6238bd34-b03d-414a-b429-8b66260bd782 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6238bd34-b03d-414a-b429-8b66260bd782 .shg-image-content-wrapper {
      aspect-ratio: 610/208;
      min-width: 100%;
      height: auto;
    }

    #s-6238bd34-b03d-414a-b429-8b66260bd782 .shogun-image-link {
      aspect-ratio: 610/208;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6238bd34-b03d-414a-b429-8b66260bd782 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6238bd34-b03d-414a-b429-8b66260bd782 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 610px;
  }



  img.s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image {
    
    
    
    max-height: 610px;
  }


.s-6238bd34-b03d-414a-b429-8b66260bd782 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6238bd34-b03d-414a-b429-8b66260bd782.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image {
  box-sizing: border-box;
}



.s-6238bd34-b03d-414a-b429-8b66260bd782 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6238bd34-b03d-414a-b429-8b66260bd782 {
      --shg-aspect-ratio: calc(610/208); 
    }

    .s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image-container {
      position: relative;
    }

    .s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6238bd34-b03d-414a-b429-8b66260bd782 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 610px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-6238bd34-b03d-414a-b429-8b66260bd782 {
  margin: 0 !important;
  overflow: visible;
}

#s-6238bd34-b03d-414a-b429-8b66260bd782-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-6238bd34-b03d-414a-b429-8b66260bd782 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6238bd34-b03d-414a-b429-8b66260bd782 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6238bd34-b03d-414a-b429-8b66260bd782 img.shogun-image {
  /* Add background color handling */
  
}

#s-6238bd34-b03d-414a-b429-8b66260bd782 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6238bd34-b03d-414a-b429-8b66260bd782 .shg-image-content-wrapper {
      aspect-ratio: 610/208;
      min-width: 100%;
      height: auto;
    }

    #s-6238bd34-b03d-414a-b429-8b66260bd782 .shogun-image-link {
      aspect-ratio: 610/208;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6238bd34-b03d-414a-b429-8b66260bd782 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6238bd34-b03d-414a-b429-8b66260bd782 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 610px;
  }



  img.s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image {
    
    
    
    max-height: 610px;
  }


.s-6238bd34-b03d-414a-b429-8b66260bd782 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6238bd34-b03d-414a-b429-8b66260bd782.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image {
  box-sizing: border-box;
}



.s-6238bd34-b03d-414a-b429-8b66260bd782 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6238bd34-b03d-414a-b429-8b66260bd782 {
      --shg-aspect-ratio: calc(610/208); 
    }

    .s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image-container {
      position: relative;
    }

    .s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6238bd34-b03d-414a-b429-8b66260bd782 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 610px;
    }
  }

}@media (max-width: 767px){#s-6238bd34-b03d-414a-b429-8b66260bd782 {
  margin: 0 !important;
  overflow: visible;
}

#s-6238bd34-b03d-414a-b429-8b66260bd782-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-6238bd34-b03d-414a-b429-8b66260bd782 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6238bd34-b03d-414a-b429-8b66260bd782 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6238bd34-b03d-414a-b429-8b66260bd782 img.shogun-image {
  /* Add background color handling */
  
}

#s-6238bd34-b03d-414a-b429-8b66260bd782 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6238bd34-b03d-414a-b429-8b66260bd782 .shg-image-content-wrapper {
      aspect-ratio: 610/208;
      min-width: 100%;
      height: auto;
    }

    #s-6238bd34-b03d-414a-b429-8b66260bd782 .shogun-image-link {
      aspect-ratio: 610/208;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6238bd34-b03d-414a-b429-8b66260bd782 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6238bd34-b03d-414a-b429-8b66260bd782 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 610px;
  }



  img.s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image {
    
    
    
    max-height: 610px;
  }


.s-6238bd34-b03d-414a-b429-8b66260bd782 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6238bd34-b03d-414a-b429-8b66260bd782.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image {
  box-sizing: border-box;
}



.s-6238bd34-b03d-414a-b429-8b66260bd782 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6238bd34-b03d-414a-b429-8b66260bd782 {
      --shg-aspect-ratio: calc(610/208); 
    }

    .s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image-container {
      position: relative;
    }

    .s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6238bd34-b03d-414a-b429-8b66260bd782.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6238bd34-b03d-414a-b429-8b66260bd782 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 610px;
    }
  }

}
@media (min-width: 1200px){#s-c1b8a0fb-f0a1-46aa-9487-10f02b1870fa {
  margin-top: 10px;
margin-left: 5%;
margin-bottom: 10px;
margin-right: 5%;
min-height: 0px;
}
}
#s-4a2fad10-7317-44a9-95f0-78178488a79c {
  margin-top: -8px;
margin-bottom: -8px;
min-height: 50px;
}








#s-4a2fad10-7317-44a9-95f0-78178488a79c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4a2fad10-7317-44a9-95f0-78178488a79c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0db6ca68-d17c-43ea-9aaa-4d2a13c77274 {
  margin-top: -8px;
margin-bottom: -8px;
min-height: 50px;
}








#s-0db6ca68-d17c-43ea-9aaa-4d2a13c77274 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0db6ca68-d17c-43ea-9aaa-4d2a13c77274.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-dbdd65d7-d2a9-40b4-95cf-e297bcf3268a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-dbdd65d7-d2a9-40b4-95cf-e297bcf3268a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-dbdd65d7-d2a9-40b4-95cf-e297bcf3268a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-dbdd65d7-d2a9-40b4-95cf-e297bcf3268a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-00fb9548-7d89-477b-b0d5-f31f7f54f3db {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-00fb9548-7d89-477b-b0d5-f31f7f54f3db {
  margin: 0 !important;
  overflow: visible;
}

#s-00fb9548-7d89-477b-b0d5-f31f7f54f3db-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-00fb9548-7d89-477b-b0d5-f31f7f54f3db {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-00fb9548-7d89-477b-b0d5-f31f7f54f3db {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-00fb9548-7d89-477b-b0d5-f31f7f54f3db img.shogun-image {
  /* Add background color handling */
  
}

#s-00fb9548-7d89-477b-b0d5-f31f7f54f3db img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-00fb9548-7d89-477b-b0d5-f31f7f54f3db .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-00fb9548-7d89-477b-b0d5-f31f7f54f3db .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-00fb9548-7d89-477b-b0d5-f31f7f54f3db .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-00fb9548-7d89-477b-b0d5-f31f7f54f3db img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-00fb9548-7d89-477b-b0d5-f31f7f54f3db .shogun-image-content {
  
    justify-content: center;
  
}

.s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image {
  box-sizing: border-box;
}



.s-00fb9548-7d89-477b-b0d5-f31f7f54f3db img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-00fb9548-7d89-477b-b0d5-f31f7f54f3db {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image-container {
      position: relative;
    }

    .s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-00fb9548-7d89-477b-b0d5-f31f7f54f3db img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-00fb9548-7d89-477b-b0d5-f31f7f54f3db {
  margin: 0 !important;
  overflow: visible;
}

#s-00fb9548-7d89-477b-b0d5-f31f7f54f3db-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-00fb9548-7d89-477b-b0d5-f31f7f54f3db {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-00fb9548-7d89-477b-b0d5-f31f7f54f3db {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-00fb9548-7d89-477b-b0d5-f31f7f54f3db img.shogun-image {
  /* Add background color handling */
  
}

#s-00fb9548-7d89-477b-b0d5-f31f7f54f3db img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-00fb9548-7d89-477b-b0d5-f31f7f54f3db .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-00fb9548-7d89-477b-b0d5-f31f7f54f3db .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-00fb9548-7d89-477b-b0d5-f31f7f54f3db .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-00fb9548-7d89-477b-b0d5-f31f7f54f3db img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-00fb9548-7d89-477b-b0d5-f31f7f54f3db .shogun-image-content {
  
    justify-content: center;
  
}

.s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image {
  box-sizing: border-box;
}



.s-00fb9548-7d89-477b-b0d5-f31f7f54f3db img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-00fb9548-7d89-477b-b0d5-f31f7f54f3db {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image-container {
      position: relative;
    }

    .s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-00fb9548-7d89-477b-b0d5-f31f7f54f3db img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-00fb9548-7d89-477b-b0d5-f31f7f54f3db {
  margin: 0 !important;
  overflow: visible;
}

#s-00fb9548-7d89-477b-b0d5-f31f7f54f3db-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-00fb9548-7d89-477b-b0d5-f31f7f54f3db {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-00fb9548-7d89-477b-b0d5-f31f7f54f3db {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-00fb9548-7d89-477b-b0d5-f31f7f54f3db img.shogun-image {
  /* Add background color handling */
  
}

#s-00fb9548-7d89-477b-b0d5-f31f7f54f3db img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-00fb9548-7d89-477b-b0d5-f31f7f54f3db .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-00fb9548-7d89-477b-b0d5-f31f7f54f3db .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-00fb9548-7d89-477b-b0d5-f31f7f54f3db .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-00fb9548-7d89-477b-b0d5-f31f7f54f3db img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-00fb9548-7d89-477b-b0d5-f31f7f54f3db .shogun-image-content {
  
    justify-content: center;
  
}

.s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image {
  box-sizing: border-box;
}



.s-00fb9548-7d89-477b-b0d5-f31f7f54f3db img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-00fb9548-7d89-477b-b0d5-f31f7f54f3db {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image-container {
      position: relative;
    }

    .s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-00fb9548-7d89-477b-b0d5-f31f7f54f3db img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-00fb9548-7d89-477b-b0d5-f31f7f54f3db {
  margin: 0 !important;
  overflow: visible;
}

#s-00fb9548-7d89-477b-b0d5-f31f7f54f3db-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-00fb9548-7d89-477b-b0d5-f31f7f54f3db {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-00fb9548-7d89-477b-b0d5-f31f7f54f3db {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-00fb9548-7d89-477b-b0d5-f31f7f54f3db img.shogun-image {
  /* Add background color handling */
  
}

#s-00fb9548-7d89-477b-b0d5-f31f7f54f3db img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-00fb9548-7d89-477b-b0d5-f31f7f54f3db .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-00fb9548-7d89-477b-b0d5-f31f7f54f3db .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-00fb9548-7d89-477b-b0d5-f31f7f54f3db .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-00fb9548-7d89-477b-b0d5-f31f7f54f3db img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-00fb9548-7d89-477b-b0d5-f31f7f54f3db .shogun-image-content {
  
    justify-content: center;
  
}

.s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image {
  box-sizing: border-box;
}



.s-00fb9548-7d89-477b-b0d5-f31f7f54f3db img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-00fb9548-7d89-477b-b0d5-f31f7f54f3db {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image-container {
      position: relative;
    }

    .s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-00fb9548-7d89-477b-b0d5-f31f7f54f3db img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-00fb9548-7d89-477b-b0d5-f31f7f54f3db {
  margin: 0 !important;
  overflow: visible;
}

#s-00fb9548-7d89-477b-b0d5-f31f7f54f3db-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-00fb9548-7d89-477b-b0d5-f31f7f54f3db {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-00fb9548-7d89-477b-b0d5-f31f7f54f3db {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-00fb9548-7d89-477b-b0d5-f31f7f54f3db img.shogun-image {
  /* Add background color handling */
  
}

#s-00fb9548-7d89-477b-b0d5-f31f7f54f3db img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-00fb9548-7d89-477b-b0d5-f31f7f54f3db .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-00fb9548-7d89-477b-b0d5-f31f7f54f3db .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-00fb9548-7d89-477b-b0d5-f31f7f54f3db .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-00fb9548-7d89-477b-b0d5-f31f7f54f3db img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-00fb9548-7d89-477b-b0d5-f31f7f54f3db .shogun-image-content {
  
    justify-content: center;
  
}

.s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image {
  box-sizing: border-box;
}



.s-00fb9548-7d89-477b-b0d5-f31f7f54f3db img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-00fb9548-7d89-477b-b0d5-f31f7f54f3db {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image-container {
      position: relative;
    }

    .s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-00fb9548-7d89-477b-b0d5-f31f7f54f3db.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-00fb9548-7d89-477b-b0d5-f31f7f54f3db img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d {
  margin: 0 !important;
  overflow: visible;
}

#s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d-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-26ecd6aa-0760-4398-8ba8-7f2dfffb087d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d img.shogun-image {
  /* Add background color handling */
  
}

#s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d .shogun-image-content {
  
    justify-content: center;
  
}

.s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image {
  box-sizing: border-box;
}



.s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image-container {
      position: relative;
    }

    .s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d {
  margin: 0 !important;
  overflow: visible;
}

#s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d-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-26ecd6aa-0760-4398-8ba8-7f2dfffb087d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d img.shogun-image {
  /* Add background color handling */
  
}

#s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d .shogun-image-content {
  
    justify-content: center;
  
}

.s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image {
  box-sizing: border-box;
}



.s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image-container {
      position: relative;
    }

    .s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d {
  margin: 0 !important;
  overflow: visible;
}

#s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d-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-26ecd6aa-0760-4398-8ba8-7f2dfffb087d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d img.shogun-image {
  /* Add background color handling */
  
}

#s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d .shogun-image-content {
  
    justify-content: center;
  
}

.s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image {
  box-sizing: border-box;
}



.s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image-container {
      position: relative;
    }

    .s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d {
  margin: 0 !important;
  overflow: visible;
}

#s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d-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-26ecd6aa-0760-4398-8ba8-7f2dfffb087d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d img.shogun-image {
  /* Add background color handling */
  
}

#s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d .shogun-image-content {
  
    justify-content: center;
  
}

.s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image {
  box-sizing: border-box;
}



.s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image-container {
      position: relative;
    }

    .s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d {
  margin: 0 !important;
  overflow: visible;
}

#s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d-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-26ecd6aa-0760-4398-8ba8-7f2dfffb087d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d img.shogun-image {
  /* Add background color handling */
  
}

#s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d .shogun-image-content {
  
    justify-content: center;
  
}

.s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image {
  box-sizing: border-box;
}



.s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image-container {
      position: relative;
    }

    .s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-26ecd6aa-0760-4398-8ba8-7f2dfffb087d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
@media (min-width: 0px) {
[id="s-56dc2819-b8ad-4e28-a347-4e889746e043"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-56dc2819-b8ad-4e28-a347-4e889746e043"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-56dc2819-b8ad-4e28-a347-4e889746e043"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-56dc2819-b8ad-4e28-a347-4e889746e043"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-01371c14-8575-4578-bb40-3806416a1985 {
  max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-01371c14-8575-4578-bb40-3806416a1985 {
  margin: 0 !important;
  overflow: visible;
}

#s-01371c14-8575-4578-bb40-3806416a1985-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-01371c14-8575-4578-bb40-3806416a1985 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-01371c14-8575-4578-bb40-3806416a1985 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-01371c14-8575-4578-bb40-3806416a1985 img.shogun-image {
  /* Add background color handling */
  
}

#s-01371c14-8575-4578-bb40-3806416a1985 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-01371c14-8575-4578-bb40-3806416a1985 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-01371c14-8575-4578-bb40-3806416a1985 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-01371c14-8575-4578-bb40-3806416a1985 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-01371c14-8575-4578-bb40-3806416a1985.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-01371c14-8575-4578-bb40-3806416a1985 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-01371c14-8575-4578-bb40-3806416a1985.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-01371c14-8575-4578-bb40-3806416a1985 .shogun-image-content {
  
    justify-content: center;
  
}

.s-01371c14-8575-4578-bb40-3806416a1985.shg-align-container {
  display: flex;
  justify-content: center
}

.s-01371c14-8575-4578-bb40-3806416a1985.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-01371c14-8575-4578-bb40-3806416a1985.shogun-image {
  box-sizing: border-box;
}



.s-01371c14-8575-4578-bb40-3806416a1985 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-01371c14-8575-4578-bb40-3806416a1985 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-01371c14-8575-4578-bb40-3806416a1985.shogun-image-container {
      position: relative;
    }

    .s-01371c14-8575-4578-bb40-3806416a1985.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-01371c14-8575-4578-bb40-3806416a1985.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-01371c14-8575-4578-bb40-3806416a1985 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-01371c14-8575-4578-bb40-3806416a1985 {
  margin: 0 !important;
  overflow: visible;
}

#s-01371c14-8575-4578-bb40-3806416a1985-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-01371c14-8575-4578-bb40-3806416a1985 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-01371c14-8575-4578-bb40-3806416a1985 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-01371c14-8575-4578-bb40-3806416a1985 img.shogun-image {
  /* Add background color handling */
  
}

#s-01371c14-8575-4578-bb40-3806416a1985 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-01371c14-8575-4578-bb40-3806416a1985 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-01371c14-8575-4578-bb40-3806416a1985 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-01371c14-8575-4578-bb40-3806416a1985 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-01371c14-8575-4578-bb40-3806416a1985.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-01371c14-8575-4578-bb40-3806416a1985 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-01371c14-8575-4578-bb40-3806416a1985.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-01371c14-8575-4578-bb40-3806416a1985 .shogun-image-content {
  
    justify-content: center;
  
}

.s-01371c14-8575-4578-bb40-3806416a1985.shg-align-container {
  display: flex;
  justify-content: center
}

.s-01371c14-8575-4578-bb40-3806416a1985.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-01371c14-8575-4578-bb40-3806416a1985.shogun-image {
  box-sizing: border-box;
}



.s-01371c14-8575-4578-bb40-3806416a1985 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-01371c14-8575-4578-bb40-3806416a1985 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-01371c14-8575-4578-bb40-3806416a1985.shogun-image-container {
      position: relative;
    }

    .s-01371c14-8575-4578-bb40-3806416a1985.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-01371c14-8575-4578-bb40-3806416a1985.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-01371c14-8575-4578-bb40-3806416a1985 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-01371c14-8575-4578-bb40-3806416a1985 {
  margin: 0 !important;
  overflow: visible;
}

#s-01371c14-8575-4578-bb40-3806416a1985-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-01371c14-8575-4578-bb40-3806416a1985 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-01371c14-8575-4578-bb40-3806416a1985 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-01371c14-8575-4578-bb40-3806416a1985 img.shogun-image {
  /* Add background color handling */
  
}

#s-01371c14-8575-4578-bb40-3806416a1985 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-01371c14-8575-4578-bb40-3806416a1985 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-01371c14-8575-4578-bb40-3806416a1985 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-01371c14-8575-4578-bb40-3806416a1985 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-01371c14-8575-4578-bb40-3806416a1985.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-01371c14-8575-4578-bb40-3806416a1985 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-01371c14-8575-4578-bb40-3806416a1985.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-01371c14-8575-4578-bb40-3806416a1985 .shogun-image-content {
  
    justify-content: center;
  
}

.s-01371c14-8575-4578-bb40-3806416a1985.shg-align-container {
  display: flex;
  justify-content: center
}

.s-01371c14-8575-4578-bb40-3806416a1985.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-01371c14-8575-4578-bb40-3806416a1985.shogun-image {
  box-sizing: border-box;
}



.s-01371c14-8575-4578-bb40-3806416a1985 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-01371c14-8575-4578-bb40-3806416a1985 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-01371c14-8575-4578-bb40-3806416a1985.shogun-image-container {
      position: relative;
    }

    .s-01371c14-8575-4578-bb40-3806416a1985.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-01371c14-8575-4578-bb40-3806416a1985.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-01371c14-8575-4578-bb40-3806416a1985 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-01371c14-8575-4578-bb40-3806416a1985 {
  margin: 0 !important;
  overflow: visible;
}

#s-01371c14-8575-4578-bb40-3806416a1985-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-01371c14-8575-4578-bb40-3806416a1985 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-01371c14-8575-4578-bb40-3806416a1985 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-01371c14-8575-4578-bb40-3806416a1985 img.shogun-image {
  /* Add background color handling */
  
}

#s-01371c14-8575-4578-bb40-3806416a1985 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-01371c14-8575-4578-bb40-3806416a1985 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-01371c14-8575-4578-bb40-3806416a1985 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-01371c14-8575-4578-bb40-3806416a1985 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-01371c14-8575-4578-bb40-3806416a1985.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-01371c14-8575-4578-bb40-3806416a1985 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-01371c14-8575-4578-bb40-3806416a1985.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-01371c14-8575-4578-bb40-3806416a1985 .shogun-image-content {
  
    justify-content: center;
  
}

.s-01371c14-8575-4578-bb40-3806416a1985.shg-align-container {
  display: flex;
  justify-content: center
}

.s-01371c14-8575-4578-bb40-3806416a1985.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-01371c14-8575-4578-bb40-3806416a1985.shogun-image {
  box-sizing: border-box;
}



.s-01371c14-8575-4578-bb40-3806416a1985 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-01371c14-8575-4578-bb40-3806416a1985 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-01371c14-8575-4578-bb40-3806416a1985.shogun-image-container {
      position: relative;
    }

    .s-01371c14-8575-4578-bb40-3806416a1985.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-01371c14-8575-4578-bb40-3806416a1985.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-01371c14-8575-4578-bb40-3806416a1985 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-01371c14-8575-4578-bb40-3806416a1985 {
  margin: 0 !important;
  overflow: visible;
}

#s-01371c14-8575-4578-bb40-3806416a1985-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-01371c14-8575-4578-bb40-3806416a1985 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-01371c14-8575-4578-bb40-3806416a1985 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-01371c14-8575-4578-bb40-3806416a1985 img.shogun-image {
  /* Add background color handling */
  
}

#s-01371c14-8575-4578-bb40-3806416a1985 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-01371c14-8575-4578-bb40-3806416a1985 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-01371c14-8575-4578-bb40-3806416a1985 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-01371c14-8575-4578-bb40-3806416a1985 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-01371c14-8575-4578-bb40-3806416a1985.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-01371c14-8575-4578-bb40-3806416a1985 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-01371c14-8575-4578-bb40-3806416a1985.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-01371c14-8575-4578-bb40-3806416a1985 .shogun-image-content {
  
    justify-content: center;
  
}

.s-01371c14-8575-4578-bb40-3806416a1985.shg-align-container {
  display: flex;
  justify-content: center
}

.s-01371c14-8575-4578-bb40-3806416a1985.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-01371c14-8575-4578-bb40-3806416a1985.shogun-image {
  box-sizing: border-box;
}



.s-01371c14-8575-4578-bb40-3806416a1985 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-01371c14-8575-4578-bb40-3806416a1985 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-01371c14-8575-4578-bb40-3806416a1985.shogun-image-container {
      position: relative;
    }

    .s-01371c14-8575-4578-bb40-3806416a1985.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-01371c14-8575-4578-bb40-3806416a1985.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-01371c14-8575-4578-bb40-3806416a1985 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-2461eba1-5084-4324-a65d-26c1783770f6 {
  max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-2461eba1-5084-4324-a65d-26c1783770f6 {
  margin: 0 !important;
  overflow: visible;
}

#s-2461eba1-5084-4324-a65d-26c1783770f6-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-2461eba1-5084-4324-a65d-26c1783770f6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2461eba1-5084-4324-a65d-26c1783770f6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2461eba1-5084-4324-a65d-26c1783770f6 img.shogun-image {
  /* Add background color handling */
  
}

#s-2461eba1-5084-4324-a65d-26c1783770f6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2461eba1-5084-4324-a65d-26c1783770f6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2461eba1-5084-4324-a65d-26c1783770f6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2461eba1-5084-4324-a65d-26c1783770f6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2461eba1-5084-4324-a65d-26c1783770f6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-2461eba1-5084-4324-a65d-26c1783770f6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2461eba1-5084-4324-a65d-26c1783770f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image {
  box-sizing: border-box;
}



.s-2461eba1-5084-4324-a65d-26c1783770f6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2461eba1-5084-4324-a65d-26c1783770f6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image-container {
      position: relative;
    }

    .s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2461eba1-5084-4324-a65d-26c1783770f6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-2461eba1-5084-4324-a65d-26c1783770f6 {
  margin: 0 !important;
  overflow: visible;
}

#s-2461eba1-5084-4324-a65d-26c1783770f6-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-2461eba1-5084-4324-a65d-26c1783770f6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2461eba1-5084-4324-a65d-26c1783770f6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2461eba1-5084-4324-a65d-26c1783770f6 img.shogun-image {
  /* Add background color handling */
  
}

#s-2461eba1-5084-4324-a65d-26c1783770f6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2461eba1-5084-4324-a65d-26c1783770f6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2461eba1-5084-4324-a65d-26c1783770f6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2461eba1-5084-4324-a65d-26c1783770f6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2461eba1-5084-4324-a65d-26c1783770f6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-2461eba1-5084-4324-a65d-26c1783770f6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2461eba1-5084-4324-a65d-26c1783770f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image {
  box-sizing: border-box;
}



.s-2461eba1-5084-4324-a65d-26c1783770f6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2461eba1-5084-4324-a65d-26c1783770f6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image-container {
      position: relative;
    }

    .s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2461eba1-5084-4324-a65d-26c1783770f6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-2461eba1-5084-4324-a65d-26c1783770f6 {
  margin: 0 !important;
  overflow: visible;
}

#s-2461eba1-5084-4324-a65d-26c1783770f6-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-2461eba1-5084-4324-a65d-26c1783770f6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2461eba1-5084-4324-a65d-26c1783770f6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2461eba1-5084-4324-a65d-26c1783770f6 img.shogun-image {
  /* Add background color handling */
  
}

#s-2461eba1-5084-4324-a65d-26c1783770f6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2461eba1-5084-4324-a65d-26c1783770f6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2461eba1-5084-4324-a65d-26c1783770f6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2461eba1-5084-4324-a65d-26c1783770f6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2461eba1-5084-4324-a65d-26c1783770f6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-2461eba1-5084-4324-a65d-26c1783770f6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2461eba1-5084-4324-a65d-26c1783770f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image {
  box-sizing: border-box;
}



.s-2461eba1-5084-4324-a65d-26c1783770f6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2461eba1-5084-4324-a65d-26c1783770f6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image-container {
      position: relative;
    }

    .s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2461eba1-5084-4324-a65d-26c1783770f6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-2461eba1-5084-4324-a65d-26c1783770f6 {
  margin: 0 !important;
  overflow: visible;
}

#s-2461eba1-5084-4324-a65d-26c1783770f6-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-2461eba1-5084-4324-a65d-26c1783770f6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2461eba1-5084-4324-a65d-26c1783770f6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2461eba1-5084-4324-a65d-26c1783770f6 img.shogun-image {
  /* Add background color handling */
  
}

#s-2461eba1-5084-4324-a65d-26c1783770f6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2461eba1-5084-4324-a65d-26c1783770f6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2461eba1-5084-4324-a65d-26c1783770f6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2461eba1-5084-4324-a65d-26c1783770f6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2461eba1-5084-4324-a65d-26c1783770f6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-2461eba1-5084-4324-a65d-26c1783770f6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2461eba1-5084-4324-a65d-26c1783770f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image {
  box-sizing: border-box;
}



.s-2461eba1-5084-4324-a65d-26c1783770f6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2461eba1-5084-4324-a65d-26c1783770f6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image-container {
      position: relative;
    }

    .s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2461eba1-5084-4324-a65d-26c1783770f6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-2461eba1-5084-4324-a65d-26c1783770f6 {
  margin: 0 !important;
  overflow: visible;
}

#s-2461eba1-5084-4324-a65d-26c1783770f6-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-2461eba1-5084-4324-a65d-26c1783770f6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2461eba1-5084-4324-a65d-26c1783770f6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2461eba1-5084-4324-a65d-26c1783770f6 img.shogun-image {
  /* Add background color handling */
  
}

#s-2461eba1-5084-4324-a65d-26c1783770f6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2461eba1-5084-4324-a65d-26c1783770f6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2461eba1-5084-4324-a65d-26c1783770f6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2461eba1-5084-4324-a65d-26c1783770f6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2461eba1-5084-4324-a65d-26c1783770f6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-2461eba1-5084-4324-a65d-26c1783770f6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2461eba1-5084-4324-a65d-26c1783770f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image {
  box-sizing: border-box;
}



.s-2461eba1-5084-4324-a65d-26c1783770f6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2461eba1-5084-4324-a65d-26c1783770f6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image-container {
      position: relative;
    }

    .s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2461eba1-5084-4324-a65d-26c1783770f6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2461eba1-5084-4324-a65d-26c1783770f6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b {
  max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b {
  margin: 0 !important;
  overflow: visible;
}

#s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b-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-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b img.shogun-image {
  /* Add background color handling */
  
}

#s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b .shogun-image-content {
  
    justify-content: center;
  
}

.s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image {
  box-sizing: border-box;
}



.s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image-container {
      position: relative;
    }

    .s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b {
  margin: 0 !important;
  overflow: visible;
}

#s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b-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-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b img.shogun-image {
  /* Add background color handling */
  
}

#s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b .shogun-image-content {
  
    justify-content: center;
  
}

.s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image {
  box-sizing: border-box;
}



.s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image-container {
      position: relative;
    }

    .s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b {
  margin: 0 !important;
  overflow: visible;
}

#s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b-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-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b img.shogun-image {
  /* Add background color handling */
  
}

#s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b .shogun-image-content {
  
    justify-content: center;
  
}

.s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image {
  box-sizing: border-box;
}



.s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image-container {
      position: relative;
    }

    .s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b {
  margin: 0 !important;
  overflow: visible;
}

#s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b-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-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b img.shogun-image {
  /* Add background color handling */
  
}

#s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b .shogun-image-content {
  
    justify-content: center;
  
}

.s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image {
  box-sizing: border-box;
}



.s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image-container {
      position: relative;
    }

    .s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b {
  margin: 0 !important;
  overflow: visible;
}

#s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b-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-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b img.shogun-image {
  /* Add background color handling */
  
}

#s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b .shogun-image-content {
  
    justify-content: center;
  
}

.s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image {
  box-sizing: border-box;
}



.s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image-container {
      position: relative;
    }

    .s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1ed8077f-ee94-4a40-8d0f-eb1c6095da7b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-0e7e4bb7-c819-4708-930c-5d890baa7580 {
  max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-0e7e4bb7-c819-4708-930c-5d890baa7580 {
  margin: 0 !important;
  overflow: visible;
}

#s-0e7e4bb7-c819-4708-930c-5d890baa7580-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-0e7e4bb7-c819-4708-930c-5d890baa7580 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0e7e4bb7-c819-4708-930c-5d890baa7580 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0e7e4bb7-c819-4708-930c-5d890baa7580 img.shogun-image {
  /* Add background color handling */
  
}

#s-0e7e4bb7-c819-4708-930c-5d890baa7580 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0e7e4bb7-c819-4708-930c-5d890baa7580 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0e7e4bb7-c819-4708-930c-5d890baa7580 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0e7e4bb7-c819-4708-930c-5d890baa7580 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0e7e4bb7-c819-4708-930c-5d890baa7580 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0e7e4bb7-c819-4708-930c-5d890baa7580 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0e7e4bb7-c819-4708-930c-5d890baa7580.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image {
  box-sizing: border-box;
}



.s-0e7e4bb7-c819-4708-930c-5d890baa7580 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0e7e4bb7-c819-4708-930c-5d890baa7580 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image-container {
      position: relative;
    }

    .s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0e7e4bb7-c819-4708-930c-5d890baa7580 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-0e7e4bb7-c819-4708-930c-5d890baa7580 {
  margin: 0 !important;
  overflow: visible;
}

#s-0e7e4bb7-c819-4708-930c-5d890baa7580-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-0e7e4bb7-c819-4708-930c-5d890baa7580 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0e7e4bb7-c819-4708-930c-5d890baa7580 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0e7e4bb7-c819-4708-930c-5d890baa7580 img.shogun-image {
  /* Add background color handling */
  
}

#s-0e7e4bb7-c819-4708-930c-5d890baa7580 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0e7e4bb7-c819-4708-930c-5d890baa7580 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0e7e4bb7-c819-4708-930c-5d890baa7580 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0e7e4bb7-c819-4708-930c-5d890baa7580 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0e7e4bb7-c819-4708-930c-5d890baa7580 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0e7e4bb7-c819-4708-930c-5d890baa7580 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0e7e4bb7-c819-4708-930c-5d890baa7580.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image {
  box-sizing: border-box;
}



.s-0e7e4bb7-c819-4708-930c-5d890baa7580 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0e7e4bb7-c819-4708-930c-5d890baa7580 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image-container {
      position: relative;
    }

    .s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0e7e4bb7-c819-4708-930c-5d890baa7580 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-0e7e4bb7-c819-4708-930c-5d890baa7580 {
  margin: 0 !important;
  overflow: visible;
}

#s-0e7e4bb7-c819-4708-930c-5d890baa7580-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-0e7e4bb7-c819-4708-930c-5d890baa7580 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0e7e4bb7-c819-4708-930c-5d890baa7580 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0e7e4bb7-c819-4708-930c-5d890baa7580 img.shogun-image {
  /* Add background color handling */
  
}

#s-0e7e4bb7-c819-4708-930c-5d890baa7580 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0e7e4bb7-c819-4708-930c-5d890baa7580 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0e7e4bb7-c819-4708-930c-5d890baa7580 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0e7e4bb7-c819-4708-930c-5d890baa7580 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0e7e4bb7-c819-4708-930c-5d890baa7580 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0e7e4bb7-c819-4708-930c-5d890baa7580 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0e7e4bb7-c819-4708-930c-5d890baa7580.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image {
  box-sizing: border-box;
}



.s-0e7e4bb7-c819-4708-930c-5d890baa7580 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0e7e4bb7-c819-4708-930c-5d890baa7580 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image-container {
      position: relative;
    }

    .s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0e7e4bb7-c819-4708-930c-5d890baa7580 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-0e7e4bb7-c819-4708-930c-5d890baa7580 {
  margin: 0 !important;
  overflow: visible;
}

#s-0e7e4bb7-c819-4708-930c-5d890baa7580-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-0e7e4bb7-c819-4708-930c-5d890baa7580 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0e7e4bb7-c819-4708-930c-5d890baa7580 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0e7e4bb7-c819-4708-930c-5d890baa7580 img.shogun-image {
  /* Add background color handling */
  
}

#s-0e7e4bb7-c819-4708-930c-5d890baa7580 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0e7e4bb7-c819-4708-930c-5d890baa7580 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0e7e4bb7-c819-4708-930c-5d890baa7580 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0e7e4bb7-c819-4708-930c-5d890baa7580 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0e7e4bb7-c819-4708-930c-5d890baa7580 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0e7e4bb7-c819-4708-930c-5d890baa7580 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0e7e4bb7-c819-4708-930c-5d890baa7580.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image {
  box-sizing: border-box;
}



.s-0e7e4bb7-c819-4708-930c-5d890baa7580 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0e7e4bb7-c819-4708-930c-5d890baa7580 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image-container {
      position: relative;
    }

    .s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0e7e4bb7-c819-4708-930c-5d890baa7580 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-0e7e4bb7-c819-4708-930c-5d890baa7580 {
  margin: 0 !important;
  overflow: visible;
}

#s-0e7e4bb7-c819-4708-930c-5d890baa7580-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-0e7e4bb7-c819-4708-930c-5d890baa7580 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0e7e4bb7-c819-4708-930c-5d890baa7580 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0e7e4bb7-c819-4708-930c-5d890baa7580 img.shogun-image {
  /* Add background color handling */
  
}

#s-0e7e4bb7-c819-4708-930c-5d890baa7580 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0e7e4bb7-c819-4708-930c-5d890baa7580 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0e7e4bb7-c819-4708-930c-5d890baa7580 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0e7e4bb7-c819-4708-930c-5d890baa7580 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0e7e4bb7-c819-4708-930c-5d890baa7580 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0e7e4bb7-c819-4708-930c-5d890baa7580 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0e7e4bb7-c819-4708-930c-5d890baa7580.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image {
  box-sizing: border-box;
}



.s-0e7e4bb7-c819-4708-930c-5d890baa7580 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0e7e4bb7-c819-4708-930c-5d890baa7580 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image-container {
      position: relative;
    }

    .s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0e7e4bb7-c819-4708-930c-5d890baa7580.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0e7e4bb7-c819-4708-930c-5d890baa7580 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
/*
  $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;
  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;
}
