.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-4272498a-cd0b-4782-a777-103ac786a34e {
  min-height: 50px;
}








#s-4272498a-cd0b-4782-a777-103ac786a34e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4272498a-cd0b-4782-a777-103ac786a34e.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-13294cca-432d-4472-91f3-f07d7cdfc166 {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-13294cca-432d-4472-91f3-f07d7cdfc166 {
  margin: 0 !important;
  overflow: visible;
}

#s-13294cca-432d-4472-91f3-f07d7cdfc166-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-13294cca-432d-4472-91f3-f07d7cdfc166 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-13294cca-432d-4472-91f3-f07d7cdfc166 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-13294cca-432d-4472-91f3-f07d7cdfc166 img.shogun-image {
  /* Add background color handling */
  
}

#s-13294cca-432d-4472-91f3-f07d7cdfc166 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-13294cca-432d-4472-91f3-f07d7cdfc166 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-13294cca-432d-4472-91f3-f07d7cdfc166 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-13294cca-432d-4472-91f3-f07d7cdfc166 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-13294cca-432d-4472-91f3-f07d7cdfc166 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-13294cca-432d-4472-91f3-f07d7cdfc166 .shogun-image-content {
  
    justify-content: center;
  
}

.s-13294cca-432d-4472-91f3-f07d7cdfc166.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image {
  box-sizing: border-box;
}



.s-13294cca-432d-4472-91f3-f07d7cdfc166 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-13294cca-432d-4472-91f3-f07d7cdfc166 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image-container {
      position: relative;
    }

    .s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13294cca-432d-4472-91f3-f07d7cdfc166 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-13294cca-432d-4472-91f3-f07d7cdfc166 {
  margin: 0 !important;
  overflow: visible;
}

#s-13294cca-432d-4472-91f3-f07d7cdfc166-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-13294cca-432d-4472-91f3-f07d7cdfc166 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-13294cca-432d-4472-91f3-f07d7cdfc166 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-13294cca-432d-4472-91f3-f07d7cdfc166 img.shogun-image {
  /* Add background color handling */
  
}

#s-13294cca-432d-4472-91f3-f07d7cdfc166 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-13294cca-432d-4472-91f3-f07d7cdfc166 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-13294cca-432d-4472-91f3-f07d7cdfc166 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-13294cca-432d-4472-91f3-f07d7cdfc166 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-13294cca-432d-4472-91f3-f07d7cdfc166 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-13294cca-432d-4472-91f3-f07d7cdfc166 .shogun-image-content {
  
    justify-content: center;
  
}

.s-13294cca-432d-4472-91f3-f07d7cdfc166.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image {
  box-sizing: border-box;
}



.s-13294cca-432d-4472-91f3-f07d7cdfc166 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-13294cca-432d-4472-91f3-f07d7cdfc166 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image-container {
      position: relative;
    }

    .s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13294cca-432d-4472-91f3-f07d7cdfc166 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-13294cca-432d-4472-91f3-f07d7cdfc166 {
  margin: 0 !important;
  overflow: visible;
}

#s-13294cca-432d-4472-91f3-f07d7cdfc166-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-13294cca-432d-4472-91f3-f07d7cdfc166 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-13294cca-432d-4472-91f3-f07d7cdfc166 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-13294cca-432d-4472-91f3-f07d7cdfc166 img.shogun-image {
  /* Add background color handling */
  
}

#s-13294cca-432d-4472-91f3-f07d7cdfc166 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-13294cca-432d-4472-91f3-f07d7cdfc166 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-13294cca-432d-4472-91f3-f07d7cdfc166 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-13294cca-432d-4472-91f3-f07d7cdfc166 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-13294cca-432d-4472-91f3-f07d7cdfc166 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-13294cca-432d-4472-91f3-f07d7cdfc166 .shogun-image-content {
  
    justify-content: center;
  
}

.s-13294cca-432d-4472-91f3-f07d7cdfc166.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image {
  box-sizing: border-box;
}



.s-13294cca-432d-4472-91f3-f07d7cdfc166 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-13294cca-432d-4472-91f3-f07d7cdfc166 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image-container {
      position: relative;
    }

    .s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13294cca-432d-4472-91f3-f07d7cdfc166 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-13294cca-432d-4472-91f3-f07d7cdfc166 {
  margin: 0 !important;
  overflow: visible;
}

#s-13294cca-432d-4472-91f3-f07d7cdfc166-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-13294cca-432d-4472-91f3-f07d7cdfc166 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-13294cca-432d-4472-91f3-f07d7cdfc166 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-13294cca-432d-4472-91f3-f07d7cdfc166 img.shogun-image {
  /* Add background color handling */
  
}

#s-13294cca-432d-4472-91f3-f07d7cdfc166 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-13294cca-432d-4472-91f3-f07d7cdfc166 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-13294cca-432d-4472-91f3-f07d7cdfc166 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-13294cca-432d-4472-91f3-f07d7cdfc166 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-13294cca-432d-4472-91f3-f07d7cdfc166 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-13294cca-432d-4472-91f3-f07d7cdfc166 .shogun-image-content {
  
    justify-content: center;
  
}

.s-13294cca-432d-4472-91f3-f07d7cdfc166.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image {
  box-sizing: border-box;
}



.s-13294cca-432d-4472-91f3-f07d7cdfc166 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-13294cca-432d-4472-91f3-f07d7cdfc166 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image-container {
      position: relative;
    }

    .s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13294cca-432d-4472-91f3-f07d7cdfc166 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-13294cca-432d-4472-91f3-f07d7cdfc166 {
  margin: 0 !important;
  overflow: visible;
}

#s-13294cca-432d-4472-91f3-f07d7cdfc166-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-13294cca-432d-4472-91f3-f07d7cdfc166 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-13294cca-432d-4472-91f3-f07d7cdfc166 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-13294cca-432d-4472-91f3-f07d7cdfc166 img.shogun-image {
  /* Add background color handling */
  
}

#s-13294cca-432d-4472-91f3-f07d7cdfc166 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-13294cca-432d-4472-91f3-f07d7cdfc166 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-13294cca-432d-4472-91f3-f07d7cdfc166 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-13294cca-432d-4472-91f3-f07d7cdfc166 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-13294cca-432d-4472-91f3-f07d7cdfc166 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-13294cca-432d-4472-91f3-f07d7cdfc166 .shogun-image-content {
  
    justify-content: center;
  
}

.s-13294cca-432d-4472-91f3-f07d7cdfc166.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image {
  box-sizing: border-box;
}



.s-13294cca-432d-4472-91f3-f07d7cdfc166 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-13294cca-432d-4472-91f3-f07d7cdfc166 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image-container {
      position: relative;
    }

    .s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13294cca-432d-4472-91f3-f07d7cdfc166.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13294cca-432d-4472-91f3-f07d7cdfc166 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-cb441a45-ce20-4289-949a-f1d1604f4db3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-cb441a45-ce20-4289-949a-f1d1604f4db3 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-689737ea-2d66-43fa-9542-52f4dfae04b3 {
  min-height: 50px;
}








#s-689737ea-2d66-43fa-9542-52f4dfae04b3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-689737ea-2d66-43fa-9542-52f4dfae04b3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8dc34168-4f4c-4c11-ace4-236a08725e9b {
  min-height: 50px;
}








#s-8dc34168-4f4c-4c11-ace4-236a08725e9b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8dc34168-4f4c-4c11-ace4-236a08725e9b.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-b597ecab-1e6f-42a8-97da-53ecc68b5e78 {
  margin-top: -8px;
margin-bottom: -8px;
min-height: 50px;
}








#s-b597ecab-1e6f-42a8-97da-53ecc68b5e78 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b597ecab-1e6f-42a8-97da-53ecc68b5e78.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-23c378a7-4cb3-4e6f-9105-433efc3f2acc {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-23c378a7-4cb3-4e6f-9105-433efc3f2acc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-23c378a7-4cb3-4e6f-9105-433efc3f2acc.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-2903f795-9929-49b9-bda3-3bc99e915765"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2903f795-9929-49b9-bda3-3bc99e915765"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2903f795-9929-49b9-bda3-3bc99e915765"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2903f795-9929-49b9-bda3-3bc99e915765"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-f5cb7cc6-a9be-4d5c-9fa7-43745e8b945f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f5cb7cc6-a9be-4d5c-9fa7-43745e8b945f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f5cb7cc6-a9be-4d5c-9fa7-43745e8b945f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f5cb7cc6-a9be-4d5c-9fa7-43745e8b945f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f5cb7cc6-a9be-4d5c-9fa7-43745e8b945f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f5cb7cc6-a9be-4d5c-9fa7-43745e8b945f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f5cb7cc6-a9be-4d5c-9fa7-43745e8b945f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-002b1b29-1d2c-4db4-939e-6e4ec955a9e3 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-34502005-19fd-4d68-bdf0-4247281c6999"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-34502005-19fd-4d68-bdf0-4247281c6999"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-34502005-19fd-4d68-bdf0-4247281c6999"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-34502005-19fd-4d68-bdf0-4247281c6999"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-34502005-19fd-4d68-bdf0-4247281c6999"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-34502005-19fd-4d68-bdf0-4247281c6999"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-34502005-19fd-4d68-bdf0-4247281c6999"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-7effe38b-3efa-415c-b20c-e596bf9cdb9b {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-1eafc9ad-84dd-45e4-ba5d-80f97b7930b9 {
  min-height: 50px;
}








#s-1eafc9ad-84dd-45e4-ba5d-80f97b7930b9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1eafc9ad-84dd-45e4-ba5d-80f97b7930b9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-90553cfb-dacd-4200-a038-09c20dfed30c {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-90553cfb-dacd-4200-a038-09c20dfed30c {
  margin: 0 !important;
  overflow: visible;
}

#s-90553cfb-dacd-4200-a038-09c20dfed30c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-90553cfb-dacd-4200-a038-09c20dfed30c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-90553cfb-dacd-4200-a038-09c20dfed30c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-90553cfb-dacd-4200-a038-09c20dfed30c img.shogun-image {
  /* Add background color handling */
  
}

#s-90553cfb-dacd-4200-a038-09c20dfed30c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-90553cfb-dacd-4200-a038-09c20dfed30c .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-90553cfb-dacd-4200-a038-09c20dfed30c .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-90553cfb-dacd-4200-a038-09c20dfed30c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-90553cfb-dacd-4200-a038-09c20dfed30c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-90553cfb-dacd-4200-a038-09c20dfed30c .shogun-image-content {
  
    justify-content: center;
  
}

.s-90553cfb-dacd-4200-a038-09c20dfed30c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image {
  box-sizing: border-box;
}



.s-90553cfb-dacd-4200-a038-09c20dfed30c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-90553cfb-dacd-4200-a038-09c20dfed30c {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image-container {
      position: relative;
    }

    .s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-90553cfb-dacd-4200-a038-09c20dfed30c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-90553cfb-dacd-4200-a038-09c20dfed30c {
  margin: 0 !important;
  overflow: visible;
}

#s-90553cfb-dacd-4200-a038-09c20dfed30c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-90553cfb-dacd-4200-a038-09c20dfed30c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-90553cfb-dacd-4200-a038-09c20dfed30c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-90553cfb-dacd-4200-a038-09c20dfed30c img.shogun-image {
  /* Add background color handling */
  
}

#s-90553cfb-dacd-4200-a038-09c20dfed30c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-90553cfb-dacd-4200-a038-09c20dfed30c .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-90553cfb-dacd-4200-a038-09c20dfed30c .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-90553cfb-dacd-4200-a038-09c20dfed30c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-90553cfb-dacd-4200-a038-09c20dfed30c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-90553cfb-dacd-4200-a038-09c20dfed30c .shogun-image-content {
  
    justify-content: center;
  
}

.s-90553cfb-dacd-4200-a038-09c20dfed30c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image {
  box-sizing: border-box;
}



.s-90553cfb-dacd-4200-a038-09c20dfed30c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-90553cfb-dacd-4200-a038-09c20dfed30c {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image-container {
      position: relative;
    }

    .s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-90553cfb-dacd-4200-a038-09c20dfed30c 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-90553cfb-dacd-4200-a038-09c20dfed30c {
  margin: 0 !important;
  overflow: visible;
}

#s-90553cfb-dacd-4200-a038-09c20dfed30c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-90553cfb-dacd-4200-a038-09c20dfed30c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-90553cfb-dacd-4200-a038-09c20dfed30c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-90553cfb-dacd-4200-a038-09c20dfed30c img.shogun-image {
  /* Add background color handling */
  
}

#s-90553cfb-dacd-4200-a038-09c20dfed30c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-90553cfb-dacd-4200-a038-09c20dfed30c .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-90553cfb-dacd-4200-a038-09c20dfed30c .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-90553cfb-dacd-4200-a038-09c20dfed30c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-90553cfb-dacd-4200-a038-09c20dfed30c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-90553cfb-dacd-4200-a038-09c20dfed30c .shogun-image-content {
  
    justify-content: center;
  
}

.s-90553cfb-dacd-4200-a038-09c20dfed30c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image {
  box-sizing: border-box;
}



.s-90553cfb-dacd-4200-a038-09c20dfed30c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-90553cfb-dacd-4200-a038-09c20dfed30c {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image-container {
      position: relative;
    }

    .s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-90553cfb-dacd-4200-a038-09c20dfed30c 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-90553cfb-dacd-4200-a038-09c20dfed30c {
  margin: 0 !important;
  overflow: visible;
}

#s-90553cfb-dacd-4200-a038-09c20dfed30c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-90553cfb-dacd-4200-a038-09c20dfed30c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-90553cfb-dacd-4200-a038-09c20dfed30c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-90553cfb-dacd-4200-a038-09c20dfed30c img.shogun-image {
  /* Add background color handling */
  
}

#s-90553cfb-dacd-4200-a038-09c20dfed30c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-90553cfb-dacd-4200-a038-09c20dfed30c .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-90553cfb-dacd-4200-a038-09c20dfed30c .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-90553cfb-dacd-4200-a038-09c20dfed30c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-90553cfb-dacd-4200-a038-09c20dfed30c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-90553cfb-dacd-4200-a038-09c20dfed30c .shogun-image-content {
  
    justify-content: center;
  
}

.s-90553cfb-dacd-4200-a038-09c20dfed30c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image {
  box-sizing: border-box;
}



.s-90553cfb-dacd-4200-a038-09c20dfed30c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-90553cfb-dacd-4200-a038-09c20dfed30c {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image-container {
      position: relative;
    }

    .s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-90553cfb-dacd-4200-a038-09c20dfed30c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-90553cfb-dacd-4200-a038-09c20dfed30c {
  margin: 0 !important;
  overflow: visible;
}

#s-90553cfb-dacd-4200-a038-09c20dfed30c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-90553cfb-dacd-4200-a038-09c20dfed30c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-90553cfb-dacd-4200-a038-09c20dfed30c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-90553cfb-dacd-4200-a038-09c20dfed30c img.shogun-image {
  /* Add background color handling */
  
}

#s-90553cfb-dacd-4200-a038-09c20dfed30c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-90553cfb-dacd-4200-a038-09c20dfed30c .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-90553cfb-dacd-4200-a038-09c20dfed30c .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-90553cfb-dacd-4200-a038-09c20dfed30c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-90553cfb-dacd-4200-a038-09c20dfed30c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-90553cfb-dacd-4200-a038-09c20dfed30c .shogun-image-content {
  
    justify-content: center;
  
}

.s-90553cfb-dacd-4200-a038-09c20dfed30c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image {
  box-sizing: border-box;
}



.s-90553cfb-dacd-4200-a038-09c20dfed30c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-90553cfb-dacd-4200-a038-09c20dfed30c {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image-container {
      position: relative;
    }

    .s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-90553cfb-dacd-4200-a038-09c20dfed30c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-90553cfb-dacd-4200-a038-09c20dfed30c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
@media (min-width: 0px) {
[id="s-e46ea520-1c6e-41cb-b596-f512e1b91977"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e46ea520-1c6e-41cb-b596-f512e1b91977"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e46ea520-1c6e-41cb-b596-f512e1b91977"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e46ea520-1c6e-41cb-b596-f512e1b91977"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-7c0f5689-4a17-479d-85b5-04ab3dfa1591"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7c0f5689-4a17-479d-85b5-04ab3dfa1591"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-7c0f5689-4a17-479d-85b5-04ab3dfa1591"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7c0f5689-4a17-479d-85b5-04ab3dfa1591"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-7c0f5689-4a17-479d-85b5-04ab3dfa1591"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7c0f5689-4a17-479d-85b5-04ab3dfa1591"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-7c0f5689-4a17-479d-85b5-04ab3dfa1591"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-f8ea0eaa-1c65-4f67-81a3-8caf903660c5 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-c2655b19-9631-4f0f-9cbb-78fded894f6f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c2655b19-9631-4f0f-9cbb-78fded894f6f"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c2655b19-9631-4f0f-9cbb-78fded894f6f"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c2655b19-9631-4f0f-9cbb-78fded894f6f"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c2655b19-9631-4f0f-9cbb-78fded894f6f"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c2655b19-9631-4f0f-9cbb-78fded894f6f"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c2655b19-9631-4f0f-9cbb-78fded894f6f"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-6b2556e7-8d1c-4fee-9149-5a4a32ba6fe8 {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-8b7287b9-f863-46fa-8078-3a126fa5a790 {
  max-width: 1200px;
aspect-ratio: 1200/430;
text-align: center;
}

#s-8b7287b9-f863-46fa-8078-3a126fa5a790 {
  margin: 0 !important;
  overflow: visible;
}

#s-8b7287b9-f863-46fa-8078-3a126fa5a790-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8b7287b9-f863-46fa-8078-3a126fa5a790 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8b7287b9-f863-46fa-8078-3a126fa5a790 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8b7287b9-f863-46fa-8078-3a126fa5a790 img.shogun-image {
  /* Add background color handling */
  
}

#s-8b7287b9-f863-46fa-8078-3a126fa5a790 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8b7287b9-f863-46fa-8078-3a126fa5a790 .shg-image-content-wrapper {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }

    #s-8b7287b9-f863-46fa-8078-3a126fa5a790 .shogun-image-link {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8b7287b9-f863-46fa-8078-3a126fa5a790 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8b7287b9-f863-46fa-8078-3a126fa5a790 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-8b7287b9-f863-46fa-8078-3a126fa5a790 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8b7287b9-f863-46fa-8078-3a126fa5a790.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image {
  box-sizing: border-box;
}



.s-8b7287b9-f863-46fa-8078-3a126fa5a790 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8b7287b9-f863-46fa-8078-3a126fa5a790 {
      --shg-aspect-ratio: calc(1200/430); 
    }

    .s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image-container {
      position: relative;
    }

    .s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8b7287b9-f863-46fa-8078-3a126fa5a790 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

@media (min-width: 1200px){#s-8b7287b9-f863-46fa-8078-3a126fa5a790 {
  margin: 0 !important;
  overflow: visible;
}

#s-8b7287b9-f863-46fa-8078-3a126fa5a790-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8b7287b9-f863-46fa-8078-3a126fa5a790 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8b7287b9-f863-46fa-8078-3a126fa5a790 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8b7287b9-f863-46fa-8078-3a126fa5a790 img.shogun-image {
  /* Add background color handling */
  
}

#s-8b7287b9-f863-46fa-8078-3a126fa5a790 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8b7287b9-f863-46fa-8078-3a126fa5a790 .shg-image-content-wrapper {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }

    #s-8b7287b9-f863-46fa-8078-3a126fa5a790 .shogun-image-link {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8b7287b9-f863-46fa-8078-3a126fa5a790 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8b7287b9-f863-46fa-8078-3a126fa5a790 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-8b7287b9-f863-46fa-8078-3a126fa5a790 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8b7287b9-f863-46fa-8078-3a126fa5a790.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image {
  box-sizing: border-box;
}



.s-8b7287b9-f863-46fa-8078-3a126fa5a790 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8b7287b9-f863-46fa-8078-3a126fa5a790 {
      --shg-aspect-ratio: calc(1200/430); 
    }

    .s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image-container {
      position: relative;
    }

    .s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8b7287b9-f863-46fa-8078-3a126fa5a790 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-8b7287b9-f863-46fa-8078-3a126fa5a790 {
  margin: 0 !important;
  overflow: visible;
}

#s-8b7287b9-f863-46fa-8078-3a126fa5a790-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8b7287b9-f863-46fa-8078-3a126fa5a790 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8b7287b9-f863-46fa-8078-3a126fa5a790 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8b7287b9-f863-46fa-8078-3a126fa5a790 img.shogun-image {
  /* Add background color handling */
  
}

#s-8b7287b9-f863-46fa-8078-3a126fa5a790 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8b7287b9-f863-46fa-8078-3a126fa5a790 .shg-image-content-wrapper {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }

    #s-8b7287b9-f863-46fa-8078-3a126fa5a790 .shogun-image-link {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8b7287b9-f863-46fa-8078-3a126fa5a790 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8b7287b9-f863-46fa-8078-3a126fa5a790 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-8b7287b9-f863-46fa-8078-3a126fa5a790 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8b7287b9-f863-46fa-8078-3a126fa5a790.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image {
  box-sizing: border-box;
}



.s-8b7287b9-f863-46fa-8078-3a126fa5a790 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8b7287b9-f863-46fa-8078-3a126fa5a790 {
      --shg-aspect-ratio: calc(1200/430); 
    }

    .s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image-container {
      position: relative;
    }

    .s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8b7287b9-f863-46fa-8078-3a126fa5a790 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-8b7287b9-f863-46fa-8078-3a126fa5a790 {
  margin: 0 !important;
  overflow: visible;
}

#s-8b7287b9-f863-46fa-8078-3a126fa5a790-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8b7287b9-f863-46fa-8078-3a126fa5a790 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8b7287b9-f863-46fa-8078-3a126fa5a790 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8b7287b9-f863-46fa-8078-3a126fa5a790 img.shogun-image {
  /* Add background color handling */
  
}

#s-8b7287b9-f863-46fa-8078-3a126fa5a790 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8b7287b9-f863-46fa-8078-3a126fa5a790 .shg-image-content-wrapper {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }

    #s-8b7287b9-f863-46fa-8078-3a126fa5a790 .shogun-image-link {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8b7287b9-f863-46fa-8078-3a126fa5a790 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8b7287b9-f863-46fa-8078-3a126fa5a790 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-8b7287b9-f863-46fa-8078-3a126fa5a790 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8b7287b9-f863-46fa-8078-3a126fa5a790.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image {
  box-sizing: border-box;
}



.s-8b7287b9-f863-46fa-8078-3a126fa5a790 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8b7287b9-f863-46fa-8078-3a126fa5a790 {
      --shg-aspect-ratio: calc(1200/430); 
    }

    .s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image-container {
      position: relative;
    }

    .s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8b7287b9-f863-46fa-8078-3a126fa5a790 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

}@media (max-width: 767px){#s-8b7287b9-f863-46fa-8078-3a126fa5a790 {
  margin: 0 !important;
  overflow: visible;
}

#s-8b7287b9-f863-46fa-8078-3a126fa5a790-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8b7287b9-f863-46fa-8078-3a126fa5a790 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8b7287b9-f863-46fa-8078-3a126fa5a790 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8b7287b9-f863-46fa-8078-3a126fa5a790 img.shogun-image {
  /* Add background color handling */
  
}

#s-8b7287b9-f863-46fa-8078-3a126fa5a790 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8b7287b9-f863-46fa-8078-3a126fa5a790 .shg-image-content-wrapper {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }

    #s-8b7287b9-f863-46fa-8078-3a126fa5a790 .shogun-image-link {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8b7287b9-f863-46fa-8078-3a126fa5a790 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8b7287b9-f863-46fa-8078-3a126fa5a790 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-8b7287b9-f863-46fa-8078-3a126fa5a790 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8b7287b9-f863-46fa-8078-3a126fa5a790.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image {
  box-sizing: border-box;
}



.s-8b7287b9-f863-46fa-8078-3a126fa5a790 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8b7287b9-f863-46fa-8078-3a126fa5a790 {
      --shg-aspect-ratio: calc(1200/430); 
    }

    .s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image-container {
      position: relative;
    }

    .s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8b7287b9-f863-46fa-8078-3a126fa5a790.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8b7287b9-f863-46fa-8078-3a126fa5a790 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-7d323027-b7dd-4c92-b853-e56462a9f32c {
  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-7d323027-b7dd-4c92-b853-e56462a9f32c:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7d323027-b7dd-4c92-b853-e56462a9f32c:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-7d323027-b7dd-4c92-b853-e56462a9f32c {
  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-7d323027-b7dd-4c92-b853-e56462a9f32c-root {
    text-align: center;
  }


#s-7d323027-b7dd-4c92-b853-e56462a9f32c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-7d323027-b7dd-4c92-b853-e56462a9f32c-root {
    text-align: left;
  }


#s-7d323027-b7dd-4c92-b853-e56462a9f32c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7d323027-b7dd-4c92-b853-e56462a9f32c-root {
    text-align: center;
  }


#s-7d323027-b7dd-4c92-b853-e56462a9f32c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7d323027-b7dd-4c92-b853-e56462a9f32c-root {
    text-align: center;
  }


#s-7d323027-b7dd-4c92-b853-e56462a9f32c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-7d323027-b7dd-4c92-b853-e56462a9f32c-root {
    text-align: center;
  }


#s-7d323027-b7dd-4c92-b853-e56462a9f32c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-ce42db0c-f279-4bef-bfeb-f318429046f3 {
  min-height: 50px;
}








#s-ce42db0c-f279-4bef-bfeb-f318429046f3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ce42db0c-f279-4bef-bfeb-f318429046f3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4865de8d-6f9b-4359-a172-57cbb2344941 {
  max-width: 1500px;
aspect-ratio: 1500/563;
text-align: center;
}

#s-4865de8d-6f9b-4359-a172-57cbb2344941 {
  margin: 0 !important;
  overflow: visible;
}

#s-4865de8d-6f9b-4359-a172-57cbb2344941-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4865de8d-6f9b-4359-a172-57cbb2344941 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4865de8d-6f9b-4359-a172-57cbb2344941 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4865de8d-6f9b-4359-a172-57cbb2344941 img.shogun-image {
  /* Add background color handling */
  
}

#s-4865de8d-6f9b-4359-a172-57cbb2344941 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4865de8d-6f9b-4359-a172-57cbb2344941 .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-4865de8d-6f9b-4359-a172-57cbb2344941 .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4865de8d-6f9b-4359-a172-57cbb2344941 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4865de8d-6f9b-4359-a172-57cbb2344941 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-4865de8d-6f9b-4359-a172-57cbb2344941 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4865de8d-6f9b-4359-a172-57cbb2344941.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image {
  box-sizing: border-box;
}



.s-4865de8d-6f9b-4359-a172-57cbb2344941 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4865de8d-6f9b-4359-a172-57cbb2344941 {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image-container {
      position: relative;
    }

    .s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4865de8d-6f9b-4359-a172-57cbb2344941 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-4865de8d-6f9b-4359-a172-57cbb2344941 {
  margin: 0 !important;
  overflow: visible;
}

#s-4865de8d-6f9b-4359-a172-57cbb2344941-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4865de8d-6f9b-4359-a172-57cbb2344941 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4865de8d-6f9b-4359-a172-57cbb2344941 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4865de8d-6f9b-4359-a172-57cbb2344941 img.shogun-image {
  /* Add background color handling */
  
}

#s-4865de8d-6f9b-4359-a172-57cbb2344941 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4865de8d-6f9b-4359-a172-57cbb2344941 .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-4865de8d-6f9b-4359-a172-57cbb2344941 .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4865de8d-6f9b-4359-a172-57cbb2344941 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4865de8d-6f9b-4359-a172-57cbb2344941 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-4865de8d-6f9b-4359-a172-57cbb2344941 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4865de8d-6f9b-4359-a172-57cbb2344941.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image {
  box-sizing: border-box;
}



.s-4865de8d-6f9b-4359-a172-57cbb2344941 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4865de8d-6f9b-4359-a172-57cbb2344941 {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image-container {
      position: relative;
    }

    .s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4865de8d-6f9b-4359-a172-57cbb2344941 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-4865de8d-6f9b-4359-a172-57cbb2344941 {
  margin: 0 !important;
  overflow: visible;
}

#s-4865de8d-6f9b-4359-a172-57cbb2344941-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4865de8d-6f9b-4359-a172-57cbb2344941 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4865de8d-6f9b-4359-a172-57cbb2344941 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4865de8d-6f9b-4359-a172-57cbb2344941 img.shogun-image {
  /* Add background color handling */
  
}

#s-4865de8d-6f9b-4359-a172-57cbb2344941 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4865de8d-6f9b-4359-a172-57cbb2344941 .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-4865de8d-6f9b-4359-a172-57cbb2344941 .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4865de8d-6f9b-4359-a172-57cbb2344941 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4865de8d-6f9b-4359-a172-57cbb2344941 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-4865de8d-6f9b-4359-a172-57cbb2344941 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4865de8d-6f9b-4359-a172-57cbb2344941.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image {
  box-sizing: border-box;
}



.s-4865de8d-6f9b-4359-a172-57cbb2344941 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4865de8d-6f9b-4359-a172-57cbb2344941 {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image-container {
      position: relative;
    }

    .s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4865de8d-6f9b-4359-a172-57cbb2344941 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-4865de8d-6f9b-4359-a172-57cbb2344941 {
  margin: 0 !important;
  overflow: visible;
}

#s-4865de8d-6f9b-4359-a172-57cbb2344941-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4865de8d-6f9b-4359-a172-57cbb2344941 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4865de8d-6f9b-4359-a172-57cbb2344941 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4865de8d-6f9b-4359-a172-57cbb2344941 img.shogun-image {
  /* Add background color handling */
  
}

#s-4865de8d-6f9b-4359-a172-57cbb2344941 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4865de8d-6f9b-4359-a172-57cbb2344941 .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-4865de8d-6f9b-4359-a172-57cbb2344941 .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4865de8d-6f9b-4359-a172-57cbb2344941 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4865de8d-6f9b-4359-a172-57cbb2344941 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-4865de8d-6f9b-4359-a172-57cbb2344941 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4865de8d-6f9b-4359-a172-57cbb2344941.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image {
  box-sizing: border-box;
}



.s-4865de8d-6f9b-4359-a172-57cbb2344941 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4865de8d-6f9b-4359-a172-57cbb2344941 {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image-container {
      position: relative;
    }

    .s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4865de8d-6f9b-4359-a172-57cbb2344941 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-4865de8d-6f9b-4359-a172-57cbb2344941 {
  margin: 0 !important;
  overflow: visible;
}

#s-4865de8d-6f9b-4359-a172-57cbb2344941-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4865de8d-6f9b-4359-a172-57cbb2344941 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4865de8d-6f9b-4359-a172-57cbb2344941 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4865de8d-6f9b-4359-a172-57cbb2344941 img.shogun-image {
  /* Add background color handling */
  
}

#s-4865de8d-6f9b-4359-a172-57cbb2344941 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4865de8d-6f9b-4359-a172-57cbb2344941 .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-4865de8d-6f9b-4359-a172-57cbb2344941 .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4865de8d-6f9b-4359-a172-57cbb2344941 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4865de8d-6f9b-4359-a172-57cbb2344941 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-4865de8d-6f9b-4359-a172-57cbb2344941 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4865de8d-6f9b-4359-a172-57cbb2344941.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image {
  box-sizing: border-box;
}



.s-4865de8d-6f9b-4359-a172-57cbb2344941 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4865de8d-6f9b-4359-a172-57cbb2344941 {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image-container {
      position: relative;
    }

    .s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4865de8d-6f9b-4359-a172-57cbb2344941.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4865de8d-6f9b-4359-a172-57cbb2344941 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
@media (min-width: 0px) {
[id="s-f5c97a21-bf7d-409c-93df-4ce8bb70f7ad"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f5c97a21-bf7d-409c-93df-4ce8bb70f7ad"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f5c97a21-bf7d-409c-93df-4ce8bb70f7ad"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f5c97a21-bf7d-409c-93df-4ce8bb70f7ad"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-d8ed076a-680a-4927-a677-5c1bc2d6995f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d8ed076a-680a-4927-a677-5c1bc2d6995f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d8ed076a-680a-4927-a677-5c1bc2d6995f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d8ed076a-680a-4927-a677-5c1bc2d6995f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d8ed076a-680a-4927-a677-5c1bc2d6995f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d8ed076a-680a-4927-a677-5c1bc2d6995f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d8ed076a-680a-4927-a677-5c1bc2d6995f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-e7444df3-a5fd-4939-a085-83408377d668 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-e3bc8c20-5f63-48a2-b6e2-5afc3629d501"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e3bc8c20-5f63-48a2-b6e2-5afc3629d501"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e3bc8c20-5f63-48a2-b6e2-5afc3629d501"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e3bc8c20-5f63-48a2-b6e2-5afc3629d501"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e3bc8c20-5f63-48a2-b6e2-5afc3629d501"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e3bc8c20-5f63-48a2-b6e2-5afc3629d501"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e3bc8c20-5f63-48a2-b6e2-5afc3629d501"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-8d618894-ee3e-48fd-b7b7-cd7346ec4267 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-859a16bb-2d85-4f78-aae0-da1f5b2d8f45"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-859a16bb-2d85-4f78-aae0-da1f5b2d8f45"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-859a16bb-2d85-4f78-aae0-da1f5b2d8f45"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-859a16bb-2d85-4f78-aae0-da1f5b2d8f45"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-5fd3c0ee-665c-4bcd-8220-86d3d523af13"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5fd3c0ee-665c-4bcd-8220-86d3d523af13"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5fd3c0ee-665c-4bcd-8220-86d3d523af13"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5fd3c0ee-665c-4bcd-8220-86d3d523af13"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5fd3c0ee-665c-4bcd-8220-86d3d523af13"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5fd3c0ee-665c-4bcd-8220-86d3d523af13"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5fd3c0ee-665c-4bcd-8220-86d3d523af13"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-4166ce68-03e3-48e1-acf7-01aefdcafaa1 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-385e0b90-bda8-4e87-a345-0889430f95e4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-385e0b90-bda8-4e87-a345-0889430f95e4"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-385e0b90-bda8-4e87-a345-0889430f95e4"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-385e0b90-bda8-4e87-a345-0889430f95e4"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-385e0b90-bda8-4e87-a345-0889430f95e4"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-385e0b90-bda8-4e87-a345-0889430f95e4"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-385e0b90-bda8-4e87-a345-0889430f95e4"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-3cdfa2d7-25aa-43e1-b8dd-78bb331fe0be {
  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-35ccc29b-1ea6-4a74-b2e6-9662b46f3375"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-35ccc29b-1ea6-4a74-b2e6-9662b46f3375"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-35ccc29b-1ea6-4a74-b2e6-9662b46f3375"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-35ccc29b-1ea6-4a74-b2e6-9662b46f3375"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-fecf8edf-f2d0-496a-a229-5de5c7a9fc02"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fecf8edf-f2d0-496a-a229-5de5c7a9fc02"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-fecf8edf-f2d0-496a-a229-5de5c7a9fc02"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-fecf8edf-f2d0-496a-a229-5de5c7a9fc02"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-fecf8edf-f2d0-496a-a229-5de5c7a9fc02"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-fecf8edf-f2d0-496a-a229-5de5c7a9fc02"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-fecf8edf-f2d0-496a-a229-5de5c7a9fc02"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-fc8fa3ea-638d-4514-b595-5e7495fe2ace {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-ee01b87e-4afb-4edc-bcc4-0bb32d7ef3ff"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ee01b87e-4afb-4edc-bcc4-0bb32d7ef3ff"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ee01b87e-4afb-4edc-bcc4-0bb32d7ef3ff"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ee01b87e-4afb-4edc-bcc4-0bb32d7ef3ff"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ee01b87e-4afb-4edc-bcc4-0bb32d7ef3ff"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ee01b87e-4afb-4edc-bcc4-0bb32d7ef3ff"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ee01b87e-4afb-4edc-bcc4-0bb32d7ef3ff"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-22644ba5-739b-44a2-957f-fe1636c6d8af {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-a0ed7d05-7efd-4016-b93c-c7f17f43bf51"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a0ed7d05-7efd-4016-b93c-c7f17f43bf51"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a0ed7d05-7efd-4016-b93c-c7f17f43bf51"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a0ed7d05-7efd-4016-b93c-c7f17f43bf51"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-da1624bb-c94e-46f1-aed1-6c40a1466797"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-da1624bb-c94e-46f1-aed1-6c40a1466797"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-da1624bb-c94e-46f1-aed1-6c40a1466797"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-da1624bb-c94e-46f1-aed1-6c40a1466797"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-da1624bb-c94e-46f1-aed1-6c40a1466797"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-da1624bb-c94e-46f1-aed1-6c40a1466797"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-da1624bb-c94e-46f1-aed1-6c40a1466797"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-70b66091-0449-4269-8989-74f6079652fe {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-c6adf64e-15df-4d54-a150-0ff00c3c2968"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c6adf64e-15df-4d54-a150-0ff00c3c2968"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c6adf64e-15df-4d54-a150-0ff00c3c2968"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c6adf64e-15df-4d54-a150-0ff00c3c2968"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c6adf64e-15df-4d54-a150-0ff00c3c2968"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c6adf64e-15df-4d54-a150-0ff00c3c2968"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c6adf64e-15df-4d54-a150-0ff00c3c2968"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-a7dd9598-c4ff-4b2b-aa36-5b8b4e994382 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-270979ad-e1ce-435d-8239-43a2fafb20e8"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-270979ad-e1ce-435d-8239-43a2fafb20e8"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-270979ad-e1ce-435d-8239-43a2fafb20e8"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-270979ad-e1ce-435d-8239-43a2fafb20e8"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-6e958adb-8166-412e-b1ef-9a8fba6959e2 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-6e958adb-8166-412e-b1ef-9a8fba6959e2 {
  margin: 0 !important;
  overflow: visible;
}

#s-6e958adb-8166-412e-b1ef-9a8fba6959e2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6e958adb-8166-412e-b1ef-9a8fba6959e2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6e958adb-8166-412e-b1ef-9a8fba6959e2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6e958adb-8166-412e-b1ef-9a8fba6959e2 img.shogun-image {
  /* Add background color handling */
  
}

#s-6e958adb-8166-412e-b1ef-9a8fba6959e2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6e958adb-8166-412e-b1ef-9a8fba6959e2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6e958adb-8166-412e-b1ef-9a8fba6959e2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6e958adb-8166-412e-b1ef-9a8fba6959e2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6e958adb-8166-412e-b1ef-9a8fba6959e2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-6e958adb-8166-412e-b1ef-9a8fba6959e2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image {
  box-sizing: border-box;
}



.s-6e958adb-8166-412e-b1ef-9a8fba6959e2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6e958adb-8166-412e-b1ef-9a8fba6959e2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image-container {
      position: relative;
    }

    .s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6e958adb-8166-412e-b1ef-9a8fba6959e2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-6e958adb-8166-412e-b1ef-9a8fba6959e2 {
  margin: 0 !important;
  overflow: visible;
}

#s-6e958adb-8166-412e-b1ef-9a8fba6959e2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6e958adb-8166-412e-b1ef-9a8fba6959e2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6e958adb-8166-412e-b1ef-9a8fba6959e2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6e958adb-8166-412e-b1ef-9a8fba6959e2 img.shogun-image {
  /* Add background color handling */
  
}

#s-6e958adb-8166-412e-b1ef-9a8fba6959e2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6e958adb-8166-412e-b1ef-9a8fba6959e2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6e958adb-8166-412e-b1ef-9a8fba6959e2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6e958adb-8166-412e-b1ef-9a8fba6959e2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6e958adb-8166-412e-b1ef-9a8fba6959e2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-6e958adb-8166-412e-b1ef-9a8fba6959e2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image {
  box-sizing: border-box;
}



.s-6e958adb-8166-412e-b1ef-9a8fba6959e2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6e958adb-8166-412e-b1ef-9a8fba6959e2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image-container {
      position: relative;
    }

    .s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6e958adb-8166-412e-b1ef-9a8fba6959e2 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-6e958adb-8166-412e-b1ef-9a8fba6959e2 {
  margin: 0 !important;
  overflow: visible;
}

#s-6e958adb-8166-412e-b1ef-9a8fba6959e2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6e958adb-8166-412e-b1ef-9a8fba6959e2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6e958adb-8166-412e-b1ef-9a8fba6959e2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6e958adb-8166-412e-b1ef-9a8fba6959e2 img.shogun-image {
  /* Add background color handling */
  
}

#s-6e958adb-8166-412e-b1ef-9a8fba6959e2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6e958adb-8166-412e-b1ef-9a8fba6959e2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6e958adb-8166-412e-b1ef-9a8fba6959e2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6e958adb-8166-412e-b1ef-9a8fba6959e2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6e958adb-8166-412e-b1ef-9a8fba6959e2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-6e958adb-8166-412e-b1ef-9a8fba6959e2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image {
  box-sizing: border-box;
}



.s-6e958adb-8166-412e-b1ef-9a8fba6959e2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6e958adb-8166-412e-b1ef-9a8fba6959e2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image-container {
      position: relative;
    }

    .s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6e958adb-8166-412e-b1ef-9a8fba6959e2 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-6e958adb-8166-412e-b1ef-9a8fba6959e2 {
  margin: 0 !important;
  overflow: visible;
}

#s-6e958adb-8166-412e-b1ef-9a8fba6959e2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6e958adb-8166-412e-b1ef-9a8fba6959e2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6e958adb-8166-412e-b1ef-9a8fba6959e2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6e958adb-8166-412e-b1ef-9a8fba6959e2 img.shogun-image {
  /* Add background color handling */
  
}

#s-6e958adb-8166-412e-b1ef-9a8fba6959e2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6e958adb-8166-412e-b1ef-9a8fba6959e2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6e958adb-8166-412e-b1ef-9a8fba6959e2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6e958adb-8166-412e-b1ef-9a8fba6959e2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6e958adb-8166-412e-b1ef-9a8fba6959e2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-6e958adb-8166-412e-b1ef-9a8fba6959e2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image {
  box-sizing: border-box;
}



.s-6e958adb-8166-412e-b1ef-9a8fba6959e2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6e958adb-8166-412e-b1ef-9a8fba6959e2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image-container {
      position: relative;
    }

    .s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6e958adb-8166-412e-b1ef-9a8fba6959e2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-6e958adb-8166-412e-b1ef-9a8fba6959e2 {
  margin: 0 !important;
  overflow: visible;
}

#s-6e958adb-8166-412e-b1ef-9a8fba6959e2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6e958adb-8166-412e-b1ef-9a8fba6959e2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6e958adb-8166-412e-b1ef-9a8fba6959e2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6e958adb-8166-412e-b1ef-9a8fba6959e2 img.shogun-image {
  /* Add background color handling */
  
}

#s-6e958adb-8166-412e-b1ef-9a8fba6959e2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6e958adb-8166-412e-b1ef-9a8fba6959e2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6e958adb-8166-412e-b1ef-9a8fba6959e2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6e958adb-8166-412e-b1ef-9a8fba6959e2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6e958adb-8166-412e-b1ef-9a8fba6959e2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-6e958adb-8166-412e-b1ef-9a8fba6959e2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image {
  box-sizing: border-box;
}



.s-6e958adb-8166-412e-b1ef-9a8fba6959e2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6e958adb-8166-412e-b1ef-9a8fba6959e2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image-container {
      position: relative;
    }

    .s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6e958adb-8166-412e-b1ef-9a8fba6959e2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6e958adb-8166-412e-b1ef-9a8fba6959e2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-6c9831f4-9a3b-46db-bde1-bea65591ac88 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-6c9831f4-9a3b-46db-bde1-bea65591ac88 {
  margin: 0 !important;
  overflow: visible;
}

#s-6c9831f4-9a3b-46db-bde1-bea65591ac88-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6c9831f4-9a3b-46db-bde1-bea65591ac88 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6c9831f4-9a3b-46db-bde1-bea65591ac88 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6c9831f4-9a3b-46db-bde1-bea65591ac88 img.shogun-image {
  /* Add background color handling */
  
}

#s-6c9831f4-9a3b-46db-bde1-bea65591ac88 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6c9831f4-9a3b-46db-bde1-bea65591ac88 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6c9831f4-9a3b-46db-bde1-bea65591ac88 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6c9831f4-9a3b-46db-bde1-bea65591ac88 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6c9831f4-9a3b-46db-bde1-bea65591ac88 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-6c9831f4-9a3b-46db-bde1-bea65591ac88 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image {
  box-sizing: border-box;
}



.s-6c9831f4-9a3b-46db-bde1-bea65591ac88 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6c9831f4-9a3b-46db-bde1-bea65591ac88 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image-container {
      position: relative;
    }

    .s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6c9831f4-9a3b-46db-bde1-bea65591ac88 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-6c9831f4-9a3b-46db-bde1-bea65591ac88 {
  margin: 0 !important;
  overflow: visible;
}

#s-6c9831f4-9a3b-46db-bde1-bea65591ac88-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6c9831f4-9a3b-46db-bde1-bea65591ac88 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6c9831f4-9a3b-46db-bde1-bea65591ac88 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6c9831f4-9a3b-46db-bde1-bea65591ac88 img.shogun-image {
  /* Add background color handling */
  
}

#s-6c9831f4-9a3b-46db-bde1-bea65591ac88 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6c9831f4-9a3b-46db-bde1-bea65591ac88 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6c9831f4-9a3b-46db-bde1-bea65591ac88 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6c9831f4-9a3b-46db-bde1-bea65591ac88 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6c9831f4-9a3b-46db-bde1-bea65591ac88 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-6c9831f4-9a3b-46db-bde1-bea65591ac88 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image {
  box-sizing: border-box;
}



.s-6c9831f4-9a3b-46db-bde1-bea65591ac88 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6c9831f4-9a3b-46db-bde1-bea65591ac88 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image-container {
      position: relative;
    }

    .s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6c9831f4-9a3b-46db-bde1-bea65591ac88 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-6c9831f4-9a3b-46db-bde1-bea65591ac88 {
  margin: 0 !important;
  overflow: visible;
}

#s-6c9831f4-9a3b-46db-bde1-bea65591ac88-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6c9831f4-9a3b-46db-bde1-bea65591ac88 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6c9831f4-9a3b-46db-bde1-bea65591ac88 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6c9831f4-9a3b-46db-bde1-bea65591ac88 img.shogun-image {
  /* Add background color handling */
  
}

#s-6c9831f4-9a3b-46db-bde1-bea65591ac88 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6c9831f4-9a3b-46db-bde1-bea65591ac88 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6c9831f4-9a3b-46db-bde1-bea65591ac88 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6c9831f4-9a3b-46db-bde1-bea65591ac88 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6c9831f4-9a3b-46db-bde1-bea65591ac88 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-6c9831f4-9a3b-46db-bde1-bea65591ac88 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image {
  box-sizing: border-box;
}



.s-6c9831f4-9a3b-46db-bde1-bea65591ac88 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6c9831f4-9a3b-46db-bde1-bea65591ac88 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image-container {
      position: relative;
    }

    .s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6c9831f4-9a3b-46db-bde1-bea65591ac88 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-6c9831f4-9a3b-46db-bde1-bea65591ac88 {
  margin: 0 !important;
  overflow: visible;
}

#s-6c9831f4-9a3b-46db-bde1-bea65591ac88-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6c9831f4-9a3b-46db-bde1-bea65591ac88 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6c9831f4-9a3b-46db-bde1-bea65591ac88 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6c9831f4-9a3b-46db-bde1-bea65591ac88 img.shogun-image {
  /* Add background color handling */
  
}

#s-6c9831f4-9a3b-46db-bde1-bea65591ac88 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6c9831f4-9a3b-46db-bde1-bea65591ac88 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6c9831f4-9a3b-46db-bde1-bea65591ac88 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6c9831f4-9a3b-46db-bde1-bea65591ac88 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6c9831f4-9a3b-46db-bde1-bea65591ac88 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-6c9831f4-9a3b-46db-bde1-bea65591ac88 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image {
  box-sizing: border-box;
}



.s-6c9831f4-9a3b-46db-bde1-bea65591ac88 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6c9831f4-9a3b-46db-bde1-bea65591ac88 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image-container {
      position: relative;
    }

    .s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6c9831f4-9a3b-46db-bde1-bea65591ac88 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-6c9831f4-9a3b-46db-bde1-bea65591ac88 {
  margin: 0 !important;
  overflow: visible;
}

#s-6c9831f4-9a3b-46db-bde1-bea65591ac88-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6c9831f4-9a3b-46db-bde1-bea65591ac88 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6c9831f4-9a3b-46db-bde1-bea65591ac88 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6c9831f4-9a3b-46db-bde1-bea65591ac88 img.shogun-image {
  /* Add background color handling */
  
}

#s-6c9831f4-9a3b-46db-bde1-bea65591ac88 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6c9831f4-9a3b-46db-bde1-bea65591ac88 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6c9831f4-9a3b-46db-bde1-bea65591ac88 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6c9831f4-9a3b-46db-bde1-bea65591ac88 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6c9831f4-9a3b-46db-bde1-bea65591ac88 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-6c9831f4-9a3b-46db-bde1-bea65591ac88 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image {
  box-sizing: border-box;
}



.s-6c9831f4-9a3b-46db-bde1-bea65591ac88 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6c9831f4-9a3b-46db-bde1-bea65591ac88 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image-container {
      position: relative;
    }

    .s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6c9831f4-9a3b-46db-bde1-bea65591ac88.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6c9831f4-9a3b-46db-bde1-bea65591ac88 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-4a66615a-317f-4cc9-a621-475b086735ad {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-4a66615a-317f-4cc9-a621-475b086735ad {
  margin: 0 !important;
  overflow: visible;
}

#s-4a66615a-317f-4cc9-a621-475b086735ad-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4a66615a-317f-4cc9-a621-475b086735ad {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4a66615a-317f-4cc9-a621-475b086735ad {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4a66615a-317f-4cc9-a621-475b086735ad img.shogun-image {
  /* Add background color handling */
  
}

#s-4a66615a-317f-4cc9-a621-475b086735ad img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4a66615a-317f-4cc9-a621-475b086735ad .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-4a66615a-317f-4cc9-a621-475b086735ad .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4a66615a-317f-4cc9-a621-475b086735ad .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4a66615a-317f-4cc9-a621-475b086735ad img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-4a66615a-317f-4cc9-a621-475b086735ad .shogun-image-content {
  
    justify-content: center;
  
}

.s-4a66615a-317f-4cc9-a621-475b086735ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image {
  box-sizing: border-box;
}



.s-4a66615a-317f-4cc9-a621-475b086735ad img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4a66615a-317f-4cc9-a621-475b086735ad {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image-container {
      position: relative;
    }

    .s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4a66615a-317f-4cc9-a621-475b086735ad img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-4a66615a-317f-4cc9-a621-475b086735ad {
  margin: 0 !important;
  overflow: visible;
}

#s-4a66615a-317f-4cc9-a621-475b086735ad-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4a66615a-317f-4cc9-a621-475b086735ad {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4a66615a-317f-4cc9-a621-475b086735ad {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4a66615a-317f-4cc9-a621-475b086735ad img.shogun-image {
  /* Add background color handling */
  
}

#s-4a66615a-317f-4cc9-a621-475b086735ad img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4a66615a-317f-4cc9-a621-475b086735ad .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-4a66615a-317f-4cc9-a621-475b086735ad .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4a66615a-317f-4cc9-a621-475b086735ad .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4a66615a-317f-4cc9-a621-475b086735ad img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-4a66615a-317f-4cc9-a621-475b086735ad .shogun-image-content {
  
    justify-content: center;
  
}

.s-4a66615a-317f-4cc9-a621-475b086735ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image {
  box-sizing: border-box;
}



.s-4a66615a-317f-4cc9-a621-475b086735ad img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4a66615a-317f-4cc9-a621-475b086735ad {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image-container {
      position: relative;
    }

    .s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4a66615a-317f-4cc9-a621-475b086735ad 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-4a66615a-317f-4cc9-a621-475b086735ad {
  margin: 0 !important;
  overflow: visible;
}

#s-4a66615a-317f-4cc9-a621-475b086735ad-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4a66615a-317f-4cc9-a621-475b086735ad {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4a66615a-317f-4cc9-a621-475b086735ad {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4a66615a-317f-4cc9-a621-475b086735ad img.shogun-image {
  /* Add background color handling */
  
}

#s-4a66615a-317f-4cc9-a621-475b086735ad img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4a66615a-317f-4cc9-a621-475b086735ad .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-4a66615a-317f-4cc9-a621-475b086735ad .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4a66615a-317f-4cc9-a621-475b086735ad .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4a66615a-317f-4cc9-a621-475b086735ad img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-4a66615a-317f-4cc9-a621-475b086735ad .shogun-image-content {
  
    justify-content: center;
  
}

.s-4a66615a-317f-4cc9-a621-475b086735ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image {
  box-sizing: border-box;
}



.s-4a66615a-317f-4cc9-a621-475b086735ad img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4a66615a-317f-4cc9-a621-475b086735ad {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image-container {
      position: relative;
    }

    .s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4a66615a-317f-4cc9-a621-475b086735ad 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-4a66615a-317f-4cc9-a621-475b086735ad {
  margin: 0 !important;
  overflow: visible;
}

#s-4a66615a-317f-4cc9-a621-475b086735ad-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4a66615a-317f-4cc9-a621-475b086735ad {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4a66615a-317f-4cc9-a621-475b086735ad {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4a66615a-317f-4cc9-a621-475b086735ad img.shogun-image {
  /* Add background color handling */
  
}

#s-4a66615a-317f-4cc9-a621-475b086735ad img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4a66615a-317f-4cc9-a621-475b086735ad .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-4a66615a-317f-4cc9-a621-475b086735ad .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4a66615a-317f-4cc9-a621-475b086735ad .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4a66615a-317f-4cc9-a621-475b086735ad img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-4a66615a-317f-4cc9-a621-475b086735ad .shogun-image-content {
  
    justify-content: center;
  
}

.s-4a66615a-317f-4cc9-a621-475b086735ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image {
  box-sizing: border-box;
}



.s-4a66615a-317f-4cc9-a621-475b086735ad img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4a66615a-317f-4cc9-a621-475b086735ad {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image-container {
      position: relative;
    }

    .s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4a66615a-317f-4cc9-a621-475b086735ad img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-4a66615a-317f-4cc9-a621-475b086735ad {
  margin: 0 !important;
  overflow: visible;
}

#s-4a66615a-317f-4cc9-a621-475b086735ad-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4a66615a-317f-4cc9-a621-475b086735ad {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4a66615a-317f-4cc9-a621-475b086735ad {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4a66615a-317f-4cc9-a621-475b086735ad img.shogun-image {
  /* Add background color handling */
  
}

#s-4a66615a-317f-4cc9-a621-475b086735ad img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4a66615a-317f-4cc9-a621-475b086735ad .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-4a66615a-317f-4cc9-a621-475b086735ad .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4a66615a-317f-4cc9-a621-475b086735ad .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4a66615a-317f-4cc9-a621-475b086735ad img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-4a66615a-317f-4cc9-a621-475b086735ad .shogun-image-content {
  
    justify-content: center;
  
}

.s-4a66615a-317f-4cc9-a621-475b086735ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image {
  box-sizing: border-box;
}



.s-4a66615a-317f-4cc9-a621-475b086735ad img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4a66615a-317f-4cc9-a621-475b086735ad {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image-container {
      position: relative;
    }

    .s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4a66615a-317f-4cc9-a621-475b086735ad.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4a66615a-317f-4cc9-a621-475b086735ad img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-a5375510-3277-4d6c-a1b7-44cf1687d433 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-a5375510-3277-4d6c-a1b7-44cf1687d433 {
  margin: 0 !important;
  overflow: visible;
}

#s-a5375510-3277-4d6c-a1b7-44cf1687d433-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a5375510-3277-4d6c-a1b7-44cf1687d433 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a5375510-3277-4d6c-a1b7-44cf1687d433 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a5375510-3277-4d6c-a1b7-44cf1687d433 img.shogun-image {
  /* Add background color handling */
  
}

#s-a5375510-3277-4d6c-a1b7-44cf1687d433 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a5375510-3277-4d6c-a1b7-44cf1687d433 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a5375510-3277-4d6c-a1b7-44cf1687d433 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a5375510-3277-4d6c-a1b7-44cf1687d433 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a5375510-3277-4d6c-a1b7-44cf1687d433 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-a5375510-3277-4d6c-a1b7-44cf1687d433 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a5375510-3277-4d6c-a1b7-44cf1687d433.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image {
  box-sizing: border-box;
}



.s-a5375510-3277-4d6c-a1b7-44cf1687d433 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a5375510-3277-4d6c-a1b7-44cf1687d433 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image-container {
      position: relative;
    }

    .s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a5375510-3277-4d6c-a1b7-44cf1687d433 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-a5375510-3277-4d6c-a1b7-44cf1687d433 {
  margin: 0 !important;
  overflow: visible;
}

#s-a5375510-3277-4d6c-a1b7-44cf1687d433-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a5375510-3277-4d6c-a1b7-44cf1687d433 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a5375510-3277-4d6c-a1b7-44cf1687d433 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a5375510-3277-4d6c-a1b7-44cf1687d433 img.shogun-image {
  /* Add background color handling */
  
}

#s-a5375510-3277-4d6c-a1b7-44cf1687d433 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a5375510-3277-4d6c-a1b7-44cf1687d433 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a5375510-3277-4d6c-a1b7-44cf1687d433 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a5375510-3277-4d6c-a1b7-44cf1687d433 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a5375510-3277-4d6c-a1b7-44cf1687d433 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-a5375510-3277-4d6c-a1b7-44cf1687d433 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a5375510-3277-4d6c-a1b7-44cf1687d433.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image {
  box-sizing: border-box;
}



.s-a5375510-3277-4d6c-a1b7-44cf1687d433 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a5375510-3277-4d6c-a1b7-44cf1687d433 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image-container {
      position: relative;
    }

    .s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a5375510-3277-4d6c-a1b7-44cf1687d433 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-a5375510-3277-4d6c-a1b7-44cf1687d433 {
  margin: 0 !important;
  overflow: visible;
}

#s-a5375510-3277-4d6c-a1b7-44cf1687d433-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a5375510-3277-4d6c-a1b7-44cf1687d433 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a5375510-3277-4d6c-a1b7-44cf1687d433 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a5375510-3277-4d6c-a1b7-44cf1687d433 img.shogun-image {
  /* Add background color handling */
  
}

#s-a5375510-3277-4d6c-a1b7-44cf1687d433 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a5375510-3277-4d6c-a1b7-44cf1687d433 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a5375510-3277-4d6c-a1b7-44cf1687d433 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a5375510-3277-4d6c-a1b7-44cf1687d433 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a5375510-3277-4d6c-a1b7-44cf1687d433 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-a5375510-3277-4d6c-a1b7-44cf1687d433 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a5375510-3277-4d6c-a1b7-44cf1687d433.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image {
  box-sizing: border-box;
}



.s-a5375510-3277-4d6c-a1b7-44cf1687d433 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a5375510-3277-4d6c-a1b7-44cf1687d433 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image-container {
      position: relative;
    }

    .s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a5375510-3277-4d6c-a1b7-44cf1687d433 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-a5375510-3277-4d6c-a1b7-44cf1687d433 {
  margin: 0 !important;
  overflow: visible;
}

#s-a5375510-3277-4d6c-a1b7-44cf1687d433-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a5375510-3277-4d6c-a1b7-44cf1687d433 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a5375510-3277-4d6c-a1b7-44cf1687d433 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a5375510-3277-4d6c-a1b7-44cf1687d433 img.shogun-image {
  /* Add background color handling */
  
}

#s-a5375510-3277-4d6c-a1b7-44cf1687d433 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a5375510-3277-4d6c-a1b7-44cf1687d433 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a5375510-3277-4d6c-a1b7-44cf1687d433 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a5375510-3277-4d6c-a1b7-44cf1687d433 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a5375510-3277-4d6c-a1b7-44cf1687d433 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-a5375510-3277-4d6c-a1b7-44cf1687d433 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a5375510-3277-4d6c-a1b7-44cf1687d433.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image {
  box-sizing: border-box;
}



.s-a5375510-3277-4d6c-a1b7-44cf1687d433 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a5375510-3277-4d6c-a1b7-44cf1687d433 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image-container {
      position: relative;
    }

    .s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a5375510-3277-4d6c-a1b7-44cf1687d433 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-a5375510-3277-4d6c-a1b7-44cf1687d433 {
  margin: 0 !important;
  overflow: visible;
}

#s-a5375510-3277-4d6c-a1b7-44cf1687d433-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a5375510-3277-4d6c-a1b7-44cf1687d433 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a5375510-3277-4d6c-a1b7-44cf1687d433 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a5375510-3277-4d6c-a1b7-44cf1687d433 img.shogun-image {
  /* Add background color handling */
  
}

#s-a5375510-3277-4d6c-a1b7-44cf1687d433 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a5375510-3277-4d6c-a1b7-44cf1687d433 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a5375510-3277-4d6c-a1b7-44cf1687d433 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a5375510-3277-4d6c-a1b7-44cf1687d433 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a5375510-3277-4d6c-a1b7-44cf1687d433 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-a5375510-3277-4d6c-a1b7-44cf1687d433 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a5375510-3277-4d6c-a1b7-44cf1687d433.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image {
  box-sizing: border-box;
}



.s-a5375510-3277-4d6c-a1b7-44cf1687d433 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a5375510-3277-4d6c-a1b7-44cf1687d433 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image-container {
      position: relative;
    }

    .s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a5375510-3277-4d6c-a1b7-44cf1687d433.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a5375510-3277-4d6c-a1b7-44cf1687d433 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
@media (min-width: 0px) {
[id="s-cc154833-04dc-4f42-a306-2b5450a653d7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cc154833-04dc-4f42-a306-2b5450a653d7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-cc154833-04dc-4f42-a306-2b5450a653d7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-cc154833-04dc-4f42-a306-2b5450a653d7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-1dc62159-c0b5-47e3-a41a-56bfb4da43ea"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1dc62159-c0b5-47e3-a41a-56bfb4da43ea"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1dc62159-c0b5-47e3-a41a-56bfb4da43ea"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1dc62159-c0b5-47e3-a41a-56bfb4da43ea"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1dc62159-c0b5-47e3-a41a-56bfb4da43ea"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1dc62159-c0b5-47e3-a41a-56bfb4da43ea"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1dc62159-c0b5-47e3-a41a-56bfb4da43ea"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-32a4595f-5ab4-4422-9877-98ffdce778c6 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-96b839a1-5988-4fe7-abce-f2c957a1d28c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-96b839a1-5988-4fe7-abce-f2c957a1d28c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-96b839a1-5988-4fe7-abce-f2c957a1d28c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-96b839a1-5988-4fe7-abce-f2c957a1d28c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-96b839a1-5988-4fe7-abce-f2c957a1d28c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-96b839a1-5988-4fe7-abce-f2c957a1d28c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-96b839a1-5988-4fe7-abce-f2c957a1d28c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-3a3b668f-36ca-4223-a25b-b5d196bf04f2 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-05c160a6-3dec-4994-a36e-6be6885b1425"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-05c160a6-3dec-4994-a36e-6be6885b1425"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-05c160a6-3dec-4994-a36e-6be6885b1425"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-05c160a6-3dec-4994-a36e-6be6885b1425"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-f55eba2f-7adf-421f-8bbe-d1917317df40"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f55eba2f-7adf-421f-8bbe-d1917317df40"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f55eba2f-7adf-421f-8bbe-d1917317df40"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f55eba2f-7adf-421f-8bbe-d1917317df40"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f55eba2f-7adf-421f-8bbe-d1917317df40"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f55eba2f-7adf-421f-8bbe-d1917317df40"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f55eba2f-7adf-421f-8bbe-d1917317df40"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-0feb699b-2baa-44cc-ae4f-a06c5ce5bc18 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-3ec66eab-da72-4ba1-8193-d539f955f4fc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3ec66eab-da72-4ba1-8193-d539f955f4fc"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3ec66eab-da72-4ba1-8193-d539f955f4fc"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3ec66eab-da72-4ba1-8193-d539f955f4fc"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3ec66eab-da72-4ba1-8193-d539f955f4fc"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3ec66eab-da72-4ba1-8193-d539f955f4fc"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3ec66eab-da72-4ba1-8193-d539f955f4fc"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-b752f284-3b18-4217-b7e6-e6e31d59c36b {
  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: 20px;
padding-left: 1%;
padding-bottom: 20px;
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-7592c6e9-9df3-4e79-b33f-665725d332a5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7592c6e9-9df3-4e79-b33f-665725d332a5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7592c6e9-9df3-4e79-b33f-665725d332a5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7592c6e9-9df3-4e79-b33f-665725d332a5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-f3171c65-dfb9-460e-a12d-b8681eca5a66"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f3171c65-dfb9-460e-a12d-b8681eca5a66"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f3171c65-dfb9-460e-a12d-b8681eca5a66"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f3171c65-dfb9-460e-a12d-b8681eca5a66"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f3171c65-dfb9-460e-a12d-b8681eca5a66"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f3171c65-dfb9-460e-a12d-b8681eca5a66"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f3171c65-dfb9-460e-a12d-b8681eca5a66"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-9d4c3dbd-6aec-40d0-a27d-207dddfea878 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-8b00d56e-cbce-4594-9379-2188e0e3a233"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8b00d56e-cbce-4594-9379-2188e0e3a233"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8b00d56e-cbce-4594-9379-2188e0e3a233"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8b00d56e-cbce-4594-9379-2188e0e3a233"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8b00d56e-cbce-4594-9379-2188e0e3a233"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8b00d56e-cbce-4594-9379-2188e0e3a233"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8b00d56e-cbce-4594-9379-2188e0e3a233"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-2340b4f6-19f6-4211-8b73-9444b5925524 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-7e5e1445-c002-483c-a3e9-4dc80d18fcf9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7e5e1445-c002-483c-a3e9-4dc80d18fcf9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7e5e1445-c002-483c-a3e9-4dc80d18fcf9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7e5e1445-c002-483c-a3e9-4dc80d18fcf9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-ff0a907f-cb1e-4c8f-bf64-94d003c84832"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ff0a907f-cb1e-4c8f-bf64-94d003c84832"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ff0a907f-cb1e-4c8f-bf64-94d003c84832"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ff0a907f-cb1e-4c8f-bf64-94d003c84832"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ff0a907f-cb1e-4c8f-bf64-94d003c84832"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ff0a907f-cb1e-4c8f-bf64-94d003c84832"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ff0a907f-cb1e-4c8f-bf64-94d003c84832"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-19824de3-907e-497b-aeee-d79d4d15c8d6 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-e3de13ca-379d-4252-8fce-4a365f925525"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e3de13ca-379d-4252-8fce-4a365f925525"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e3de13ca-379d-4252-8fce-4a365f925525"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e3de13ca-379d-4252-8fce-4a365f925525"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e3de13ca-379d-4252-8fce-4a365f925525"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e3de13ca-379d-4252-8fce-4a365f925525"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e3de13ca-379d-4252-8fce-4a365f925525"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-8b5b5ab5-20ae-4c5c-99d8-b9245b42d4c3 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-055a5f2f-da3b-4235-92c1-74630977c17f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-055a5f2f-da3b-4235-92c1-74630977c17f"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-055a5f2f-da3b-4235-92c1-74630977c17f"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-055a5f2f-da3b-4235-92c1-74630977c17f"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 {
  margin: 0 !important;
  overflow: visible;
}

#s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 img.shogun-image {
  /* Add background color handling */
  
}

#s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image {
  box-sizing: border-box;
}



.s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image-container {
      position: relative;
    }

    .s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 {
  margin: 0 !important;
  overflow: visible;
}

#s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 img.shogun-image {
  /* Add background color handling */
  
}

#s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image {
  box-sizing: border-box;
}



.s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image-container {
      position: relative;
    }

    .s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 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-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 {
  margin: 0 !important;
  overflow: visible;
}

#s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 img.shogun-image {
  /* Add background color handling */
  
}

#s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image {
  box-sizing: border-box;
}



.s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image-container {
      position: relative;
    }

    .s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 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-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 {
  margin: 0 !important;
  overflow: visible;
}

#s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 img.shogun-image {
  /* Add background color handling */
  
}

#s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image {
  box-sizing: border-box;
}



.s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image-container {
      position: relative;
    }

    .s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 {
  margin: 0 !important;
  overflow: visible;
}

#s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 img.shogun-image {
  /* Add background color handling */
  
}

#s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image {
  box-sizing: border-box;
}



.s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image-container {
      position: relative;
    }

    .s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b11ccffe-0bf9-42e6-b8ad-6358b99abda0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-6e826026-133d-4be0-9fe1-4b1543f17815 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-6e826026-133d-4be0-9fe1-4b1543f17815 {
  margin: 0 !important;
  overflow: visible;
}

#s-6e826026-133d-4be0-9fe1-4b1543f17815-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6e826026-133d-4be0-9fe1-4b1543f17815 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6e826026-133d-4be0-9fe1-4b1543f17815 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6e826026-133d-4be0-9fe1-4b1543f17815 img.shogun-image {
  /* Add background color handling */
  
}

#s-6e826026-133d-4be0-9fe1-4b1543f17815 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6e826026-133d-4be0-9fe1-4b1543f17815 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6e826026-133d-4be0-9fe1-4b1543f17815 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6e826026-133d-4be0-9fe1-4b1543f17815 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6e826026-133d-4be0-9fe1-4b1543f17815 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-6e826026-133d-4be0-9fe1-4b1543f17815 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6e826026-133d-4be0-9fe1-4b1543f17815.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image {
  box-sizing: border-box;
}



.s-6e826026-133d-4be0-9fe1-4b1543f17815 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6e826026-133d-4be0-9fe1-4b1543f17815 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image-container {
      position: relative;
    }

    .s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6e826026-133d-4be0-9fe1-4b1543f17815 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-6e826026-133d-4be0-9fe1-4b1543f17815 {
  margin: 0 !important;
  overflow: visible;
}

#s-6e826026-133d-4be0-9fe1-4b1543f17815-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6e826026-133d-4be0-9fe1-4b1543f17815 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6e826026-133d-4be0-9fe1-4b1543f17815 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6e826026-133d-4be0-9fe1-4b1543f17815 img.shogun-image {
  /* Add background color handling */
  
}

#s-6e826026-133d-4be0-9fe1-4b1543f17815 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6e826026-133d-4be0-9fe1-4b1543f17815 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6e826026-133d-4be0-9fe1-4b1543f17815 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6e826026-133d-4be0-9fe1-4b1543f17815 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6e826026-133d-4be0-9fe1-4b1543f17815 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-6e826026-133d-4be0-9fe1-4b1543f17815 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6e826026-133d-4be0-9fe1-4b1543f17815.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image {
  box-sizing: border-box;
}



.s-6e826026-133d-4be0-9fe1-4b1543f17815 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6e826026-133d-4be0-9fe1-4b1543f17815 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image-container {
      position: relative;
    }

    .s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6e826026-133d-4be0-9fe1-4b1543f17815 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-6e826026-133d-4be0-9fe1-4b1543f17815 {
  margin: 0 !important;
  overflow: visible;
}

#s-6e826026-133d-4be0-9fe1-4b1543f17815-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6e826026-133d-4be0-9fe1-4b1543f17815 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6e826026-133d-4be0-9fe1-4b1543f17815 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6e826026-133d-4be0-9fe1-4b1543f17815 img.shogun-image {
  /* Add background color handling */
  
}

#s-6e826026-133d-4be0-9fe1-4b1543f17815 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6e826026-133d-4be0-9fe1-4b1543f17815 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6e826026-133d-4be0-9fe1-4b1543f17815 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6e826026-133d-4be0-9fe1-4b1543f17815 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6e826026-133d-4be0-9fe1-4b1543f17815 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-6e826026-133d-4be0-9fe1-4b1543f17815 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6e826026-133d-4be0-9fe1-4b1543f17815.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image {
  box-sizing: border-box;
}



.s-6e826026-133d-4be0-9fe1-4b1543f17815 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6e826026-133d-4be0-9fe1-4b1543f17815 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image-container {
      position: relative;
    }

    .s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6e826026-133d-4be0-9fe1-4b1543f17815 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-6e826026-133d-4be0-9fe1-4b1543f17815 {
  margin: 0 !important;
  overflow: visible;
}

#s-6e826026-133d-4be0-9fe1-4b1543f17815-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6e826026-133d-4be0-9fe1-4b1543f17815 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6e826026-133d-4be0-9fe1-4b1543f17815 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6e826026-133d-4be0-9fe1-4b1543f17815 img.shogun-image {
  /* Add background color handling */
  
}

#s-6e826026-133d-4be0-9fe1-4b1543f17815 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6e826026-133d-4be0-9fe1-4b1543f17815 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6e826026-133d-4be0-9fe1-4b1543f17815 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6e826026-133d-4be0-9fe1-4b1543f17815 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6e826026-133d-4be0-9fe1-4b1543f17815 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-6e826026-133d-4be0-9fe1-4b1543f17815 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6e826026-133d-4be0-9fe1-4b1543f17815.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image {
  box-sizing: border-box;
}



.s-6e826026-133d-4be0-9fe1-4b1543f17815 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6e826026-133d-4be0-9fe1-4b1543f17815 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image-container {
      position: relative;
    }

    .s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6e826026-133d-4be0-9fe1-4b1543f17815 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-6e826026-133d-4be0-9fe1-4b1543f17815 {
  margin: 0 !important;
  overflow: visible;
}

#s-6e826026-133d-4be0-9fe1-4b1543f17815-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6e826026-133d-4be0-9fe1-4b1543f17815 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6e826026-133d-4be0-9fe1-4b1543f17815 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6e826026-133d-4be0-9fe1-4b1543f17815 img.shogun-image {
  /* Add background color handling */
  
}

#s-6e826026-133d-4be0-9fe1-4b1543f17815 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6e826026-133d-4be0-9fe1-4b1543f17815 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6e826026-133d-4be0-9fe1-4b1543f17815 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6e826026-133d-4be0-9fe1-4b1543f17815 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6e826026-133d-4be0-9fe1-4b1543f17815 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-6e826026-133d-4be0-9fe1-4b1543f17815 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6e826026-133d-4be0-9fe1-4b1543f17815.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image {
  box-sizing: border-box;
}



.s-6e826026-133d-4be0-9fe1-4b1543f17815 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6e826026-133d-4be0-9fe1-4b1543f17815 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image-container {
      position: relative;
    }

    .s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6e826026-133d-4be0-9fe1-4b1543f17815.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6e826026-133d-4be0-9fe1-4b1543f17815 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c {
  margin: 0 !important;
  overflow: visible;
}

#s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c img.shogun-image {
  /* Add background color handling */
  
}

#s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c .shogun-image-content {
  
    justify-content: center;
  
}

.s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image {
  box-sizing: border-box;
}



.s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image-container {
      position: relative;
    }

    .s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c {
  margin: 0 !important;
  overflow: visible;
}

#s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c img.shogun-image {
  /* Add background color handling */
  
}

#s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c .shogun-image-content {
  
    justify-content: center;
  
}

.s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image {
  box-sizing: border-box;
}



.s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image-container {
      position: relative;
    }

    .s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c 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-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c {
  margin: 0 !important;
  overflow: visible;
}

#s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c img.shogun-image {
  /* Add background color handling */
  
}

#s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c .shogun-image-content {
  
    justify-content: center;
  
}

.s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image {
  box-sizing: border-box;
}



.s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image-container {
      position: relative;
    }

    .s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c 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-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c {
  margin: 0 !important;
  overflow: visible;
}

#s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c img.shogun-image {
  /* Add background color handling */
  
}

#s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c .shogun-image-content {
  
    justify-content: center;
  
}

.s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image {
  box-sizing: border-box;
}



.s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image-container {
      position: relative;
    }

    .s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c {
  margin: 0 !important;
  overflow: visible;
}

#s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c img.shogun-image {
  /* Add background color handling */
  
}

#s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c .shogun-image-content {
  
    justify-content: center;
  
}

.s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image {
  box-sizing: border-box;
}



.s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image-container {
      position: relative;
    }

    .s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d98a23d7-2f7c-46fc-bc7d-05136c13ed0c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-6eddc401-1265-4465-8e2b-e420aa735f53 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-6eddc401-1265-4465-8e2b-e420aa735f53 {
  margin: 0 !important;
  overflow: visible;
}

#s-6eddc401-1265-4465-8e2b-e420aa735f53-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6eddc401-1265-4465-8e2b-e420aa735f53 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6eddc401-1265-4465-8e2b-e420aa735f53 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6eddc401-1265-4465-8e2b-e420aa735f53 img.shogun-image {
  /* Add background color handling */
  
}

#s-6eddc401-1265-4465-8e2b-e420aa735f53 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6eddc401-1265-4465-8e2b-e420aa735f53 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6eddc401-1265-4465-8e2b-e420aa735f53 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6eddc401-1265-4465-8e2b-e420aa735f53 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6eddc401-1265-4465-8e2b-e420aa735f53 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-6eddc401-1265-4465-8e2b-e420aa735f53 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6eddc401-1265-4465-8e2b-e420aa735f53.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image {
  box-sizing: border-box;
}



.s-6eddc401-1265-4465-8e2b-e420aa735f53 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6eddc401-1265-4465-8e2b-e420aa735f53 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image-container {
      position: relative;
    }

    .s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6eddc401-1265-4465-8e2b-e420aa735f53 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-6eddc401-1265-4465-8e2b-e420aa735f53 {
  margin: 0 !important;
  overflow: visible;
}

#s-6eddc401-1265-4465-8e2b-e420aa735f53-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6eddc401-1265-4465-8e2b-e420aa735f53 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6eddc401-1265-4465-8e2b-e420aa735f53 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6eddc401-1265-4465-8e2b-e420aa735f53 img.shogun-image {
  /* Add background color handling */
  
}

#s-6eddc401-1265-4465-8e2b-e420aa735f53 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6eddc401-1265-4465-8e2b-e420aa735f53 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6eddc401-1265-4465-8e2b-e420aa735f53 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6eddc401-1265-4465-8e2b-e420aa735f53 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6eddc401-1265-4465-8e2b-e420aa735f53 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-6eddc401-1265-4465-8e2b-e420aa735f53 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6eddc401-1265-4465-8e2b-e420aa735f53.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image {
  box-sizing: border-box;
}



.s-6eddc401-1265-4465-8e2b-e420aa735f53 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6eddc401-1265-4465-8e2b-e420aa735f53 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image-container {
      position: relative;
    }

    .s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6eddc401-1265-4465-8e2b-e420aa735f53 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-6eddc401-1265-4465-8e2b-e420aa735f53 {
  margin: 0 !important;
  overflow: visible;
}

#s-6eddc401-1265-4465-8e2b-e420aa735f53-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6eddc401-1265-4465-8e2b-e420aa735f53 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6eddc401-1265-4465-8e2b-e420aa735f53 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6eddc401-1265-4465-8e2b-e420aa735f53 img.shogun-image {
  /* Add background color handling */
  
}

#s-6eddc401-1265-4465-8e2b-e420aa735f53 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6eddc401-1265-4465-8e2b-e420aa735f53 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6eddc401-1265-4465-8e2b-e420aa735f53 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6eddc401-1265-4465-8e2b-e420aa735f53 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6eddc401-1265-4465-8e2b-e420aa735f53 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-6eddc401-1265-4465-8e2b-e420aa735f53 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6eddc401-1265-4465-8e2b-e420aa735f53.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image {
  box-sizing: border-box;
}



.s-6eddc401-1265-4465-8e2b-e420aa735f53 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6eddc401-1265-4465-8e2b-e420aa735f53 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image-container {
      position: relative;
    }

    .s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6eddc401-1265-4465-8e2b-e420aa735f53 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-6eddc401-1265-4465-8e2b-e420aa735f53 {
  margin: 0 !important;
  overflow: visible;
}

#s-6eddc401-1265-4465-8e2b-e420aa735f53-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6eddc401-1265-4465-8e2b-e420aa735f53 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6eddc401-1265-4465-8e2b-e420aa735f53 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6eddc401-1265-4465-8e2b-e420aa735f53 img.shogun-image {
  /* Add background color handling */
  
}

#s-6eddc401-1265-4465-8e2b-e420aa735f53 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6eddc401-1265-4465-8e2b-e420aa735f53 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6eddc401-1265-4465-8e2b-e420aa735f53 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6eddc401-1265-4465-8e2b-e420aa735f53 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6eddc401-1265-4465-8e2b-e420aa735f53 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-6eddc401-1265-4465-8e2b-e420aa735f53 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6eddc401-1265-4465-8e2b-e420aa735f53.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image {
  box-sizing: border-box;
}



.s-6eddc401-1265-4465-8e2b-e420aa735f53 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6eddc401-1265-4465-8e2b-e420aa735f53 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image-container {
      position: relative;
    }

    .s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6eddc401-1265-4465-8e2b-e420aa735f53 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-6eddc401-1265-4465-8e2b-e420aa735f53 {
  margin: 0 !important;
  overflow: visible;
}

#s-6eddc401-1265-4465-8e2b-e420aa735f53-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6eddc401-1265-4465-8e2b-e420aa735f53 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6eddc401-1265-4465-8e2b-e420aa735f53 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6eddc401-1265-4465-8e2b-e420aa735f53 img.shogun-image {
  /* Add background color handling */
  
}

#s-6eddc401-1265-4465-8e2b-e420aa735f53 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6eddc401-1265-4465-8e2b-e420aa735f53 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6eddc401-1265-4465-8e2b-e420aa735f53 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6eddc401-1265-4465-8e2b-e420aa735f53 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6eddc401-1265-4465-8e2b-e420aa735f53 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-6eddc401-1265-4465-8e2b-e420aa735f53 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6eddc401-1265-4465-8e2b-e420aa735f53.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image {
  box-sizing: border-box;
}



.s-6eddc401-1265-4465-8e2b-e420aa735f53 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6eddc401-1265-4465-8e2b-e420aa735f53 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image-container {
      position: relative;
    }

    .s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6eddc401-1265-4465-8e2b-e420aa735f53.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6eddc401-1265-4465-8e2b-e420aa735f53 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
@media (min-width: 0px) {
[id="s-f7c5b2d9-c4be-4ac2-9f09-4dc8c892c056"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f7c5b2d9-c4be-4ac2-9f09-4dc8c892c056"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f7c5b2d9-c4be-4ac2-9f09-4dc8c892c056"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f7c5b2d9-c4be-4ac2-9f09-4dc8c892c056"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-c36c2b09-ff45-4066-8e5e-7557742548da"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c36c2b09-ff45-4066-8e5e-7557742548da"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c36c2b09-ff45-4066-8e5e-7557742548da"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c36c2b09-ff45-4066-8e5e-7557742548da"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c36c2b09-ff45-4066-8e5e-7557742548da"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c36c2b09-ff45-4066-8e5e-7557742548da"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c36c2b09-ff45-4066-8e5e-7557742548da"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-0ac234dc-85d9-43f8-a7b4-45cfdfc83e8f {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-e8cbb462-97d9-4af9-be71-834cf3cefa13"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e8cbb462-97d9-4af9-be71-834cf3cefa13"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e8cbb462-97d9-4af9-be71-834cf3cefa13"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e8cbb462-97d9-4af9-be71-834cf3cefa13"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e8cbb462-97d9-4af9-be71-834cf3cefa13"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e8cbb462-97d9-4af9-be71-834cf3cefa13"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e8cbb462-97d9-4af9-be71-834cf3cefa13"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-ae3ab34c-014e-47fc-ab56-e45e28ffe0b9 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-3d97fa76-e2e2-4a50-8feb-6044c0101b4f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3d97fa76-e2e2-4a50-8feb-6044c0101b4f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3d97fa76-e2e2-4a50-8feb-6044c0101b4f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3d97fa76-e2e2-4a50-8feb-6044c0101b4f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-73ac0fa0-e132-4acd-a7c0-21e8b31175ab"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-73ac0fa0-e132-4acd-a7c0-21e8b31175ab"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-73ac0fa0-e132-4acd-a7c0-21e8b31175ab"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-73ac0fa0-e132-4acd-a7c0-21e8b31175ab"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-73ac0fa0-e132-4acd-a7c0-21e8b31175ab"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-73ac0fa0-e132-4acd-a7c0-21e8b31175ab"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-73ac0fa0-e132-4acd-a7c0-21e8b31175ab"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-e85bb4b1-93bd-458a-b8aa-a23fdfa3dc0e {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-59a08ac6-00c5-4083-bd52-42fbaf576681"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-59a08ac6-00c5-4083-bd52-42fbaf576681"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-59a08ac6-00c5-4083-bd52-42fbaf576681"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-59a08ac6-00c5-4083-bd52-42fbaf576681"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-59a08ac6-00c5-4083-bd52-42fbaf576681"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-59a08ac6-00c5-4083-bd52-42fbaf576681"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-59a08ac6-00c5-4083-bd52-42fbaf576681"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-2134fb2a-397e-44ae-a0ab-77deb56a709f {
  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-82b7d6c9-5365-4d3c-9796-d1284ff31858"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-82b7d6c9-5365-4d3c-9796-d1284ff31858"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-82b7d6c9-5365-4d3c-9796-d1284ff31858"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-82b7d6c9-5365-4d3c-9796-d1284ff31858"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-530962ce-ac93-4104-8b4b-83f41ce00f02"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-530962ce-ac93-4104-8b4b-83f41ce00f02"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-530962ce-ac93-4104-8b4b-83f41ce00f02"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-530962ce-ac93-4104-8b4b-83f41ce00f02"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-530962ce-ac93-4104-8b4b-83f41ce00f02"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-530962ce-ac93-4104-8b4b-83f41ce00f02"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-530962ce-ac93-4104-8b4b-83f41ce00f02"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-89112b2a-db4e-4c05-acc0-731cf258df9b {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-c306cc89-c709-494e-82ae-5d7f23144abf"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c306cc89-c709-494e-82ae-5d7f23144abf"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c306cc89-c709-494e-82ae-5d7f23144abf"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c306cc89-c709-494e-82ae-5d7f23144abf"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c306cc89-c709-494e-82ae-5d7f23144abf"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c306cc89-c709-494e-82ae-5d7f23144abf"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c306cc89-c709-494e-82ae-5d7f23144abf"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-871c8539-49bc-4fd2-a3c7-4109df8b642a {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-10301609-301a-46c6-b6d3-f1e28ce90be3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-10301609-301a-46c6-b6d3-f1e28ce90be3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-10301609-301a-46c6-b6d3-f1e28ce90be3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-10301609-301a-46c6-b6d3-f1e28ce90be3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-0c9f9b31-f713-4c86-88b7-0902cf84db13"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0c9f9b31-f713-4c86-88b7-0902cf84db13"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-0c9f9b31-f713-4c86-88b7-0902cf84db13"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0c9f9b31-f713-4c86-88b7-0902cf84db13"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-0c9f9b31-f713-4c86-88b7-0902cf84db13"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0c9f9b31-f713-4c86-88b7-0902cf84db13"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-0c9f9b31-f713-4c86-88b7-0902cf84db13"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-97559f72-260d-41de-915e-ac95e133ae7f {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-5de336a8-8a1b-455d-84ea-e9c5a6e75e0e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5de336a8-8a1b-455d-84ea-e9c5a6e75e0e"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-5de336a8-8a1b-455d-84ea-e9c5a6e75e0e"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5de336a8-8a1b-455d-84ea-e9c5a6e75e0e"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-5de336a8-8a1b-455d-84ea-e9c5a6e75e0e"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5de336a8-8a1b-455d-84ea-e9c5a6e75e0e"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-5de336a8-8a1b-455d-84ea-e9c5a6e75e0e"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-aebb1903-0390-4ef8-b9d1-73a181f60607 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-6725d093-54d9-4e83-b1f3-eaec05c3e36d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6725d093-54d9-4e83-b1f3-eaec05c3e36d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6725d093-54d9-4e83-b1f3-eaec05c3e36d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6725d093-54d9-4e83-b1f3-eaec05c3e36d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-db5842b7-a67d-4aca-9ae2-250ec0b096eb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-db5842b7-a67d-4aca-9ae2-250ec0b096eb"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-db5842b7-a67d-4aca-9ae2-250ec0b096eb"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-db5842b7-a67d-4aca-9ae2-250ec0b096eb"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-db5842b7-a67d-4aca-9ae2-250ec0b096eb"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-db5842b7-a67d-4aca-9ae2-250ec0b096eb"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-db5842b7-a67d-4aca-9ae2-250ec0b096eb"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-19ac0e9e-6145-4c33-a951-17be089ae7a0 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-c34104f5-5bb9-4d99-888f-aef3fa1eed7c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c34104f5-5bb9-4d99-888f-aef3fa1eed7c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c34104f5-5bb9-4d99-888f-aef3fa1eed7c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c34104f5-5bb9-4d99-888f-aef3fa1eed7c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c34104f5-5bb9-4d99-888f-aef3fa1eed7c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c34104f5-5bb9-4d99-888f-aef3fa1eed7c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c34104f5-5bb9-4d99-888f-aef3fa1eed7c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-add4ec9c-23c7-4aed-9f8b-03fd38eec6b8 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-9047e0a5-4479-41f7-9d58-f1bda2cf7cb0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9047e0a5-4479-41f7-9d58-f1bda2cf7cb0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9047e0a5-4479-41f7-9d58-f1bda2cf7cb0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9047e0a5-4479-41f7-9d58-f1bda2cf7cb0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-2fb08bee-e56f-402f-81c9-63aaaae94b1c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2fb08bee-e56f-402f-81c9-63aaaae94b1c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2fb08bee-e56f-402f-81c9-63aaaae94b1c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2fb08bee-e56f-402f-81c9-63aaaae94b1c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2fb08bee-e56f-402f-81c9-63aaaae94b1c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2fb08bee-e56f-402f-81c9-63aaaae94b1c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2fb08bee-e56f-402f-81c9-63aaaae94b1c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-3c56be95-eaf3-4c42-b76d-6c696e4c296b {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-79b17222-59ba-4f7f-960c-7208653f8a8c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-79b17222-59ba-4f7f-960c-7208653f8a8c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-79b17222-59ba-4f7f-960c-7208653f8a8c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-79b17222-59ba-4f7f-960c-7208653f8a8c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-79b17222-59ba-4f7f-960c-7208653f8a8c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-79b17222-59ba-4f7f-960c-7208653f8a8c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-79b17222-59ba-4f7f-960c-7208653f8a8c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-ce817572-7776-4b05-bea0-ae3d5bbc847b {
  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: 20px;
padding-left: 1%;
padding-bottom: 20px;
padding-right: 1%;
}

@media (min-width: 0px) {
[id="s-87166d0a-1fdd-41f0-aeba-e72c011c7353"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-87166d0a-1fdd-41f0-aeba-e72c011c7353"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-87166d0a-1fdd-41f0-aeba-e72c011c7353"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-87166d0a-1fdd-41f0-aeba-e72c011c7353"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-a3fc0fc7-4380-409d-b55d-992f4b576fd7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a3fc0fc7-4380-409d-b55d-992f4b576fd7"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a3fc0fc7-4380-409d-b55d-992f4b576fd7"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a3fc0fc7-4380-409d-b55d-992f4b576fd7"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a3fc0fc7-4380-409d-b55d-992f4b576fd7"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a3fc0fc7-4380-409d-b55d-992f4b576fd7"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a3fc0fc7-4380-409d-b55d-992f4b576fd7"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-59192792-bcc7-4b4e-a640-2188da9d73f1 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-7a2a269b-c3ec-4ffd-8ef3-a6ae8b760c23"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7a2a269b-c3ec-4ffd-8ef3-a6ae8b760c23"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7a2a269b-c3ec-4ffd-8ef3-a6ae8b760c23"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7a2a269b-c3ec-4ffd-8ef3-a6ae8b760c23"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7a2a269b-c3ec-4ffd-8ef3-a6ae8b760c23"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7a2a269b-c3ec-4ffd-8ef3-a6ae8b760c23"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7a2a269b-c3ec-4ffd-8ef3-a6ae8b760c23"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-0440c12a-a455-47f3-9190-027770d2306a {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-ba6c7d15-f335-4726-93cc-78b60ba63c7b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ba6c7d15-f335-4726-93cc-78b60ba63c7b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ba6c7d15-f335-4726-93cc-78b60ba63c7b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ba6c7d15-f335-4726-93cc-78b60ba63c7b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-765d9b64-5bf7-4aaf-ab04-c32c0ff6e5c7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-765d9b64-5bf7-4aaf-ab04-c32c0ff6e5c7"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-765d9b64-5bf7-4aaf-ab04-c32c0ff6e5c7"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-765d9b64-5bf7-4aaf-ab04-c32c0ff6e5c7"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-765d9b64-5bf7-4aaf-ab04-c32c0ff6e5c7"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-765d9b64-5bf7-4aaf-ab04-c32c0ff6e5c7"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-765d9b64-5bf7-4aaf-ab04-c32c0ff6e5c7"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-76a2298a-6157-4f44-a423-dfee6f387382 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-603157a9-2511-49be-ae03-1c3a902db046"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-603157a9-2511-49be-ae03-1c3a902db046"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-603157a9-2511-49be-ae03-1c3a902db046"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-603157a9-2511-49be-ae03-1c3a902db046"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-603157a9-2511-49be-ae03-1c3a902db046"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-603157a9-2511-49be-ae03-1c3a902db046"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-603157a9-2511-49be-ae03-1c3a902db046"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-45b9b6d3-ab7e-40c6-95fd-f65a9de8a76f {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-5b879c78-0ad0-447f-b20b-e43deb9f8639"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5b879c78-0ad0-447f-b20b-e43deb9f8639"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5b879c78-0ad0-447f-b20b-e43deb9f8639"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5b879c78-0ad0-447f-b20b-e43deb9f8639"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-e5837e4b-5506-4829-ab29-38ef796a13ae"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e5837e4b-5506-4829-ab29-38ef796a13ae"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e5837e4b-5506-4829-ab29-38ef796a13ae"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e5837e4b-5506-4829-ab29-38ef796a13ae"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e5837e4b-5506-4829-ab29-38ef796a13ae"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e5837e4b-5506-4829-ab29-38ef796a13ae"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e5837e4b-5506-4829-ab29-38ef796a13ae"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-8f74b9ff-6ea5-4cd2-8935-6c97b8ea265c {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-a1b8011b-a37d-4a17-b305-9ceacfc5048e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a1b8011b-a37d-4a17-b305-9ceacfc5048e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a1b8011b-a37d-4a17-b305-9ceacfc5048e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a1b8011b-a37d-4a17-b305-9ceacfc5048e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a1b8011b-a37d-4a17-b305-9ceacfc5048e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a1b8011b-a37d-4a17-b305-9ceacfc5048e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a1b8011b-a37d-4a17-b305-9ceacfc5048e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-a5419a82-712b-4260-a89a-40e3fbfa69e9 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-e34623aa-c297-455e-9c2f-f678f182e2d2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e34623aa-c297-455e-9c2f-f678f182e2d2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e34623aa-c297-455e-9c2f-f678f182e2d2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e34623aa-c297-455e-9c2f-f678f182e2d2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-685a898e-bc97-473e-81e5-308e8968f0da"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-685a898e-bc97-473e-81e5-308e8968f0da"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-685a898e-bc97-473e-81e5-308e8968f0da"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-685a898e-bc97-473e-81e5-308e8968f0da"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-685a898e-bc97-473e-81e5-308e8968f0da"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-685a898e-bc97-473e-81e5-308e8968f0da"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-685a898e-bc97-473e-81e5-308e8968f0da"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-7c827f94-6492-4bf8-86b5-70c8f35a9fa8 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-8c72715d-140f-40d7-89cc-9aaacffb1bd7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8c72715d-140f-40d7-89cc-9aaacffb1bd7"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8c72715d-140f-40d7-89cc-9aaacffb1bd7"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8c72715d-140f-40d7-89cc-9aaacffb1bd7"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8c72715d-140f-40d7-89cc-9aaacffb1bd7"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8c72715d-140f-40d7-89cc-9aaacffb1bd7"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8c72715d-140f-40d7-89cc-9aaacffb1bd7"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-4351dfbb-de70-4498-98c4-091c3a52a63b {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-ad5f41d9-0a0c-4457-9623-f45f87bba105 {
  margin-top: -10px;
margin-bottom: -10px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-ad5f41d9-0a0c-4457-9623-f45f87bba105 hr {
  border-top: 1px solid #ddd;
}

@media (min-width: 0px) {
[id="s-79ca5fe2-e9ee-4389-aca0-156f0f50edae"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-79ca5fe2-e9ee-4389-aca0-156f0f50edae"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-79ca5fe2-e9ee-4389-aca0-156f0f50edae"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-79ca5fe2-e9ee-4389-aca0-156f0f50edae"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-b9bf98bb-0ffa-4756-a6b8-7bc17f71d016"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b9bf98bb-0ffa-4756-a6b8-7bc17f71d016"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b9bf98bb-0ffa-4756-a6b8-7bc17f71d016"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b9bf98bb-0ffa-4756-a6b8-7bc17f71d016"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b9bf98bb-0ffa-4756-a6b8-7bc17f71d016"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b9bf98bb-0ffa-4756-a6b8-7bc17f71d016"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b9bf98bb-0ffa-4756-a6b8-7bc17f71d016"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-0a0de414-0051-4e82-a209-676795a003f4 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-c0cf7285-6a13-4f50-b102-7288ee7e0fd6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c0cf7285-6a13-4f50-b102-7288ee7e0fd6"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c0cf7285-6a13-4f50-b102-7288ee7e0fd6"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c0cf7285-6a13-4f50-b102-7288ee7e0fd6"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c0cf7285-6a13-4f50-b102-7288ee7e0fd6"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c0cf7285-6a13-4f50-b102-7288ee7e0fd6"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c0cf7285-6a13-4f50-b102-7288ee7e0fd6"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-af4910d0-081f-424d-8bc6-cc0559501428 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-3bc0a788-5760-4828-b1cf-f02e28e5d92f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3bc0a788-5760-4828-b1cf-f02e28e5d92f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3bc0a788-5760-4828-b1cf-f02e28e5d92f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3bc0a788-5760-4828-b1cf-f02e28e5d92f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-c35820a9-861e-422f-9f72-1a1ad96075a1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c35820a9-861e-422f-9f72-1a1ad96075a1"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c35820a9-861e-422f-9f72-1a1ad96075a1"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c35820a9-861e-422f-9f72-1a1ad96075a1"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c35820a9-861e-422f-9f72-1a1ad96075a1"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c35820a9-861e-422f-9f72-1a1ad96075a1"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c35820a9-861e-422f-9f72-1a1ad96075a1"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-eb35b50c-aca2-46e7-bfdd-bf83a67dca58 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-31df5b5c-b2dd-4fc1-8b99-8e52e7b9fe5e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-31df5b5c-b2dd-4fc1-8b99-8e52e7b9fe5e"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-31df5b5c-b2dd-4fc1-8b99-8e52e7b9fe5e"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-31df5b5c-b2dd-4fc1-8b99-8e52e7b9fe5e"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-31df5b5c-b2dd-4fc1-8b99-8e52e7b9fe5e"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-31df5b5c-b2dd-4fc1-8b99-8e52e7b9fe5e"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-31df5b5c-b2dd-4fc1-8b99-8e52e7b9fe5e"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-2263daea-3bd9-4a85-a82f-f97757977b4d {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-9992792f-0220-40fb-8e72-6b024d7b562c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9992792f-0220-40fb-8e72-6b024d7b562c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9992792f-0220-40fb-8e72-6b024d7b562c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9992792f-0220-40fb-8e72-6b024d7b562c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-6fd0165b-c1c7-404d-a237-ec14def69818"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6fd0165b-c1c7-404d-a237-ec14def69818"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6fd0165b-c1c7-404d-a237-ec14def69818"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6fd0165b-c1c7-404d-a237-ec14def69818"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6fd0165b-c1c7-404d-a237-ec14def69818"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6fd0165b-c1c7-404d-a237-ec14def69818"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6fd0165b-c1c7-404d-a237-ec14def69818"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-a826a1fd-709b-4e53-8576-3ed0018d54a0 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-ae820c52-d0a6-4eb8-b486-efc1f495a57e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ae820c52-d0a6-4eb8-b486-efc1f495a57e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ae820c52-d0a6-4eb8-b486-efc1f495a57e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ae820c52-d0a6-4eb8-b486-efc1f495a57e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ae820c52-d0a6-4eb8-b486-efc1f495a57e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ae820c52-d0a6-4eb8-b486-efc1f495a57e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ae820c52-d0a6-4eb8-b486-efc1f495a57e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-9c6c6d38-0975-4303-aafd-1ca81c85f837 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-e0960fc5-bf5e-4318-a496-38595a2af0e0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e0960fc5-bf5e-4318-a496-38595a2af0e0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e0960fc5-bf5e-4318-a496-38595a2af0e0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e0960fc5-bf5e-4318-a496-38595a2af0e0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-7024d5b3-7061-4610-aaf1-0fa5e20c964c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7024d5b3-7061-4610-aaf1-0fa5e20c964c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7024d5b3-7061-4610-aaf1-0fa5e20c964c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7024d5b3-7061-4610-aaf1-0fa5e20c964c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7024d5b3-7061-4610-aaf1-0fa5e20c964c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7024d5b3-7061-4610-aaf1-0fa5e20c964c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7024d5b3-7061-4610-aaf1-0fa5e20c964c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-262430db-7f36-4b9d-a29e-79201474b566 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-aaafe8cb-ba4c-40db-8513-95e81d624f0e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-aaafe8cb-ba4c-40db-8513-95e81d624f0e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-aaafe8cb-ba4c-40db-8513-95e81d624f0e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-aaafe8cb-ba4c-40db-8513-95e81d624f0e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-aaafe8cb-ba4c-40db-8513-95e81d624f0e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-aaafe8cb-ba4c-40db-8513-95e81d624f0e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-aaafe8cb-ba4c-40db-8513-95e81d624f0e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-272b7242-b69b-4dc1-8c40-e24d1ad62b7d {
  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-28481fc6-4891-45ef-bb81-9e9871d5e644"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-28481fc6-4891-45ef-bb81-9e9871d5e644"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-28481fc6-4891-45ef-bb81-9e9871d5e644"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-28481fc6-4891-45ef-bb81-9e9871d5e644"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-83337b57-16a7-47f4-89c3-5771aa59b0ce"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-83337b57-16a7-47f4-89c3-5771aa59b0ce"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-83337b57-16a7-47f4-89c3-5771aa59b0ce"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-83337b57-16a7-47f4-89c3-5771aa59b0ce"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-83337b57-16a7-47f4-89c3-5771aa59b0ce"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-83337b57-16a7-47f4-89c3-5771aa59b0ce"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-83337b57-16a7-47f4-89c3-5771aa59b0ce"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-cfb4dc00-6c54-4bb6-8824-f466a4256dca {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-a6b1d994-0551-47fc-a724-f11629346d9f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a6b1d994-0551-47fc-a724-f11629346d9f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a6b1d994-0551-47fc-a724-f11629346d9f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a6b1d994-0551-47fc-a724-f11629346d9f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a6b1d994-0551-47fc-a724-f11629346d9f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a6b1d994-0551-47fc-a724-f11629346d9f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a6b1d994-0551-47fc-a724-f11629346d9f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-b13e4edb-c165-4915-887e-fb1e8de0cdd8 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-e0fb9fb6-5a76-4990-8ca5-92c0d280753e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e0fb9fb6-5a76-4990-8ca5-92c0d280753e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e0fb9fb6-5a76-4990-8ca5-92c0d280753e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e0fb9fb6-5a76-4990-8ca5-92c0d280753e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-b62197a1-7e0d-45b6-ae01-398a65e5dd9d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b62197a1-7e0d-45b6-ae01-398a65e5dd9d"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-b62197a1-7e0d-45b6-ae01-398a65e5dd9d"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b62197a1-7e0d-45b6-ae01-398a65e5dd9d"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-b62197a1-7e0d-45b6-ae01-398a65e5dd9d"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b62197a1-7e0d-45b6-ae01-398a65e5dd9d"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-b62197a1-7e0d-45b6-ae01-398a65e5dd9d"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-f42306ba-5e4a-44e7-8521-2fbf36d96d96 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-70137b26-4934-4423-8c7d-43ae06d4c078"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-70137b26-4934-4423-8c7d-43ae06d4c078"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-70137b26-4934-4423-8c7d-43ae06d4c078"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-70137b26-4934-4423-8c7d-43ae06d4c078"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-70137b26-4934-4423-8c7d-43ae06d4c078"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-70137b26-4934-4423-8c7d-43ae06d4c078"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-70137b26-4934-4423-8c7d-43ae06d4c078"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-922d5e99-eb39-4d9e-a512-cfe784e73bd6 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-68046b2c-c1c8-4968-91a8-912c161531dd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-68046b2c-c1c8-4968-91a8-912c161531dd"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-68046b2c-c1c8-4968-91a8-912c161531dd"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-68046b2c-c1c8-4968-91a8-912c161531dd"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-bc4a21b3-eed7-46cd-a871-db95b062d6d1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bc4a21b3-eed7-46cd-a871-db95b062d6d1"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-bc4a21b3-eed7-46cd-a871-db95b062d6d1"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-bc4a21b3-eed7-46cd-a871-db95b062d6d1"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-bc4a21b3-eed7-46cd-a871-db95b062d6d1"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-bc4a21b3-eed7-46cd-a871-db95b062d6d1"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-bc4a21b3-eed7-46cd-a871-db95b062d6d1"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-f86da227-3b27-45e5-954f-710fffb14b85 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-6301ba5a-14f4-4808-af17-1355b1b66706"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6301ba5a-14f4-4808-af17-1355b1b66706"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6301ba5a-14f4-4808-af17-1355b1b66706"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6301ba5a-14f4-4808-af17-1355b1b66706"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6301ba5a-14f4-4808-af17-1355b1b66706"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6301ba5a-14f4-4808-af17-1355b1b66706"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6301ba5a-14f4-4808-af17-1355b1b66706"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-0bc1aa05-7fa1-4a98-9bba-7d7e26a37340 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-47072ac9-a9a8-46cd-bc4e-63b87a105ad3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-47072ac9-a9a8-46cd-bc4e-63b87a105ad3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-47072ac9-a9a8-46cd-bc4e-63b87a105ad3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-47072ac9-a9a8-46cd-bc4e-63b87a105ad3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-c51ac99b-b0b4-4716-91b7-0dc190bbb59b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c51ac99b-b0b4-4716-91b7-0dc190bbb59b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c51ac99b-b0b4-4716-91b7-0dc190bbb59b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c51ac99b-b0b4-4716-91b7-0dc190bbb59b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c51ac99b-b0b4-4716-91b7-0dc190bbb59b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c51ac99b-b0b4-4716-91b7-0dc190bbb59b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c51ac99b-b0b4-4716-91b7-0dc190bbb59b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-16017c78-ac9c-444a-a2a7-79e6f9636bdd {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-20d4ff27-3a4f-4532-af9f-8507c44bd84e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-20d4ff27-3a4f-4532-af9f-8507c44bd84e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-20d4ff27-3a4f-4532-af9f-8507c44bd84e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-20d4ff27-3a4f-4532-af9f-8507c44bd84e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-20d4ff27-3a4f-4532-af9f-8507c44bd84e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-20d4ff27-3a4f-4532-af9f-8507c44bd84e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-20d4ff27-3a4f-4532-af9f-8507c44bd84e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-a0778002-61d5-47a5-85a2-07b67e7fe8e5 {
  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-ec039d86-7ec5-479b-b3a1-3c7582afcba8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ec039d86-7ec5-479b-b3a1-3c7582afcba8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ec039d86-7ec5-479b-b3a1-3c7582afcba8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ec039d86-7ec5-479b-b3a1-3c7582afcba8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-ac99b765-0d42-4e0e-9e12-27505f3e8302"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ac99b765-0d42-4e0e-9e12-27505f3e8302"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ac99b765-0d42-4e0e-9e12-27505f3e8302"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ac99b765-0d42-4e0e-9e12-27505f3e8302"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ac99b765-0d42-4e0e-9e12-27505f3e8302"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ac99b765-0d42-4e0e-9e12-27505f3e8302"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ac99b765-0d42-4e0e-9e12-27505f3e8302"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-2f2e92fe-d4cc-4be8-8edd-4211cd3e0686 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-a1183d7f-03dc-44ba-a0d9-bf731bc22cd7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a1183d7f-03dc-44ba-a0d9-bf731bc22cd7"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a1183d7f-03dc-44ba-a0d9-bf731bc22cd7"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a1183d7f-03dc-44ba-a0d9-bf731bc22cd7"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a1183d7f-03dc-44ba-a0d9-bf731bc22cd7"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a1183d7f-03dc-44ba-a0d9-bf731bc22cd7"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a1183d7f-03dc-44ba-a0d9-bf731bc22cd7"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-c605425b-aa0f-4b60-964f-4b877a61635d {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-4b073b91-87a7-46d4-91fe-aff256ab4024"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4b073b91-87a7-46d4-91fe-aff256ab4024"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4b073b91-87a7-46d4-91fe-aff256ab4024"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4b073b91-87a7-46d4-91fe-aff256ab4024"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-f4b9be9c-e4c6-4ff7-a519-2953e1b8c133"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f4b9be9c-e4c6-4ff7-a519-2953e1b8c133"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f4b9be9c-e4c6-4ff7-a519-2953e1b8c133"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f4b9be9c-e4c6-4ff7-a519-2953e1b8c133"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f4b9be9c-e4c6-4ff7-a519-2953e1b8c133"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f4b9be9c-e4c6-4ff7-a519-2953e1b8c133"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f4b9be9c-e4c6-4ff7-a519-2953e1b8c133"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-049dd4f8-20a9-4e76-9813-180b02232f66 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-64e2eb59-8d1c-4107-b67b-207fd6607699"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-64e2eb59-8d1c-4107-b67b-207fd6607699"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-64e2eb59-8d1c-4107-b67b-207fd6607699"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-64e2eb59-8d1c-4107-b67b-207fd6607699"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-64e2eb59-8d1c-4107-b67b-207fd6607699"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-64e2eb59-8d1c-4107-b67b-207fd6607699"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-64e2eb59-8d1c-4107-b67b-207fd6607699"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-0949a174-7907-49b2-aedc-31812d03ccbe {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-10f25b55-8a0d-4677-a8f9-71f76630e1d6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-10f25b55-8a0d-4677-a8f9-71f76630e1d6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-10f25b55-8a0d-4677-a8f9-71f76630e1d6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-10f25b55-8a0d-4677-a8f9-71f76630e1d6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-00cae358-d13a-44fd-9e5b-2a20db895e3a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-00cae358-d13a-44fd-9e5b-2a20db895e3a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-00cae358-d13a-44fd-9e5b-2a20db895e3a"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-00cae358-d13a-44fd-9e5b-2a20db895e3a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-00cae358-d13a-44fd-9e5b-2a20db895e3a"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-00cae358-d13a-44fd-9e5b-2a20db895e3a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-00cae358-d13a-44fd-9e5b-2a20db895e3a"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-4bbec7d0-db46-4d7d-8124-c447915adc99 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-37c021b7-a939-4922-b12a-886e3b8996a0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-37c021b7-a939-4922-b12a-886e3b8996a0"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-37c021b7-a939-4922-b12a-886e3b8996a0"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-37c021b7-a939-4922-b12a-886e3b8996a0"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-37c021b7-a939-4922-b12a-886e3b8996a0"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-37c021b7-a939-4922-b12a-886e3b8996a0"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-37c021b7-a939-4922-b12a-886e3b8996a0"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-327b3fa7-f55f-4f75-9618-627ea0ceb7a0 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-b2e7ee7c-295b-43ee-93c5-de69bce37cc8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b2e7ee7c-295b-43ee-93c5-de69bce37cc8"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-b2e7ee7c-295b-43ee-93c5-de69bce37cc8"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b2e7ee7c-295b-43ee-93c5-de69bce37cc8"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-b2e7ee7c-295b-43ee-93c5-de69bce37cc8"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b2e7ee7c-295b-43ee-93c5-de69bce37cc8"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-b2e7ee7c-295b-43ee-93c5-de69bce37cc8"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

#s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 {
  max-width: 1920px;
aspect-ratio: 1920/1095;
text-align: center;
}

#s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 {
  margin: 0 !important;
  overflow: visible;
}

#s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 img.shogun-image {
  /* Add background color handling */
  
}

#s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image {
  box-sizing: border-box;
}



.s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image-container {
      position: relative;
    }

    .s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

@media (min-width: 1200px){#s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 {
  margin: 0 !important;
  overflow: visible;
}

#s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 img.shogun-image {
  /* Add background color handling */
  
}

#s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image {
  box-sizing: border-box;
}



.s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image-container {
      position: relative;
    }

    .s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 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-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 {
  margin: 0 !important;
  overflow: visible;
}

#s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 img.shogun-image {
  /* Add background color handling */
  
}

#s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image {
  box-sizing: border-box;
}



.s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image-container {
      position: relative;
    }

    .s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 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-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 {
  margin: 0 !important;
  overflow: visible;
}

#s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 img.shogun-image {
  /* Add background color handling */
  
}

#s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image {
  box-sizing: border-box;
}



.s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image-container {
      position: relative;
    }

    .s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (max-width: 767px){#s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 {
  margin: 0 !important;
  overflow: visible;
}

#s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 img.shogun-image {
  /* Add background color handling */
  
}

#s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image {
  box-sizing: border-box;
}



.s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image-container {
      position: relative;
    }

    .s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-980dfdfa-2e7a-4260-b6d3-11b9f3fbfaf9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}
#s-d0855e7c-5e43-4308-bbc7-fccb578943b1 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 1%;
padding-right: 1%;
}

#s-914a6025-cf67-41f7-88c8-48b163abd044 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 20px;
padding-left: 1%;
padding-bottom: 20px;
padding-right: 1%;
}

@media (min-width: 0px) {
[id="s-8898f40d-6f97-439b-8faf-d6aedbe32ad6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8898f40d-6f97-439b-8faf-d6aedbe32ad6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8898f40d-6f97-439b-8faf-d6aedbe32ad6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8898f40d-6f97-439b-8faf-d6aedbe32ad6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-a56f7ee1-47c8-4f95-bdd3-d88b06058d75"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a56f7ee1-47c8-4f95-bdd3-d88b06058d75"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a56f7ee1-47c8-4f95-bdd3-d88b06058d75"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a56f7ee1-47c8-4f95-bdd3-d88b06058d75"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a56f7ee1-47c8-4f95-bdd3-d88b06058d75"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a56f7ee1-47c8-4f95-bdd3-d88b06058d75"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a56f7ee1-47c8-4f95-bdd3-d88b06058d75"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-a41d0f55-d701-4d94-b590-9c5c98d4191e {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-ed8fdfd8-aa2e-4a23-9ed6-49a00c9c6917"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ed8fdfd8-aa2e-4a23-9ed6-49a00c9c6917"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ed8fdfd8-aa2e-4a23-9ed6-49a00c9c6917"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ed8fdfd8-aa2e-4a23-9ed6-49a00c9c6917"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ed8fdfd8-aa2e-4a23-9ed6-49a00c9c6917"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ed8fdfd8-aa2e-4a23-9ed6-49a00c9c6917"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ed8fdfd8-aa2e-4a23-9ed6-49a00c9c6917"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-9594cc6b-7ffa-4ea1-aab6-43717db84e54 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-fda4aa50-5a85-434a-aee9-fe177cd27337"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fda4aa50-5a85-434a-aee9-fe177cd27337"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-fda4aa50-5a85-434a-aee9-fe177cd27337"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-fda4aa50-5a85-434a-aee9-fe177cd27337"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-87ba2c41-2faf-40f2-9fbc-f51a1e560e98"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-87ba2c41-2faf-40f2-9fbc-f51a1e560e98"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-87ba2c41-2faf-40f2-9fbc-f51a1e560e98"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-87ba2c41-2faf-40f2-9fbc-f51a1e560e98"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-87ba2c41-2faf-40f2-9fbc-f51a1e560e98"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-87ba2c41-2faf-40f2-9fbc-f51a1e560e98"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-87ba2c41-2faf-40f2-9fbc-f51a1e560e98"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-b753e24b-1338-4ee4-beb2-9796b327ea67 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-f576f07f-cd4c-4003-9eaa-13c8eb52a072"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f576f07f-cd4c-4003-9eaa-13c8eb52a072"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f576f07f-cd4c-4003-9eaa-13c8eb52a072"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f576f07f-cd4c-4003-9eaa-13c8eb52a072"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f576f07f-cd4c-4003-9eaa-13c8eb52a072"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f576f07f-cd4c-4003-9eaa-13c8eb52a072"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f576f07f-cd4c-4003-9eaa-13c8eb52a072"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-7ce8c38d-ac02-4e4c-96c4-30679e0cb9a3 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-cdc13e74-6335-4943-b834-cacbd1ce4f24"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cdc13e74-6335-4943-b834-cacbd1ce4f24"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-cdc13e74-6335-4943-b834-cacbd1ce4f24"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-cdc13e74-6335-4943-b834-cacbd1ce4f24"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-fe4348cc-6264-46d8-adea-6666c46d118d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fe4348cc-6264-46d8-adea-6666c46d118d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-fe4348cc-6264-46d8-adea-6666c46d118d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-fe4348cc-6264-46d8-adea-6666c46d118d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-fe4348cc-6264-46d8-adea-6666c46d118d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-fe4348cc-6264-46d8-adea-6666c46d118d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-fe4348cc-6264-46d8-adea-6666c46d118d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-3c8207fe-9860-4403-a377-91be7d45f83b {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-a2655b95-a4f7-4968-ba7a-9456c653186e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a2655b95-a4f7-4968-ba7a-9456c653186e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a2655b95-a4f7-4968-ba7a-9456c653186e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a2655b95-a4f7-4968-ba7a-9456c653186e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a2655b95-a4f7-4968-ba7a-9456c653186e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a2655b95-a4f7-4968-ba7a-9456c653186e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a2655b95-a4f7-4968-ba7a-9456c653186e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-c29c8b68-b14d-4942-a076-efb388cc1de3 {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-6ccbd91c-169e-4fae-8aea-738e3533d8fd {
  margin-top: -10px;
margin-bottom: -10px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-6ccbd91c-169e-4fae-8aea-738e3533d8fd hr {
  border-top: 1px solid #ddd;
}

@media (min-width: 0px) {
[id="s-be6ffecf-7e91-4d08-ade3-ce1885eb7e23"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-be6ffecf-7e91-4d08-ade3-ce1885eb7e23"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-be6ffecf-7e91-4d08-ade3-ce1885eb7e23"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-be6ffecf-7e91-4d08-ade3-ce1885eb7e23"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-3cf95ca0-a747-425c-bbf8-537b65b87bc9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3cf95ca0-a747-425c-bbf8-537b65b87bc9"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3cf95ca0-a747-425c-bbf8-537b65b87bc9"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3cf95ca0-a747-425c-bbf8-537b65b87bc9"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3cf95ca0-a747-425c-bbf8-537b65b87bc9"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3cf95ca0-a747-425c-bbf8-537b65b87bc9"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3cf95ca0-a747-425c-bbf8-537b65b87bc9"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-846d729b-aad5-4e23-a6d2-fe7520ba3331 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-16da0e5c-540a-4089-a004-c4cf9f273f1e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-16da0e5c-540a-4089-a004-c4cf9f273f1e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-16da0e5c-540a-4089-a004-c4cf9f273f1e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-16da0e5c-540a-4089-a004-c4cf9f273f1e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-16da0e5c-540a-4089-a004-c4cf9f273f1e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-16da0e5c-540a-4089-a004-c4cf9f273f1e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-16da0e5c-540a-4089-a004-c4cf9f273f1e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-480350e1-ef43-49de-a90c-9d6fcd517a92 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-acce70e8-f246-4c53-ba34-82217c32fb75"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-acce70e8-f246-4c53-ba34-82217c32fb75"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-acce70e8-f246-4c53-ba34-82217c32fb75"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-acce70e8-f246-4c53-ba34-82217c32fb75"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-2c3df01e-190f-4039-8c91-b7c148458af0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2c3df01e-190f-4039-8c91-b7c148458af0"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2c3df01e-190f-4039-8c91-b7c148458af0"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2c3df01e-190f-4039-8c91-b7c148458af0"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2c3df01e-190f-4039-8c91-b7c148458af0"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2c3df01e-190f-4039-8c91-b7c148458af0"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2c3df01e-190f-4039-8c91-b7c148458af0"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-7896f4d9-0f15-47cb-a366-a0379b64db04 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-8c616b37-7cc2-453e-89b3-10ee5100f625"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8c616b37-7cc2-453e-89b3-10ee5100f625"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8c616b37-7cc2-453e-89b3-10ee5100f625"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8c616b37-7cc2-453e-89b3-10ee5100f625"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8c616b37-7cc2-453e-89b3-10ee5100f625"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8c616b37-7cc2-453e-89b3-10ee5100f625"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8c616b37-7cc2-453e-89b3-10ee5100f625"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-2b8fb733-f096-4d61-a3a9-aff4beb0b27c {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-33c0f247-d43e-48e5-aab2-64d4d05a7b6a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-33c0f247-d43e-48e5-aab2-64d4d05a7b6a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-33c0f247-d43e-48e5-aab2-64d4d05a7b6a"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-33c0f247-d43e-48e5-aab2-64d4d05a7b6a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-33c0f247-d43e-48e5-aab2-64d4d05a7b6a"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-33c0f247-d43e-48e5-aab2-64d4d05a7b6a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-33c0f247-d43e-48e5-aab2-64d4d05a7b6a"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

#s-b9982684-7681-4dbf-a5c3-cce5dd7e5d62 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 0%;
padding-right: 0%;
}

#s-586bc9c1-66fe-4070-a639-9a39fa73dc9a {
  margin-left: 4%;
margin-right: 4%;
padding-top: 20px;
padding-left: 1%;
padding-bottom: 20px;
padding-right: 1%;
}

#s-ccda00b8-c5a5-43eb-98da-401ffd287fac {
  max-width: 1920px;
aspect-ratio: 1920/1095;
text-align: center;
}

#s-ccda00b8-c5a5-43eb-98da-401ffd287fac {
  margin: 0 !important;
  overflow: visible;
}

#s-ccda00b8-c5a5-43eb-98da-401ffd287fac-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ccda00b8-c5a5-43eb-98da-401ffd287fac {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ccda00b8-c5a5-43eb-98da-401ffd287fac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ccda00b8-c5a5-43eb-98da-401ffd287fac img.shogun-image {
  /* Add background color handling */
  
}

#s-ccda00b8-c5a5-43eb-98da-401ffd287fac img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ccda00b8-c5a5-43eb-98da-401ffd287fac .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-ccda00b8-c5a5-43eb-98da-401ffd287fac .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ccda00b8-c5a5-43eb-98da-401ffd287fac .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ccda00b8-c5a5-43eb-98da-401ffd287fac img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-ccda00b8-c5a5-43eb-98da-401ffd287fac .shogun-image-content {
  
    justify-content: center;
  
}

.s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image {
  box-sizing: border-box;
}



.s-ccda00b8-c5a5-43eb-98da-401ffd287fac img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ccda00b8-c5a5-43eb-98da-401ffd287fac {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image-container {
      position: relative;
    }

    .s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ccda00b8-c5a5-43eb-98da-401ffd287fac img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

@media (min-width: 1200px){#s-ccda00b8-c5a5-43eb-98da-401ffd287fac {
  margin: 0 !important;
  overflow: visible;
}

#s-ccda00b8-c5a5-43eb-98da-401ffd287fac-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ccda00b8-c5a5-43eb-98da-401ffd287fac {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ccda00b8-c5a5-43eb-98da-401ffd287fac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ccda00b8-c5a5-43eb-98da-401ffd287fac img.shogun-image {
  /* Add background color handling */
  
}

#s-ccda00b8-c5a5-43eb-98da-401ffd287fac img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ccda00b8-c5a5-43eb-98da-401ffd287fac .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-ccda00b8-c5a5-43eb-98da-401ffd287fac .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ccda00b8-c5a5-43eb-98da-401ffd287fac .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ccda00b8-c5a5-43eb-98da-401ffd287fac img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-ccda00b8-c5a5-43eb-98da-401ffd287fac .shogun-image-content {
  
    justify-content: center;
  
}

.s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image {
  box-sizing: border-box;
}



.s-ccda00b8-c5a5-43eb-98da-401ffd287fac img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ccda00b8-c5a5-43eb-98da-401ffd287fac {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image-container {
      position: relative;
    }

    .s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ccda00b8-c5a5-43eb-98da-401ffd287fac 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-ccda00b8-c5a5-43eb-98da-401ffd287fac {
  margin: 0 !important;
  overflow: visible;
}

#s-ccda00b8-c5a5-43eb-98da-401ffd287fac-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ccda00b8-c5a5-43eb-98da-401ffd287fac {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ccda00b8-c5a5-43eb-98da-401ffd287fac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ccda00b8-c5a5-43eb-98da-401ffd287fac img.shogun-image {
  /* Add background color handling */
  
}

#s-ccda00b8-c5a5-43eb-98da-401ffd287fac img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ccda00b8-c5a5-43eb-98da-401ffd287fac .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-ccda00b8-c5a5-43eb-98da-401ffd287fac .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ccda00b8-c5a5-43eb-98da-401ffd287fac .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ccda00b8-c5a5-43eb-98da-401ffd287fac img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-ccda00b8-c5a5-43eb-98da-401ffd287fac .shogun-image-content {
  
    justify-content: center;
  
}

.s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image {
  box-sizing: border-box;
}



.s-ccda00b8-c5a5-43eb-98da-401ffd287fac img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ccda00b8-c5a5-43eb-98da-401ffd287fac {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image-container {
      position: relative;
    }

    .s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ccda00b8-c5a5-43eb-98da-401ffd287fac 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-ccda00b8-c5a5-43eb-98da-401ffd287fac {
  margin: 0 !important;
  overflow: visible;
}

#s-ccda00b8-c5a5-43eb-98da-401ffd287fac-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ccda00b8-c5a5-43eb-98da-401ffd287fac {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ccda00b8-c5a5-43eb-98da-401ffd287fac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ccda00b8-c5a5-43eb-98da-401ffd287fac img.shogun-image {
  /* Add background color handling */
  
}

#s-ccda00b8-c5a5-43eb-98da-401ffd287fac img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ccda00b8-c5a5-43eb-98da-401ffd287fac .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-ccda00b8-c5a5-43eb-98da-401ffd287fac .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ccda00b8-c5a5-43eb-98da-401ffd287fac .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ccda00b8-c5a5-43eb-98da-401ffd287fac img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-ccda00b8-c5a5-43eb-98da-401ffd287fac .shogun-image-content {
  
    justify-content: center;
  
}

.s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image {
  box-sizing: border-box;
}



.s-ccda00b8-c5a5-43eb-98da-401ffd287fac img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ccda00b8-c5a5-43eb-98da-401ffd287fac {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image-container {
      position: relative;
    }

    .s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ccda00b8-c5a5-43eb-98da-401ffd287fac img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (max-width: 767px){#s-ccda00b8-c5a5-43eb-98da-401ffd287fac {
  margin: 0 !important;
  overflow: visible;
}

#s-ccda00b8-c5a5-43eb-98da-401ffd287fac-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ccda00b8-c5a5-43eb-98da-401ffd287fac {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ccda00b8-c5a5-43eb-98da-401ffd287fac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ccda00b8-c5a5-43eb-98da-401ffd287fac img.shogun-image {
  /* Add background color handling */
  
}

#s-ccda00b8-c5a5-43eb-98da-401ffd287fac img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ccda00b8-c5a5-43eb-98da-401ffd287fac .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-ccda00b8-c5a5-43eb-98da-401ffd287fac .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ccda00b8-c5a5-43eb-98da-401ffd287fac .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ccda00b8-c5a5-43eb-98da-401ffd287fac img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-ccda00b8-c5a5-43eb-98da-401ffd287fac .shogun-image-content {
  
    justify-content: center;
  
}

.s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image {
  box-sizing: border-box;
}



.s-ccda00b8-c5a5-43eb-98da-401ffd287fac img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ccda00b8-c5a5-43eb-98da-401ffd287fac {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image-container {
      position: relative;
    }

    .s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ccda00b8-c5a5-43eb-98da-401ffd287fac.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ccda00b8-c5a5-43eb-98da-401ffd287fac img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}
@media (min-width: 0px) {
[id="s-710b7db9-791d-458b-8374-d0a427a01546"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-710b7db9-791d-458b-8374-d0a427a01546"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-710b7db9-791d-458b-8374-d0a427a01546"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-710b7db9-791d-458b-8374-d0a427a01546"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-1d15879f-ec1f-4c0f-ac03-9880961af311"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1d15879f-ec1f-4c0f-ac03-9880961af311"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1d15879f-ec1f-4c0f-ac03-9880961af311"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1d15879f-ec1f-4c0f-ac03-9880961af311"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1d15879f-ec1f-4c0f-ac03-9880961af311"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1d15879f-ec1f-4c0f-ac03-9880961af311"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1d15879f-ec1f-4c0f-ac03-9880961af311"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-a69e1c8a-c106-4919-ab1d-ac123884a8d5 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-72e29fc5-e9ec-47e1-a3f9-153f9c96fd2b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-72e29fc5-e9ec-47e1-a3f9-153f9c96fd2b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-72e29fc5-e9ec-47e1-a3f9-153f9c96fd2b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-72e29fc5-e9ec-47e1-a3f9-153f9c96fd2b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-72e29fc5-e9ec-47e1-a3f9-153f9c96fd2b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-72e29fc5-e9ec-47e1-a3f9-153f9c96fd2b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-72e29fc5-e9ec-47e1-a3f9-153f9c96fd2b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-379f273f-60d8-409e-b96f-fc01bcb62c53 {
  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-493f14ef-4ccb-4d74-9e85-14c628a9a223 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
}

#s-493f14ef-4ccb-4d74-9e85-14c628a9a223 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-493f14ef-4ccb-4d74-9e85-14c628a9a223 .shg-sld-nav-button.shg-sld-left,
#s-493f14ef-4ccb-4d74-9e85-14c628a9a223 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-62045180-e534-47c0-bafb-4f46a6b656e1 {
  margin-left: auto;
margin-right: auto;
max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-62045180-e534-47c0-bafb-4f46a6b656e1 {
  margin: 0 !important;
  overflow: visible;
}

#s-62045180-e534-47c0-bafb-4f46a6b656e1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-62045180-e534-47c0-bafb-4f46a6b656e1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-62045180-e534-47c0-bafb-4f46a6b656e1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-62045180-e534-47c0-bafb-4f46a6b656e1 img.shogun-image {
  /* Add background color handling */
  
}

#s-62045180-e534-47c0-bafb-4f46a6b656e1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-62045180-e534-47c0-bafb-4f46a6b656e1 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-62045180-e534-47c0-bafb-4f46a6b656e1 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-62045180-e534-47c0-bafb-4f46a6b656e1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-62045180-e534-47c0-bafb-4f46a6b656e1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-62045180-e534-47c0-bafb-4f46a6b656e1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-62045180-e534-47c0-bafb-4f46a6b656e1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image {
  box-sizing: border-box;
}



.s-62045180-e534-47c0-bafb-4f46a6b656e1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-62045180-e534-47c0-bafb-4f46a6b656e1 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image-container {
      position: relative;
    }

    .s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-62045180-e534-47c0-bafb-4f46a6b656e1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-62045180-e534-47c0-bafb-4f46a6b656e1 {
  margin: 0 !important;
  overflow: visible;
}

#s-62045180-e534-47c0-bafb-4f46a6b656e1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-62045180-e534-47c0-bafb-4f46a6b656e1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-62045180-e534-47c0-bafb-4f46a6b656e1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-62045180-e534-47c0-bafb-4f46a6b656e1 img.shogun-image {
  /* Add background color handling */
  
}

#s-62045180-e534-47c0-bafb-4f46a6b656e1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-62045180-e534-47c0-bafb-4f46a6b656e1 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-62045180-e534-47c0-bafb-4f46a6b656e1 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-62045180-e534-47c0-bafb-4f46a6b656e1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-62045180-e534-47c0-bafb-4f46a6b656e1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-62045180-e534-47c0-bafb-4f46a6b656e1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-62045180-e534-47c0-bafb-4f46a6b656e1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image {
  box-sizing: border-box;
}



.s-62045180-e534-47c0-bafb-4f46a6b656e1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-62045180-e534-47c0-bafb-4f46a6b656e1 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image-container {
      position: relative;
    }

    .s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-62045180-e534-47c0-bafb-4f46a6b656e1 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-62045180-e534-47c0-bafb-4f46a6b656e1 {
  margin: 0 !important;
  overflow: visible;
}

#s-62045180-e534-47c0-bafb-4f46a6b656e1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-62045180-e534-47c0-bafb-4f46a6b656e1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-62045180-e534-47c0-bafb-4f46a6b656e1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-62045180-e534-47c0-bafb-4f46a6b656e1 img.shogun-image {
  /* Add background color handling */
  
}

#s-62045180-e534-47c0-bafb-4f46a6b656e1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-62045180-e534-47c0-bafb-4f46a6b656e1 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-62045180-e534-47c0-bafb-4f46a6b656e1 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-62045180-e534-47c0-bafb-4f46a6b656e1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-62045180-e534-47c0-bafb-4f46a6b656e1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-62045180-e534-47c0-bafb-4f46a6b656e1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-62045180-e534-47c0-bafb-4f46a6b656e1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image {
  box-sizing: border-box;
}



.s-62045180-e534-47c0-bafb-4f46a6b656e1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-62045180-e534-47c0-bafb-4f46a6b656e1 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image-container {
      position: relative;
    }

    .s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-62045180-e534-47c0-bafb-4f46a6b656e1 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-62045180-e534-47c0-bafb-4f46a6b656e1 {
  margin: 0 !important;
  overflow: visible;
}

#s-62045180-e534-47c0-bafb-4f46a6b656e1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-62045180-e534-47c0-bafb-4f46a6b656e1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-62045180-e534-47c0-bafb-4f46a6b656e1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-62045180-e534-47c0-bafb-4f46a6b656e1 img.shogun-image {
  /* Add background color handling */
  
}

#s-62045180-e534-47c0-bafb-4f46a6b656e1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-62045180-e534-47c0-bafb-4f46a6b656e1 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-62045180-e534-47c0-bafb-4f46a6b656e1 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-62045180-e534-47c0-bafb-4f46a6b656e1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-62045180-e534-47c0-bafb-4f46a6b656e1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-62045180-e534-47c0-bafb-4f46a6b656e1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-62045180-e534-47c0-bafb-4f46a6b656e1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image {
  box-sizing: border-box;
}



.s-62045180-e534-47c0-bafb-4f46a6b656e1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-62045180-e534-47c0-bafb-4f46a6b656e1 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image-container {
      position: relative;
    }

    .s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-62045180-e534-47c0-bafb-4f46a6b656e1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-62045180-e534-47c0-bafb-4f46a6b656e1 {
  margin: 0 !important;
  overflow: visible;
}

#s-62045180-e534-47c0-bafb-4f46a6b656e1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-62045180-e534-47c0-bafb-4f46a6b656e1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-62045180-e534-47c0-bafb-4f46a6b656e1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-62045180-e534-47c0-bafb-4f46a6b656e1 img.shogun-image {
  /* Add background color handling */
  
}

#s-62045180-e534-47c0-bafb-4f46a6b656e1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-62045180-e534-47c0-bafb-4f46a6b656e1 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-62045180-e534-47c0-bafb-4f46a6b656e1 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-62045180-e534-47c0-bafb-4f46a6b656e1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-62045180-e534-47c0-bafb-4f46a6b656e1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-62045180-e534-47c0-bafb-4f46a6b656e1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-62045180-e534-47c0-bafb-4f46a6b656e1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image {
  box-sizing: border-box;
}



.s-62045180-e534-47c0-bafb-4f46a6b656e1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-62045180-e534-47c0-bafb-4f46a6b656e1 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image-container {
      position: relative;
    }

    .s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-62045180-e534-47c0-bafb-4f46a6b656e1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-62045180-e534-47c0-bafb-4f46a6b656e1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-599c88ba-7f19-4264-a652-dca3242fe5e5 {
  margin-left: auto;
margin-right: auto;
max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-599c88ba-7f19-4264-a652-dca3242fe5e5 {
  margin: 0 !important;
  overflow: visible;
}

#s-599c88ba-7f19-4264-a652-dca3242fe5e5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-599c88ba-7f19-4264-a652-dca3242fe5e5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-599c88ba-7f19-4264-a652-dca3242fe5e5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-599c88ba-7f19-4264-a652-dca3242fe5e5 img.shogun-image {
  /* Add background color handling */
  
}

#s-599c88ba-7f19-4264-a652-dca3242fe5e5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-599c88ba-7f19-4264-a652-dca3242fe5e5 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-599c88ba-7f19-4264-a652-dca3242fe5e5 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-599c88ba-7f19-4264-a652-dca3242fe5e5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-599c88ba-7f19-4264-a652-dca3242fe5e5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-599c88ba-7f19-4264-a652-dca3242fe5e5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-599c88ba-7f19-4264-a652-dca3242fe5e5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image {
  box-sizing: border-box;
}



.s-599c88ba-7f19-4264-a652-dca3242fe5e5 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-599c88ba-7f19-4264-a652-dca3242fe5e5 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image-container {
      position: relative;
    }

    .s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-599c88ba-7f19-4264-a652-dca3242fe5e5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-599c88ba-7f19-4264-a652-dca3242fe5e5 {
  margin: 0 !important;
  overflow: visible;
}

#s-599c88ba-7f19-4264-a652-dca3242fe5e5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-599c88ba-7f19-4264-a652-dca3242fe5e5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-599c88ba-7f19-4264-a652-dca3242fe5e5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-599c88ba-7f19-4264-a652-dca3242fe5e5 img.shogun-image {
  /* Add background color handling */
  
}

#s-599c88ba-7f19-4264-a652-dca3242fe5e5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-599c88ba-7f19-4264-a652-dca3242fe5e5 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-599c88ba-7f19-4264-a652-dca3242fe5e5 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-599c88ba-7f19-4264-a652-dca3242fe5e5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-599c88ba-7f19-4264-a652-dca3242fe5e5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-599c88ba-7f19-4264-a652-dca3242fe5e5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-599c88ba-7f19-4264-a652-dca3242fe5e5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image {
  box-sizing: border-box;
}



.s-599c88ba-7f19-4264-a652-dca3242fe5e5 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-599c88ba-7f19-4264-a652-dca3242fe5e5 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image-container {
      position: relative;
    }

    .s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-599c88ba-7f19-4264-a652-dca3242fe5e5 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-599c88ba-7f19-4264-a652-dca3242fe5e5 {
  margin: 0 !important;
  overflow: visible;
}

#s-599c88ba-7f19-4264-a652-dca3242fe5e5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-599c88ba-7f19-4264-a652-dca3242fe5e5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-599c88ba-7f19-4264-a652-dca3242fe5e5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-599c88ba-7f19-4264-a652-dca3242fe5e5 img.shogun-image {
  /* Add background color handling */
  
}

#s-599c88ba-7f19-4264-a652-dca3242fe5e5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-599c88ba-7f19-4264-a652-dca3242fe5e5 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-599c88ba-7f19-4264-a652-dca3242fe5e5 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-599c88ba-7f19-4264-a652-dca3242fe5e5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-599c88ba-7f19-4264-a652-dca3242fe5e5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-599c88ba-7f19-4264-a652-dca3242fe5e5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-599c88ba-7f19-4264-a652-dca3242fe5e5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image {
  box-sizing: border-box;
}



.s-599c88ba-7f19-4264-a652-dca3242fe5e5 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-599c88ba-7f19-4264-a652-dca3242fe5e5 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image-container {
      position: relative;
    }

    .s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-599c88ba-7f19-4264-a652-dca3242fe5e5 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-599c88ba-7f19-4264-a652-dca3242fe5e5 {
  margin: 0 !important;
  overflow: visible;
}

#s-599c88ba-7f19-4264-a652-dca3242fe5e5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-599c88ba-7f19-4264-a652-dca3242fe5e5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-599c88ba-7f19-4264-a652-dca3242fe5e5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-599c88ba-7f19-4264-a652-dca3242fe5e5 img.shogun-image {
  /* Add background color handling */
  
}

#s-599c88ba-7f19-4264-a652-dca3242fe5e5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-599c88ba-7f19-4264-a652-dca3242fe5e5 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-599c88ba-7f19-4264-a652-dca3242fe5e5 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-599c88ba-7f19-4264-a652-dca3242fe5e5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-599c88ba-7f19-4264-a652-dca3242fe5e5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-599c88ba-7f19-4264-a652-dca3242fe5e5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-599c88ba-7f19-4264-a652-dca3242fe5e5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image {
  box-sizing: border-box;
}



.s-599c88ba-7f19-4264-a652-dca3242fe5e5 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-599c88ba-7f19-4264-a652-dca3242fe5e5 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image-container {
      position: relative;
    }

    .s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-599c88ba-7f19-4264-a652-dca3242fe5e5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-599c88ba-7f19-4264-a652-dca3242fe5e5 {
  margin: 0 !important;
  overflow: visible;
}

#s-599c88ba-7f19-4264-a652-dca3242fe5e5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-599c88ba-7f19-4264-a652-dca3242fe5e5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-599c88ba-7f19-4264-a652-dca3242fe5e5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-599c88ba-7f19-4264-a652-dca3242fe5e5 img.shogun-image {
  /* Add background color handling */
  
}

#s-599c88ba-7f19-4264-a652-dca3242fe5e5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-599c88ba-7f19-4264-a652-dca3242fe5e5 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-599c88ba-7f19-4264-a652-dca3242fe5e5 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-599c88ba-7f19-4264-a652-dca3242fe5e5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-599c88ba-7f19-4264-a652-dca3242fe5e5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-599c88ba-7f19-4264-a652-dca3242fe5e5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-599c88ba-7f19-4264-a652-dca3242fe5e5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image {
  box-sizing: border-box;
}



.s-599c88ba-7f19-4264-a652-dca3242fe5e5 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-599c88ba-7f19-4264-a652-dca3242fe5e5 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image-container {
      position: relative;
    }

    .s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-599c88ba-7f19-4264-a652-dca3242fe5e5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-599c88ba-7f19-4264-a652-dca3242fe5e5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 {
  margin-left: auto;
margin-right: auto;
max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 {
  margin: 0 !important;
  overflow: visible;
}

#s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 img.shogun-image {
  /* Add background color handling */
  
}

#s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image {
  box-sizing: border-box;
}



.s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image-container {
      position: relative;
    }

    .s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 {
  margin: 0 !important;
  overflow: visible;
}

#s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 img.shogun-image {
  /* Add background color handling */
  
}

#s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image {
  box-sizing: border-box;
}



.s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image-container {
      position: relative;
    }

    .s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 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-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 {
  margin: 0 !important;
  overflow: visible;
}

#s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 img.shogun-image {
  /* Add background color handling */
  
}

#s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image {
  box-sizing: border-box;
}



.s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image-container {
      position: relative;
    }

    .s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 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-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 {
  margin: 0 !important;
  overflow: visible;
}

#s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 img.shogun-image {
  /* Add background color handling */
  
}

#s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image {
  box-sizing: border-box;
}



.s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image-container {
      position: relative;
    }

    .s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 {
  margin: 0 !important;
  overflow: visible;
}

#s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 img.shogun-image {
  /* Add background color handling */
  
}

#s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image {
  box-sizing: border-box;
}



.s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image-container {
      position: relative;
    }

    .s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70b055a5-61b9-4b91-93d4-f17dfbf8cde1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-b5c478be-fea5-41a9-ae89-099392be85b4 {
  margin-left: auto;
margin-right: auto;
max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-b5c478be-fea5-41a9-ae89-099392be85b4 {
  margin: 0 !important;
  overflow: visible;
}

#s-b5c478be-fea5-41a9-ae89-099392be85b4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b5c478be-fea5-41a9-ae89-099392be85b4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b5c478be-fea5-41a9-ae89-099392be85b4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b5c478be-fea5-41a9-ae89-099392be85b4 img.shogun-image {
  /* Add background color handling */
  
}

#s-b5c478be-fea5-41a9-ae89-099392be85b4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b5c478be-fea5-41a9-ae89-099392be85b4 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-b5c478be-fea5-41a9-ae89-099392be85b4 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b5c478be-fea5-41a9-ae89-099392be85b4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b5c478be-fea5-41a9-ae89-099392be85b4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-b5c478be-fea5-41a9-ae89-099392be85b4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b5c478be-fea5-41a9-ae89-099392be85b4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image {
  box-sizing: border-box;
}



.s-b5c478be-fea5-41a9-ae89-099392be85b4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b5c478be-fea5-41a9-ae89-099392be85b4 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image-container {
      position: relative;
    }

    .s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b5c478be-fea5-41a9-ae89-099392be85b4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-b5c478be-fea5-41a9-ae89-099392be85b4 {
  margin: 0 !important;
  overflow: visible;
}

#s-b5c478be-fea5-41a9-ae89-099392be85b4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b5c478be-fea5-41a9-ae89-099392be85b4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b5c478be-fea5-41a9-ae89-099392be85b4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b5c478be-fea5-41a9-ae89-099392be85b4 img.shogun-image {
  /* Add background color handling */
  
}

#s-b5c478be-fea5-41a9-ae89-099392be85b4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b5c478be-fea5-41a9-ae89-099392be85b4 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-b5c478be-fea5-41a9-ae89-099392be85b4 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b5c478be-fea5-41a9-ae89-099392be85b4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b5c478be-fea5-41a9-ae89-099392be85b4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-b5c478be-fea5-41a9-ae89-099392be85b4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b5c478be-fea5-41a9-ae89-099392be85b4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image {
  box-sizing: border-box;
}



.s-b5c478be-fea5-41a9-ae89-099392be85b4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b5c478be-fea5-41a9-ae89-099392be85b4 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image-container {
      position: relative;
    }

    .s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b5c478be-fea5-41a9-ae89-099392be85b4 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-b5c478be-fea5-41a9-ae89-099392be85b4 {
  margin: 0 !important;
  overflow: visible;
}

#s-b5c478be-fea5-41a9-ae89-099392be85b4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b5c478be-fea5-41a9-ae89-099392be85b4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b5c478be-fea5-41a9-ae89-099392be85b4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b5c478be-fea5-41a9-ae89-099392be85b4 img.shogun-image {
  /* Add background color handling */
  
}

#s-b5c478be-fea5-41a9-ae89-099392be85b4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b5c478be-fea5-41a9-ae89-099392be85b4 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-b5c478be-fea5-41a9-ae89-099392be85b4 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b5c478be-fea5-41a9-ae89-099392be85b4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b5c478be-fea5-41a9-ae89-099392be85b4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-b5c478be-fea5-41a9-ae89-099392be85b4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b5c478be-fea5-41a9-ae89-099392be85b4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image {
  box-sizing: border-box;
}



.s-b5c478be-fea5-41a9-ae89-099392be85b4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b5c478be-fea5-41a9-ae89-099392be85b4 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image-container {
      position: relative;
    }

    .s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b5c478be-fea5-41a9-ae89-099392be85b4 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-b5c478be-fea5-41a9-ae89-099392be85b4 {
  margin: 0 !important;
  overflow: visible;
}

#s-b5c478be-fea5-41a9-ae89-099392be85b4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b5c478be-fea5-41a9-ae89-099392be85b4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b5c478be-fea5-41a9-ae89-099392be85b4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b5c478be-fea5-41a9-ae89-099392be85b4 img.shogun-image {
  /* Add background color handling */
  
}

#s-b5c478be-fea5-41a9-ae89-099392be85b4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b5c478be-fea5-41a9-ae89-099392be85b4 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-b5c478be-fea5-41a9-ae89-099392be85b4 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b5c478be-fea5-41a9-ae89-099392be85b4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b5c478be-fea5-41a9-ae89-099392be85b4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-b5c478be-fea5-41a9-ae89-099392be85b4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b5c478be-fea5-41a9-ae89-099392be85b4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image {
  box-sizing: border-box;
}



.s-b5c478be-fea5-41a9-ae89-099392be85b4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b5c478be-fea5-41a9-ae89-099392be85b4 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image-container {
      position: relative;
    }

    .s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b5c478be-fea5-41a9-ae89-099392be85b4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-b5c478be-fea5-41a9-ae89-099392be85b4 {
  margin: 0 !important;
  overflow: visible;
}

#s-b5c478be-fea5-41a9-ae89-099392be85b4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b5c478be-fea5-41a9-ae89-099392be85b4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b5c478be-fea5-41a9-ae89-099392be85b4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b5c478be-fea5-41a9-ae89-099392be85b4 img.shogun-image {
  /* Add background color handling */
  
}

#s-b5c478be-fea5-41a9-ae89-099392be85b4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b5c478be-fea5-41a9-ae89-099392be85b4 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-b5c478be-fea5-41a9-ae89-099392be85b4 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b5c478be-fea5-41a9-ae89-099392be85b4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b5c478be-fea5-41a9-ae89-099392be85b4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-b5c478be-fea5-41a9-ae89-099392be85b4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b5c478be-fea5-41a9-ae89-099392be85b4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image {
  box-sizing: border-box;
}



.s-b5c478be-fea5-41a9-ae89-099392be85b4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b5c478be-fea5-41a9-ae89-099392be85b4 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image-container {
      position: relative;
    }

    .s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b5c478be-fea5-41a9-ae89-099392be85b4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b5c478be-fea5-41a9-ae89-099392be85b4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-6509c2d0-1262-46d2-b778-f785f0c86bb9 {
  margin-left: auto;
margin-right: auto;
max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-6509c2d0-1262-46d2-b778-f785f0c86bb9 {
  margin: 0 !important;
  overflow: visible;
}

#s-6509c2d0-1262-46d2-b778-f785f0c86bb9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6509c2d0-1262-46d2-b778-f785f0c86bb9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6509c2d0-1262-46d2-b778-f785f0c86bb9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6509c2d0-1262-46d2-b778-f785f0c86bb9 img.shogun-image {
  /* Add background color handling */
  
}

#s-6509c2d0-1262-46d2-b778-f785f0c86bb9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6509c2d0-1262-46d2-b778-f785f0c86bb9 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-6509c2d0-1262-46d2-b778-f785f0c86bb9 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6509c2d0-1262-46d2-b778-f785f0c86bb9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6509c2d0-1262-46d2-b778-f785f0c86bb9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-6509c2d0-1262-46d2-b778-f785f0c86bb9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image {
  box-sizing: border-box;
}



.s-6509c2d0-1262-46d2-b778-f785f0c86bb9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6509c2d0-1262-46d2-b778-f785f0c86bb9 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image-container {
      position: relative;
    }

    .s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6509c2d0-1262-46d2-b778-f785f0c86bb9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-6509c2d0-1262-46d2-b778-f785f0c86bb9 {
  margin: 0 !important;
  overflow: visible;
}

#s-6509c2d0-1262-46d2-b778-f785f0c86bb9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6509c2d0-1262-46d2-b778-f785f0c86bb9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6509c2d0-1262-46d2-b778-f785f0c86bb9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6509c2d0-1262-46d2-b778-f785f0c86bb9 img.shogun-image {
  /* Add background color handling */
  
}

#s-6509c2d0-1262-46d2-b778-f785f0c86bb9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6509c2d0-1262-46d2-b778-f785f0c86bb9 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-6509c2d0-1262-46d2-b778-f785f0c86bb9 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6509c2d0-1262-46d2-b778-f785f0c86bb9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6509c2d0-1262-46d2-b778-f785f0c86bb9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-6509c2d0-1262-46d2-b778-f785f0c86bb9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image {
  box-sizing: border-box;
}



.s-6509c2d0-1262-46d2-b778-f785f0c86bb9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6509c2d0-1262-46d2-b778-f785f0c86bb9 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image-container {
      position: relative;
    }

    .s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6509c2d0-1262-46d2-b778-f785f0c86bb9 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-6509c2d0-1262-46d2-b778-f785f0c86bb9 {
  margin: 0 !important;
  overflow: visible;
}

#s-6509c2d0-1262-46d2-b778-f785f0c86bb9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6509c2d0-1262-46d2-b778-f785f0c86bb9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6509c2d0-1262-46d2-b778-f785f0c86bb9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6509c2d0-1262-46d2-b778-f785f0c86bb9 img.shogun-image {
  /* Add background color handling */
  
}

#s-6509c2d0-1262-46d2-b778-f785f0c86bb9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6509c2d0-1262-46d2-b778-f785f0c86bb9 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-6509c2d0-1262-46d2-b778-f785f0c86bb9 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6509c2d0-1262-46d2-b778-f785f0c86bb9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6509c2d0-1262-46d2-b778-f785f0c86bb9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-6509c2d0-1262-46d2-b778-f785f0c86bb9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image {
  box-sizing: border-box;
}



.s-6509c2d0-1262-46d2-b778-f785f0c86bb9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6509c2d0-1262-46d2-b778-f785f0c86bb9 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image-container {
      position: relative;
    }

    .s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6509c2d0-1262-46d2-b778-f785f0c86bb9 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-6509c2d0-1262-46d2-b778-f785f0c86bb9 {
  margin: 0 !important;
  overflow: visible;
}

#s-6509c2d0-1262-46d2-b778-f785f0c86bb9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6509c2d0-1262-46d2-b778-f785f0c86bb9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6509c2d0-1262-46d2-b778-f785f0c86bb9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6509c2d0-1262-46d2-b778-f785f0c86bb9 img.shogun-image {
  /* Add background color handling */
  
}

#s-6509c2d0-1262-46d2-b778-f785f0c86bb9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6509c2d0-1262-46d2-b778-f785f0c86bb9 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-6509c2d0-1262-46d2-b778-f785f0c86bb9 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6509c2d0-1262-46d2-b778-f785f0c86bb9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6509c2d0-1262-46d2-b778-f785f0c86bb9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-6509c2d0-1262-46d2-b778-f785f0c86bb9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image {
  box-sizing: border-box;
}



.s-6509c2d0-1262-46d2-b778-f785f0c86bb9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6509c2d0-1262-46d2-b778-f785f0c86bb9 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image-container {
      position: relative;
    }

    .s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6509c2d0-1262-46d2-b778-f785f0c86bb9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-6509c2d0-1262-46d2-b778-f785f0c86bb9 {
  margin: 0 !important;
  overflow: visible;
}

#s-6509c2d0-1262-46d2-b778-f785f0c86bb9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6509c2d0-1262-46d2-b778-f785f0c86bb9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6509c2d0-1262-46d2-b778-f785f0c86bb9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6509c2d0-1262-46d2-b778-f785f0c86bb9 img.shogun-image {
  /* Add background color handling */
  
}

#s-6509c2d0-1262-46d2-b778-f785f0c86bb9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6509c2d0-1262-46d2-b778-f785f0c86bb9 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-6509c2d0-1262-46d2-b778-f785f0c86bb9 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6509c2d0-1262-46d2-b778-f785f0c86bb9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6509c2d0-1262-46d2-b778-f785f0c86bb9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-6509c2d0-1262-46d2-b778-f785f0c86bb9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image {
  box-sizing: border-box;
}



.s-6509c2d0-1262-46d2-b778-f785f0c86bb9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6509c2d0-1262-46d2-b778-f785f0c86bb9 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image-container {
      position: relative;
    }

    .s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6509c2d0-1262-46d2-b778-f785f0c86bb9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6509c2d0-1262-46d2-b778-f785f0c86bb9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-14d1bb9c-d55d-46ba-ab04-124112932ed6 {
  margin-left: auto;
margin-right: auto;
max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-14d1bb9c-d55d-46ba-ab04-124112932ed6 {
  margin: 0 !important;
  overflow: visible;
}

#s-14d1bb9c-d55d-46ba-ab04-124112932ed6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-14d1bb9c-d55d-46ba-ab04-124112932ed6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-14d1bb9c-d55d-46ba-ab04-124112932ed6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-14d1bb9c-d55d-46ba-ab04-124112932ed6 img.shogun-image {
  /* Add background color handling */
  
}

#s-14d1bb9c-d55d-46ba-ab04-124112932ed6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-14d1bb9c-d55d-46ba-ab04-124112932ed6 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-14d1bb9c-d55d-46ba-ab04-124112932ed6 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-14d1bb9c-d55d-46ba-ab04-124112932ed6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-14d1bb9c-d55d-46ba-ab04-124112932ed6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-14d1bb9c-d55d-46ba-ab04-124112932ed6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image {
  box-sizing: border-box;
}



.s-14d1bb9c-d55d-46ba-ab04-124112932ed6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-14d1bb9c-d55d-46ba-ab04-124112932ed6 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image-container {
      position: relative;
    }

    .s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-14d1bb9c-d55d-46ba-ab04-124112932ed6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-14d1bb9c-d55d-46ba-ab04-124112932ed6 {
  margin: 0 !important;
  overflow: visible;
}

#s-14d1bb9c-d55d-46ba-ab04-124112932ed6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-14d1bb9c-d55d-46ba-ab04-124112932ed6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-14d1bb9c-d55d-46ba-ab04-124112932ed6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-14d1bb9c-d55d-46ba-ab04-124112932ed6 img.shogun-image {
  /* Add background color handling */
  
}

#s-14d1bb9c-d55d-46ba-ab04-124112932ed6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-14d1bb9c-d55d-46ba-ab04-124112932ed6 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-14d1bb9c-d55d-46ba-ab04-124112932ed6 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-14d1bb9c-d55d-46ba-ab04-124112932ed6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-14d1bb9c-d55d-46ba-ab04-124112932ed6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-14d1bb9c-d55d-46ba-ab04-124112932ed6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image {
  box-sizing: border-box;
}



.s-14d1bb9c-d55d-46ba-ab04-124112932ed6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-14d1bb9c-d55d-46ba-ab04-124112932ed6 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image-container {
      position: relative;
    }

    .s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-14d1bb9c-d55d-46ba-ab04-124112932ed6 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-14d1bb9c-d55d-46ba-ab04-124112932ed6 {
  margin: 0 !important;
  overflow: visible;
}

#s-14d1bb9c-d55d-46ba-ab04-124112932ed6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-14d1bb9c-d55d-46ba-ab04-124112932ed6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-14d1bb9c-d55d-46ba-ab04-124112932ed6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-14d1bb9c-d55d-46ba-ab04-124112932ed6 img.shogun-image {
  /* Add background color handling */
  
}

#s-14d1bb9c-d55d-46ba-ab04-124112932ed6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-14d1bb9c-d55d-46ba-ab04-124112932ed6 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-14d1bb9c-d55d-46ba-ab04-124112932ed6 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-14d1bb9c-d55d-46ba-ab04-124112932ed6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-14d1bb9c-d55d-46ba-ab04-124112932ed6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-14d1bb9c-d55d-46ba-ab04-124112932ed6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image {
  box-sizing: border-box;
}



.s-14d1bb9c-d55d-46ba-ab04-124112932ed6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-14d1bb9c-d55d-46ba-ab04-124112932ed6 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image-container {
      position: relative;
    }

    .s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-14d1bb9c-d55d-46ba-ab04-124112932ed6 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-14d1bb9c-d55d-46ba-ab04-124112932ed6 {
  margin: 0 !important;
  overflow: visible;
}

#s-14d1bb9c-d55d-46ba-ab04-124112932ed6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-14d1bb9c-d55d-46ba-ab04-124112932ed6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-14d1bb9c-d55d-46ba-ab04-124112932ed6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-14d1bb9c-d55d-46ba-ab04-124112932ed6 img.shogun-image {
  /* Add background color handling */
  
}

#s-14d1bb9c-d55d-46ba-ab04-124112932ed6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-14d1bb9c-d55d-46ba-ab04-124112932ed6 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-14d1bb9c-d55d-46ba-ab04-124112932ed6 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-14d1bb9c-d55d-46ba-ab04-124112932ed6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-14d1bb9c-d55d-46ba-ab04-124112932ed6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-14d1bb9c-d55d-46ba-ab04-124112932ed6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image {
  box-sizing: border-box;
}



.s-14d1bb9c-d55d-46ba-ab04-124112932ed6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-14d1bb9c-d55d-46ba-ab04-124112932ed6 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image-container {
      position: relative;
    }

    .s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-14d1bb9c-d55d-46ba-ab04-124112932ed6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-14d1bb9c-d55d-46ba-ab04-124112932ed6 {
  margin: 0 !important;
  overflow: visible;
}

#s-14d1bb9c-d55d-46ba-ab04-124112932ed6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-14d1bb9c-d55d-46ba-ab04-124112932ed6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-14d1bb9c-d55d-46ba-ab04-124112932ed6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-14d1bb9c-d55d-46ba-ab04-124112932ed6 img.shogun-image {
  /* Add background color handling */
  
}

#s-14d1bb9c-d55d-46ba-ab04-124112932ed6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-14d1bb9c-d55d-46ba-ab04-124112932ed6 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-14d1bb9c-d55d-46ba-ab04-124112932ed6 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-14d1bb9c-d55d-46ba-ab04-124112932ed6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-14d1bb9c-d55d-46ba-ab04-124112932ed6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-14d1bb9c-d55d-46ba-ab04-124112932ed6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image {
  box-sizing: border-box;
}



.s-14d1bb9c-d55d-46ba-ab04-124112932ed6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-14d1bb9c-d55d-46ba-ab04-124112932ed6 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image-container {
      position: relative;
    }

    .s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-14d1bb9c-d55d-46ba-ab04-124112932ed6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-14d1bb9c-d55d-46ba-ab04-124112932ed6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-a79816ab-333d-4415-9c9c-7ab72e05afb8 {
  margin-left: auto;
margin-right: auto;
max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-a79816ab-333d-4415-9c9c-7ab72e05afb8 {
  margin: 0 !important;
  overflow: visible;
}

#s-a79816ab-333d-4415-9c9c-7ab72e05afb8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a79816ab-333d-4415-9c9c-7ab72e05afb8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a79816ab-333d-4415-9c9c-7ab72e05afb8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a79816ab-333d-4415-9c9c-7ab72e05afb8 img.shogun-image {
  /* Add background color handling */
  
}

#s-a79816ab-333d-4415-9c9c-7ab72e05afb8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a79816ab-333d-4415-9c9c-7ab72e05afb8 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-a79816ab-333d-4415-9c9c-7ab72e05afb8 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a79816ab-333d-4415-9c9c-7ab72e05afb8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a79816ab-333d-4415-9c9c-7ab72e05afb8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-a79816ab-333d-4415-9c9c-7ab72e05afb8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image {
  box-sizing: border-box;
}



.s-a79816ab-333d-4415-9c9c-7ab72e05afb8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a79816ab-333d-4415-9c9c-7ab72e05afb8 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image-container {
      position: relative;
    }

    .s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a79816ab-333d-4415-9c9c-7ab72e05afb8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-a79816ab-333d-4415-9c9c-7ab72e05afb8 {
  margin: 0 !important;
  overflow: visible;
}

#s-a79816ab-333d-4415-9c9c-7ab72e05afb8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a79816ab-333d-4415-9c9c-7ab72e05afb8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a79816ab-333d-4415-9c9c-7ab72e05afb8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a79816ab-333d-4415-9c9c-7ab72e05afb8 img.shogun-image {
  /* Add background color handling */
  
}

#s-a79816ab-333d-4415-9c9c-7ab72e05afb8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a79816ab-333d-4415-9c9c-7ab72e05afb8 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-a79816ab-333d-4415-9c9c-7ab72e05afb8 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a79816ab-333d-4415-9c9c-7ab72e05afb8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a79816ab-333d-4415-9c9c-7ab72e05afb8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-a79816ab-333d-4415-9c9c-7ab72e05afb8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image {
  box-sizing: border-box;
}



.s-a79816ab-333d-4415-9c9c-7ab72e05afb8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a79816ab-333d-4415-9c9c-7ab72e05afb8 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image-container {
      position: relative;
    }

    .s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a79816ab-333d-4415-9c9c-7ab72e05afb8 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-a79816ab-333d-4415-9c9c-7ab72e05afb8 {
  margin: 0 !important;
  overflow: visible;
}

#s-a79816ab-333d-4415-9c9c-7ab72e05afb8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a79816ab-333d-4415-9c9c-7ab72e05afb8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a79816ab-333d-4415-9c9c-7ab72e05afb8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a79816ab-333d-4415-9c9c-7ab72e05afb8 img.shogun-image {
  /* Add background color handling */
  
}

#s-a79816ab-333d-4415-9c9c-7ab72e05afb8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a79816ab-333d-4415-9c9c-7ab72e05afb8 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-a79816ab-333d-4415-9c9c-7ab72e05afb8 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a79816ab-333d-4415-9c9c-7ab72e05afb8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a79816ab-333d-4415-9c9c-7ab72e05afb8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-a79816ab-333d-4415-9c9c-7ab72e05afb8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image {
  box-sizing: border-box;
}



.s-a79816ab-333d-4415-9c9c-7ab72e05afb8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a79816ab-333d-4415-9c9c-7ab72e05afb8 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image-container {
      position: relative;
    }

    .s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a79816ab-333d-4415-9c9c-7ab72e05afb8 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-a79816ab-333d-4415-9c9c-7ab72e05afb8 {
  margin: 0 !important;
  overflow: visible;
}

#s-a79816ab-333d-4415-9c9c-7ab72e05afb8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a79816ab-333d-4415-9c9c-7ab72e05afb8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a79816ab-333d-4415-9c9c-7ab72e05afb8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a79816ab-333d-4415-9c9c-7ab72e05afb8 img.shogun-image {
  /* Add background color handling */
  
}

#s-a79816ab-333d-4415-9c9c-7ab72e05afb8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a79816ab-333d-4415-9c9c-7ab72e05afb8 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-a79816ab-333d-4415-9c9c-7ab72e05afb8 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a79816ab-333d-4415-9c9c-7ab72e05afb8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a79816ab-333d-4415-9c9c-7ab72e05afb8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-a79816ab-333d-4415-9c9c-7ab72e05afb8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image {
  box-sizing: border-box;
}



.s-a79816ab-333d-4415-9c9c-7ab72e05afb8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a79816ab-333d-4415-9c9c-7ab72e05afb8 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image-container {
      position: relative;
    }

    .s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a79816ab-333d-4415-9c9c-7ab72e05afb8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-a79816ab-333d-4415-9c9c-7ab72e05afb8 {
  margin: 0 !important;
  overflow: visible;
}

#s-a79816ab-333d-4415-9c9c-7ab72e05afb8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a79816ab-333d-4415-9c9c-7ab72e05afb8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a79816ab-333d-4415-9c9c-7ab72e05afb8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a79816ab-333d-4415-9c9c-7ab72e05afb8 img.shogun-image {
  /* Add background color handling */
  
}

#s-a79816ab-333d-4415-9c9c-7ab72e05afb8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a79816ab-333d-4415-9c9c-7ab72e05afb8 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-a79816ab-333d-4415-9c9c-7ab72e05afb8 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a79816ab-333d-4415-9c9c-7ab72e05afb8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a79816ab-333d-4415-9c9c-7ab72e05afb8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-a79816ab-333d-4415-9c9c-7ab72e05afb8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image {
  box-sizing: border-box;
}



.s-a79816ab-333d-4415-9c9c-7ab72e05afb8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a79816ab-333d-4415-9c9c-7ab72e05afb8 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image-container {
      position: relative;
    }

    .s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a79816ab-333d-4415-9c9c-7ab72e05afb8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a79816ab-333d-4415-9c9c-7ab72e05afb8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 {
  margin-left: auto;
margin-right: auto;
max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 {
  margin: 0 !important;
  overflow: visible;
}

#s-c40855f8-39b7-4af5-b7b0-a79a88a5f246-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 img.shogun-image {
  /* Add background color handling */
  
}

#s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image {
  box-sizing: border-box;
}



.s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image-container {
      position: relative;
    }

    .s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 {
  margin: 0 !important;
  overflow: visible;
}

#s-c40855f8-39b7-4af5-b7b0-a79a88a5f246-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 img.shogun-image {
  /* Add background color handling */
  
}

#s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image {
  box-sizing: border-box;
}



.s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image-container {
      position: relative;
    }

    .s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 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-c40855f8-39b7-4af5-b7b0-a79a88a5f246 {
  margin: 0 !important;
  overflow: visible;
}

#s-c40855f8-39b7-4af5-b7b0-a79a88a5f246-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 img.shogun-image {
  /* Add background color handling */
  
}

#s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image {
  box-sizing: border-box;
}



.s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image-container {
      position: relative;
    }

    .s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 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-c40855f8-39b7-4af5-b7b0-a79a88a5f246 {
  margin: 0 !important;
  overflow: visible;
}

#s-c40855f8-39b7-4af5-b7b0-a79a88a5f246-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 img.shogun-image {
  /* Add background color handling */
  
}

#s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image {
  box-sizing: border-box;
}



.s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image-container {
      position: relative;
    }

    .s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 {
  margin: 0 !important;
  overflow: visible;
}

#s-c40855f8-39b7-4af5-b7b0-a79a88a5f246-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 img.shogun-image {
  /* Add background color handling */
  
}

#s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image {
  box-sizing: border-box;
}



.s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image-container {
      position: relative;
    }

    .s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c40855f8-39b7-4af5-b7b0-a79a88a5f246.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c40855f8-39b7-4af5-b7b0-a79a88a5f246 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
@media (min-width: 0px) {
[id="s-c2e15f17-c3cf-4625-836b-2e6d283a17ee"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c2e15f17-c3cf-4625-836b-2e6d283a17ee"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c2e15f17-c3cf-4625-836b-2e6d283a17ee"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c2e15f17-c3cf-4625-836b-2e6d283a17ee"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-7f76f9ca-f268-4cb8-8e48-fc672b4295ec"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7f76f9ca-f268-4cb8-8e48-fc672b4295ec"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7f76f9ca-f268-4cb8-8e48-fc672b4295ec"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7f76f9ca-f268-4cb8-8e48-fc672b4295ec"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7f76f9ca-f268-4cb8-8e48-fc672b4295ec"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7f76f9ca-f268-4cb8-8e48-fc672b4295ec"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7f76f9ca-f268-4cb8-8e48-fc672b4295ec"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-c43ab875-96bd-4e40-b22d-ce39a0ef5dd3 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-d2fc5c18-6d98-4c01-86e3-61d2b301ac6d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d2fc5c18-6d98-4c01-86e3-61d2b301ac6d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d2fc5c18-6d98-4c01-86e3-61d2b301ac6d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d2fc5c18-6d98-4c01-86e3-61d2b301ac6d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d2fc5c18-6d98-4c01-86e3-61d2b301ac6d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d2fc5c18-6d98-4c01-86e3-61d2b301ac6d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d2fc5c18-6d98-4c01-86e3-61d2b301ac6d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-297222a4-2de9-4c5a-a4f5-0befeb6a8d5a {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-f0163fd9-eacb-44e4-a744-639183c121b9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f0163fd9-eacb-44e4-a744-639183c121b9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f0163fd9-eacb-44e4-a744-639183c121b9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f0163fd9-eacb-44e4-a744-639183c121b9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-5cf96576-828e-4050-a20e-03caf57ea380"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5cf96576-828e-4050-a20e-03caf57ea380"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5cf96576-828e-4050-a20e-03caf57ea380"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5cf96576-828e-4050-a20e-03caf57ea380"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5cf96576-828e-4050-a20e-03caf57ea380"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5cf96576-828e-4050-a20e-03caf57ea380"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5cf96576-828e-4050-a20e-03caf57ea380"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-3f8fd761-ae83-437a-bfca-2a19568a028c {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-c28b6d1c-a798-4d2f-a275-e726c88ab9b2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c28b6d1c-a798-4d2f-a275-e726c88ab9b2"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c28b6d1c-a798-4d2f-a275-e726c88ab9b2"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c28b6d1c-a798-4d2f-a275-e726c88ab9b2"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c28b6d1c-a798-4d2f-a275-e726c88ab9b2"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c28b6d1c-a798-4d2f-a275-e726c88ab9b2"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c28b6d1c-a798-4d2f-a275-e726c88ab9b2"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-d39f4625-aaad-4447-85cb-1e330bf0f4c6 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-d6d4003b-5e2e-42d7-a771-ad8d724ac9e8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d6d4003b-5e2e-42d7-a771-ad8d724ac9e8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d6d4003b-5e2e-42d7-a771-ad8d724ac9e8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d6d4003b-5e2e-42d7-a771-ad8d724ac9e8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-66553bba-ec88-4b9f-9df1-bc9fa0e7c860"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-66553bba-ec88-4b9f-9df1-bc9fa0e7c860"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-66553bba-ec88-4b9f-9df1-bc9fa0e7c860"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-66553bba-ec88-4b9f-9df1-bc9fa0e7c860"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-66553bba-ec88-4b9f-9df1-bc9fa0e7c860"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-66553bba-ec88-4b9f-9df1-bc9fa0e7c860"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-66553bba-ec88-4b9f-9df1-bc9fa0e7c860"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-f2f60975-8947-4179-872a-fa6e56e95c76 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-7444d1af-d6d1-4711-994d-4b4efb652528"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7444d1af-d6d1-4711-994d-4b4efb652528"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7444d1af-d6d1-4711-994d-4b4efb652528"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7444d1af-d6d1-4711-994d-4b4efb652528"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7444d1af-d6d1-4711-994d-4b4efb652528"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7444d1af-d6d1-4711-994d-4b4efb652528"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7444d1af-d6d1-4711-994d-4b4efb652528"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-e40603be-01f3-4025-83c0-d08c327997cc {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-4648e52f-f916-4969-b57d-5d8c09531659 {
  margin-top: -8px;
margin-bottom: -8px;
min-height: 50px;
}








#s-4648e52f-f916-4969-b57d-5d8c09531659 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4648e52f-f916-4969-b57d-5d8c09531659.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bdd6b14a-f2e6-42e4-b90c-1abf4d525701 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-bdd6b14a-f2e6-42e4-b90c-1abf4d525701 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-f5dd7993-4e63-4f0d-9139-ad6b4f29ccbc {
  margin-top: -8px;
margin-bottom: -8px;
min-height: 50px;
}








#s-f5dd7993-4e63-4f0d-9139-ad6b4f29ccbc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f5dd7993-4e63-4f0d-9139-ad6b4f29ccbc.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-b269915a-6127-4652-b609-446e270be535"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b269915a-6127-4652-b609-446e270be535"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b269915a-6127-4652-b609-446e270be535"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b269915a-6127-4652-b609-446e270be535"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-659a9b78-e5c1-4e9f-b880-beaed03be801 {
  max-width: 610px;
aspect-ratio: 610/207;
text-align: center;
}
@media (min-width: 1200px){#s-659a9b78-e5c1-4e9f-b880-beaed03be801 {
  max-width: 200px;
}
}
#s-659a9b78-e5c1-4e9f-b880-beaed03be801 {
  margin: 0 !important;
  overflow: visible;
}

#s-659a9b78-e5c1-4e9f-b880-beaed03be801-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-659a9b78-e5c1-4e9f-b880-beaed03be801 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-659a9b78-e5c1-4e9f-b880-beaed03be801 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-659a9b78-e5c1-4e9f-b880-beaed03be801 img.shogun-image {
  /* Add background color handling */
  
}

#s-659a9b78-e5c1-4e9f-b880-beaed03be801 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-659a9b78-e5c1-4e9f-b880-beaed03be801 .shg-image-content-wrapper {
      aspect-ratio: 610/207;
      min-width: 100%;
      height: auto;
    }

    #s-659a9b78-e5c1-4e9f-b880-beaed03be801 .shogun-image-link {
      aspect-ratio: 610/207;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-659a9b78-e5c1-4e9f-b880-beaed03be801 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-659a9b78-e5c1-4e9f-b880-beaed03be801 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 610px;
  }



  img.s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image {
    
    
    
    max-height: 610px;
  }


.s-659a9b78-e5c1-4e9f-b880-beaed03be801 .shogun-image-content {
  
    justify-content: center;
  
}

.s-659a9b78-e5c1-4e9f-b880-beaed03be801.shg-align-container {
  display: flex;
  justify-content: center
}

.s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image {
  box-sizing: border-box;
}



.s-659a9b78-e5c1-4e9f-b880-beaed03be801 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-659a9b78-e5c1-4e9f-b880-beaed03be801 {
      --shg-aspect-ratio: calc(610/207); 
    }

    .s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image-container {
      position: relative;
    }

    .s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-659a9b78-e5c1-4e9f-b880-beaed03be801 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 610px;
    }
  }

@media (min-width: 1200px){#s-659a9b78-e5c1-4e9f-b880-beaed03be801 {
  margin: 0 !important;
  overflow: visible;
}

#s-659a9b78-e5c1-4e9f-b880-beaed03be801-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-659a9b78-e5c1-4e9f-b880-beaed03be801 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-659a9b78-e5c1-4e9f-b880-beaed03be801 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-659a9b78-e5c1-4e9f-b880-beaed03be801 img.shogun-image {
  /* Add background color handling */
  
}

#s-659a9b78-e5c1-4e9f-b880-beaed03be801 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-659a9b78-e5c1-4e9f-b880-beaed03be801 .shg-image-content-wrapper {
      aspect-ratio: 610/207;
      min-width: 100%;
      height: auto;
    }

    #s-659a9b78-e5c1-4e9f-b880-beaed03be801 .shogun-image-link {
      aspect-ratio: 610/207;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-659a9b78-e5c1-4e9f-b880-beaed03be801 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-659a9b78-e5c1-4e9f-b880-beaed03be801 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 610px;
  }



  img.s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image {
    
    
    
    max-height: 610px;
  }


.s-659a9b78-e5c1-4e9f-b880-beaed03be801 .shogun-image-content {
  
    justify-content: center;
  
}

.s-659a9b78-e5c1-4e9f-b880-beaed03be801.shg-align-container {
  display: flex;
  justify-content: center
}

.s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image {
  box-sizing: border-box;
}



.s-659a9b78-e5c1-4e9f-b880-beaed03be801 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-659a9b78-e5c1-4e9f-b880-beaed03be801 {
      --shg-aspect-ratio: calc(610/207); 
    }

    .s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image-container {
      position: relative;
    }

    .s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-659a9b78-e5c1-4e9f-b880-beaed03be801 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-659a9b78-e5c1-4e9f-b880-beaed03be801 {
  margin: 0 !important;
  overflow: visible;
}

#s-659a9b78-e5c1-4e9f-b880-beaed03be801-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-659a9b78-e5c1-4e9f-b880-beaed03be801 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-659a9b78-e5c1-4e9f-b880-beaed03be801 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-659a9b78-e5c1-4e9f-b880-beaed03be801 img.shogun-image {
  /* Add background color handling */
  
}

#s-659a9b78-e5c1-4e9f-b880-beaed03be801 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-659a9b78-e5c1-4e9f-b880-beaed03be801 .shg-image-content-wrapper {
      aspect-ratio: 610/207;
      min-width: 100%;
      height: auto;
    }

    #s-659a9b78-e5c1-4e9f-b880-beaed03be801 .shogun-image-link {
      aspect-ratio: 610/207;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-659a9b78-e5c1-4e9f-b880-beaed03be801 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-659a9b78-e5c1-4e9f-b880-beaed03be801 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 610px;
  }



  img.s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image {
    
    
    
    max-height: 610px;
  }


.s-659a9b78-e5c1-4e9f-b880-beaed03be801 .shogun-image-content {
  
    justify-content: center;
  
}

.s-659a9b78-e5c1-4e9f-b880-beaed03be801.shg-align-container {
  display: flex;
  justify-content: center
}

.s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image {
  box-sizing: border-box;
}



.s-659a9b78-e5c1-4e9f-b880-beaed03be801 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-659a9b78-e5c1-4e9f-b880-beaed03be801 {
      --shg-aspect-ratio: calc(610/207); 
    }

    .s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image-container {
      position: relative;
    }

    .s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-659a9b78-e5c1-4e9f-b880-beaed03be801 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-659a9b78-e5c1-4e9f-b880-beaed03be801 {
  margin: 0 !important;
  overflow: visible;
}

#s-659a9b78-e5c1-4e9f-b880-beaed03be801-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-659a9b78-e5c1-4e9f-b880-beaed03be801 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-659a9b78-e5c1-4e9f-b880-beaed03be801 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-659a9b78-e5c1-4e9f-b880-beaed03be801 img.shogun-image {
  /* Add background color handling */
  
}

#s-659a9b78-e5c1-4e9f-b880-beaed03be801 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-659a9b78-e5c1-4e9f-b880-beaed03be801 .shg-image-content-wrapper {
      aspect-ratio: 610/207;
      min-width: 100%;
      height: auto;
    }

    #s-659a9b78-e5c1-4e9f-b880-beaed03be801 .shogun-image-link {
      aspect-ratio: 610/207;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-659a9b78-e5c1-4e9f-b880-beaed03be801 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-659a9b78-e5c1-4e9f-b880-beaed03be801 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 610px;
  }



  img.s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image {
    
    
    
    max-height: 610px;
  }


.s-659a9b78-e5c1-4e9f-b880-beaed03be801 .shogun-image-content {
  
    justify-content: center;
  
}

.s-659a9b78-e5c1-4e9f-b880-beaed03be801.shg-align-container {
  display: flex;
  justify-content: center
}

.s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image {
  box-sizing: border-box;
}



.s-659a9b78-e5c1-4e9f-b880-beaed03be801 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-659a9b78-e5c1-4e9f-b880-beaed03be801 {
      --shg-aspect-ratio: calc(610/207); 
    }

    .s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image-container {
      position: relative;
    }

    .s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-659a9b78-e5c1-4e9f-b880-beaed03be801 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 610px;
    }
  }

}@media (max-width: 767px){#s-659a9b78-e5c1-4e9f-b880-beaed03be801 {
  margin: 0 !important;
  overflow: visible;
}

#s-659a9b78-e5c1-4e9f-b880-beaed03be801-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-659a9b78-e5c1-4e9f-b880-beaed03be801 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-659a9b78-e5c1-4e9f-b880-beaed03be801 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-659a9b78-e5c1-4e9f-b880-beaed03be801 img.shogun-image {
  /* Add background color handling */
  
}

#s-659a9b78-e5c1-4e9f-b880-beaed03be801 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-659a9b78-e5c1-4e9f-b880-beaed03be801 .shg-image-content-wrapper {
      aspect-ratio: 610/207;
      min-width: 100%;
      height: auto;
    }

    #s-659a9b78-e5c1-4e9f-b880-beaed03be801 .shogun-image-link {
      aspect-ratio: 610/207;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-659a9b78-e5c1-4e9f-b880-beaed03be801 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-659a9b78-e5c1-4e9f-b880-beaed03be801 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 610px;
  }



  img.s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image {
    
    
    
    max-height: 610px;
  }


.s-659a9b78-e5c1-4e9f-b880-beaed03be801 .shogun-image-content {
  
    justify-content: center;
  
}

.s-659a9b78-e5c1-4e9f-b880-beaed03be801.shg-align-container {
  display: flex;
  justify-content: center
}

.s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image {
  box-sizing: border-box;
}



.s-659a9b78-e5c1-4e9f-b880-beaed03be801 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-659a9b78-e5c1-4e9f-b880-beaed03be801 {
      --shg-aspect-ratio: calc(610/207); 
    }

    .s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image-container {
      position: relative;
    }

    .s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-659a9b78-e5c1-4e9f-b880-beaed03be801.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-659a9b78-e5c1-4e9f-b880-beaed03be801 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 610px;
    }
  }

}
@media (min-width: 1200px){#s-d9e5c3c8-2e9d-4967-b2c8-97829a472282 {
  margin-top: 10px;
margin-left: 5%;
margin-bottom: 10px;
margin-right: 5%;
min-height: 0px;
}
}
#s-f37f18d0-d918-47a9-ae1b-27f6ce76992c {
  margin-top: -8px;
margin-bottom: -8px;
min-height: 50px;
}








#s-f37f18d0-d918-47a9-ae1b-27f6ce76992c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f37f18d0-d918-47a9-ae1b-27f6ce76992c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c9140add-da2f-46b9-9ee8-aa60b2d5a6f0 {
  margin-top: -8px;
margin-bottom: -8px;
min-height: 50px;
}








#s-c9140add-da2f-46b9-9ee8-aa60b2d5a6f0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c9140add-da2f-46b9-9ee8-aa60b2d5a6f0.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-3823fb7e-d415-462e-b08e-34868ae7c429"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3823fb7e-d415-462e-b08e-34868ae7c429"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-3823fb7e-d415-462e-b08e-34868ae7c429"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-3823fb7e-d415-462e-b08e-34868ae7c429"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-30f64584-af19-4750-b69e-b0577545e6c7 {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-30f64584-af19-4750-b69e-b0577545e6c7 {
  margin: 0 !important;
  overflow: visible;
}

#s-30f64584-af19-4750-b69e-b0577545e6c7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-30f64584-af19-4750-b69e-b0577545e6c7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-30f64584-af19-4750-b69e-b0577545e6c7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-30f64584-af19-4750-b69e-b0577545e6c7 img.shogun-image {
  /* Add background color handling */
  
}

#s-30f64584-af19-4750-b69e-b0577545e6c7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-30f64584-af19-4750-b69e-b0577545e6c7 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-30f64584-af19-4750-b69e-b0577545e6c7 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-30f64584-af19-4750-b69e-b0577545e6c7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-30f64584-af19-4750-b69e-b0577545e6c7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-30f64584-af19-4750-b69e-b0577545e6c7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-30f64584-af19-4750-b69e-b0577545e6c7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image {
  box-sizing: border-box;
}



.s-30f64584-af19-4750-b69e-b0577545e6c7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-30f64584-af19-4750-b69e-b0577545e6c7 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image-container {
      position: relative;
    }

    .s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-30f64584-af19-4750-b69e-b0577545e6c7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-30f64584-af19-4750-b69e-b0577545e6c7 {
  margin: 0 !important;
  overflow: visible;
}

#s-30f64584-af19-4750-b69e-b0577545e6c7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-30f64584-af19-4750-b69e-b0577545e6c7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-30f64584-af19-4750-b69e-b0577545e6c7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-30f64584-af19-4750-b69e-b0577545e6c7 img.shogun-image {
  /* Add background color handling */
  
}

#s-30f64584-af19-4750-b69e-b0577545e6c7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-30f64584-af19-4750-b69e-b0577545e6c7 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-30f64584-af19-4750-b69e-b0577545e6c7 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-30f64584-af19-4750-b69e-b0577545e6c7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-30f64584-af19-4750-b69e-b0577545e6c7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-30f64584-af19-4750-b69e-b0577545e6c7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-30f64584-af19-4750-b69e-b0577545e6c7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image {
  box-sizing: border-box;
}



.s-30f64584-af19-4750-b69e-b0577545e6c7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-30f64584-af19-4750-b69e-b0577545e6c7 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image-container {
      position: relative;
    }

    .s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-30f64584-af19-4750-b69e-b0577545e6c7 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-30f64584-af19-4750-b69e-b0577545e6c7 {
  margin: 0 !important;
  overflow: visible;
}

#s-30f64584-af19-4750-b69e-b0577545e6c7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-30f64584-af19-4750-b69e-b0577545e6c7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-30f64584-af19-4750-b69e-b0577545e6c7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-30f64584-af19-4750-b69e-b0577545e6c7 img.shogun-image {
  /* Add background color handling */
  
}

#s-30f64584-af19-4750-b69e-b0577545e6c7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-30f64584-af19-4750-b69e-b0577545e6c7 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-30f64584-af19-4750-b69e-b0577545e6c7 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-30f64584-af19-4750-b69e-b0577545e6c7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-30f64584-af19-4750-b69e-b0577545e6c7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-30f64584-af19-4750-b69e-b0577545e6c7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-30f64584-af19-4750-b69e-b0577545e6c7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image {
  box-sizing: border-box;
}



.s-30f64584-af19-4750-b69e-b0577545e6c7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-30f64584-af19-4750-b69e-b0577545e6c7 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image-container {
      position: relative;
    }

    .s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-30f64584-af19-4750-b69e-b0577545e6c7 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-30f64584-af19-4750-b69e-b0577545e6c7 {
  margin: 0 !important;
  overflow: visible;
}

#s-30f64584-af19-4750-b69e-b0577545e6c7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-30f64584-af19-4750-b69e-b0577545e6c7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-30f64584-af19-4750-b69e-b0577545e6c7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-30f64584-af19-4750-b69e-b0577545e6c7 img.shogun-image {
  /* Add background color handling */
  
}

#s-30f64584-af19-4750-b69e-b0577545e6c7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-30f64584-af19-4750-b69e-b0577545e6c7 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-30f64584-af19-4750-b69e-b0577545e6c7 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-30f64584-af19-4750-b69e-b0577545e6c7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-30f64584-af19-4750-b69e-b0577545e6c7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-30f64584-af19-4750-b69e-b0577545e6c7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-30f64584-af19-4750-b69e-b0577545e6c7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image {
  box-sizing: border-box;
}



.s-30f64584-af19-4750-b69e-b0577545e6c7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-30f64584-af19-4750-b69e-b0577545e6c7 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image-container {
      position: relative;
    }

    .s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-30f64584-af19-4750-b69e-b0577545e6c7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-30f64584-af19-4750-b69e-b0577545e6c7 {
  margin: 0 !important;
  overflow: visible;
}

#s-30f64584-af19-4750-b69e-b0577545e6c7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-30f64584-af19-4750-b69e-b0577545e6c7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-30f64584-af19-4750-b69e-b0577545e6c7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-30f64584-af19-4750-b69e-b0577545e6c7 img.shogun-image {
  /* Add background color handling */
  
}

#s-30f64584-af19-4750-b69e-b0577545e6c7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-30f64584-af19-4750-b69e-b0577545e6c7 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-30f64584-af19-4750-b69e-b0577545e6c7 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-30f64584-af19-4750-b69e-b0577545e6c7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-30f64584-af19-4750-b69e-b0577545e6c7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-30f64584-af19-4750-b69e-b0577545e6c7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-30f64584-af19-4750-b69e-b0577545e6c7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image {
  box-sizing: border-box;
}



.s-30f64584-af19-4750-b69e-b0577545e6c7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-30f64584-af19-4750-b69e-b0577545e6c7 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image-container {
      position: relative;
    }

    .s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-30f64584-af19-4750-b69e-b0577545e6c7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-30f64584-af19-4750-b69e-b0577545e6c7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-92bbefed-6cbe-47db-b2b2-423d9d4228bf {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-92bbefed-6cbe-47db-b2b2-423d9d4228bf {
  margin: 0 !important;
  overflow: visible;
}

#s-92bbefed-6cbe-47db-b2b2-423d9d4228bf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-92bbefed-6cbe-47db-b2b2-423d9d4228bf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-92bbefed-6cbe-47db-b2b2-423d9d4228bf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-92bbefed-6cbe-47db-b2b2-423d9d4228bf img.shogun-image {
  /* Add background color handling */
  
}

#s-92bbefed-6cbe-47db-b2b2-423d9d4228bf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-92bbefed-6cbe-47db-b2b2-423d9d4228bf .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-92bbefed-6cbe-47db-b2b2-423d9d4228bf .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-92bbefed-6cbe-47db-b2b2-423d9d4228bf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-92bbefed-6cbe-47db-b2b2-423d9d4228bf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-92bbefed-6cbe-47db-b2b2-423d9d4228bf .shogun-image-content {
  
    justify-content: center;
  
}

.s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image {
  box-sizing: border-box;
}



.s-92bbefed-6cbe-47db-b2b2-423d9d4228bf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-92bbefed-6cbe-47db-b2b2-423d9d4228bf {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image-container {
      position: relative;
    }

    .s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-92bbefed-6cbe-47db-b2b2-423d9d4228bf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-92bbefed-6cbe-47db-b2b2-423d9d4228bf {
  margin: 0 !important;
  overflow: visible;
}

#s-92bbefed-6cbe-47db-b2b2-423d9d4228bf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-92bbefed-6cbe-47db-b2b2-423d9d4228bf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-92bbefed-6cbe-47db-b2b2-423d9d4228bf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-92bbefed-6cbe-47db-b2b2-423d9d4228bf img.shogun-image {
  /* Add background color handling */
  
}

#s-92bbefed-6cbe-47db-b2b2-423d9d4228bf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-92bbefed-6cbe-47db-b2b2-423d9d4228bf .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-92bbefed-6cbe-47db-b2b2-423d9d4228bf .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-92bbefed-6cbe-47db-b2b2-423d9d4228bf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-92bbefed-6cbe-47db-b2b2-423d9d4228bf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-92bbefed-6cbe-47db-b2b2-423d9d4228bf .shogun-image-content {
  
    justify-content: center;
  
}

.s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image {
  box-sizing: border-box;
}



.s-92bbefed-6cbe-47db-b2b2-423d9d4228bf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-92bbefed-6cbe-47db-b2b2-423d9d4228bf {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image-container {
      position: relative;
    }

    .s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-92bbefed-6cbe-47db-b2b2-423d9d4228bf 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-92bbefed-6cbe-47db-b2b2-423d9d4228bf {
  margin: 0 !important;
  overflow: visible;
}

#s-92bbefed-6cbe-47db-b2b2-423d9d4228bf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-92bbefed-6cbe-47db-b2b2-423d9d4228bf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-92bbefed-6cbe-47db-b2b2-423d9d4228bf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-92bbefed-6cbe-47db-b2b2-423d9d4228bf img.shogun-image {
  /* Add background color handling */
  
}

#s-92bbefed-6cbe-47db-b2b2-423d9d4228bf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-92bbefed-6cbe-47db-b2b2-423d9d4228bf .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-92bbefed-6cbe-47db-b2b2-423d9d4228bf .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-92bbefed-6cbe-47db-b2b2-423d9d4228bf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-92bbefed-6cbe-47db-b2b2-423d9d4228bf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-92bbefed-6cbe-47db-b2b2-423d9d4228bf .shogun-image-content {
  
    justify-content: center;
  
}

.s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image {
  box-sizing: border-box;
}



.s-92bbefed-6cbe-47db-b2b2-423d9d4228bf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-92bbefed-6cbe-47db-b2b2-423d9d4228bf {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image-container {
      position: relative;
    }

    .s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-92bbefed-6cbe-47db-b2b2-423d9d4228bf 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-92bbefed-6cbe-47db-b2b2-423d9d4228bf {
  margin: 0 !important;
  overflow: visible;
}

#s-92bbefed-6cbe-47db-b2b2-423d9d4228bf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-92bbefed-6cbe-47db-b2b2-423d9d4228bf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-92bbefed-6cbe-47db-b2b2-423d9d4228bf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-92bbefed-6cbe-47db-b2b2-423d9d4228bf img.shogun-image {
  /* Add background color handling */
  
}

#s-92bbefed-6cbe-47db-b2b2-423d9d4228bf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-92bbefed-6cbe-47db-b2b2-423d9d4228bf .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-92bbefed-6cbe-47db-b2b2-423d9d4228bf .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-92bbefed-6cbe-47db-b2b2-423d9d4228bf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-92bbefed-6cbe-47db-b2b2-423d9d4228bf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-92bbefed-6cbe-47db-b2b2-423d9d4228bf .shogun-image-content {
  
    justify-content: center;
  
}

.s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image {
  box-sizing: border-box;
}



.s-92bbefed-6cbe-47db-b2b2-423d9d4228bf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-92bbefed-6cbe-47db-b2b2-423d9d4228bf {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image-container {
      position: relative;
    }

    .s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-92bbefed-6cbe-47db-b2b2-423d9d4228bf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-92bbefed-6cbe-47db-b2b2-423d9d4228bf {
  margin: 0 !important;
  overflow: visible;
}

#s-92bbefed-6cbe-47db-b2b2-423d9d4228bf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-92bbefed-6cbe-47db-b2b2-423d9d4228bf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-92bbefed-6cbe-47db-b2b2-423d9d4228bf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-92bbefed-6cbe-47db-b2b2-423d9d4228bf img.shogun-image {
  /* Add background color handling */
  
}

#s-92bbefed-6cbe-47db-b2b2-423d9d4228bf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-92bbefed-6cbe-47db-b2b2-423d9d4228bf .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-92bbefed-6cbe-47db-b2b2-423d9d4228bf .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-92bbefed-6cbe-47db-b2b2-423d9d4228bf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-92bbefed-6cbe-47db-b2b2-423d9d4228bf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-92bbefed-6cbe-47db-b2b2-423d9d4228bf .shogun-image-content {
  
    justify-content: center;
  
}

.s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image {
  box-sizing: border-box;
}



.s-92bbefed-6cbe-47db-b2b2-423d9d4228bf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-92bbefed-6cbe-47db-b2b2-423d9d4228bf {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image-container {
      position: relative;
    }

    .s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-92bbefed-6cbe-47db-b2b2-423d9d4228bf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-92bbefed-6cbe-47db-b2b2-423d9d4228bf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
@media (min-width: 0px) {
[id="s-92fdad18-8826-40f3-b291-5d3f0cd5774b"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-92fdad18-8826-40f3-b291-5d3f0cd5774b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-92fdad18-8826-40f3-b291-5d3f0cd5774b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-92fdad18-8826-40f3-b291-5d3f0cd5774b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 {
  max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 {
  margin: 0 !important;
  overflow: visible;
}

#s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 img.shogun-image {
  /* Add background color handling */
  
}

#s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image {
  box-sizing: border-box;
}



.s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image-container {
      position: relative;
    }

    .s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 {
  margin: 0 !important;
  overflow: visible;
}

#s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 img.shogun-image {
  /* Add background color handling */
  
}

#s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image {
  box-sizing: border-box;
}



.s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image-container {
      position: relative;
    }

    .s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 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-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 {
  margin: 0 !important;
  overflow: visible;
}

#s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 img.shogun-image {
  /* Add background color handling */
  
}

#s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image {
  box-sizing: border-box;
}



.s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image-container {
      position: relative;
    }

    .s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 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-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 {
  margin: 0 !important;
  overflow: visible;
}

#s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 img.shogun-image {
  /* Add background color handling */
  
}

#s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image {
  box-sizing: border-box;
}



.s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image-container {
      position: relative;
    }

    .s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 {
  margin: 0 !important;
  overflow: visible;
}

#s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 img.shogun-image {
  /* Add background color handling */
  
}

#s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image {
  box-sizing: border-box;
}



.s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image-container {
      position: relative;
    }

    .s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5d31ff03-b23c-4c7f-9e2b-f225aeb31e48 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-295da192-54a7-49b9-af96-b2fc7433ca8a {
  max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-295da192-54a7-49b9-af96-b2fc7433ca8a {
  margin: 0 !important;
  overflow: visible;
}

#s-295da192-54a7-49b9-af96-b2fc7433ca8a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-295da192-54a7-49b9-af96-b2fc7433ca8a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-295da192-54a7-49b9-af96-b2fc7433ca8a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-295da192-54a7-49b9-af96-b2fc7433ca8a img.shogun-image {
  /* Add background color handling */
  
}

#s-295da192-54a7-49b9-af96-b2fc7433ca8a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-295da192-54a7-49b9-af96-b2fc7433ca8a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-295da192-54a7-49b9-af96-b2fc7433ca8a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-295da192-54a7-49b9-af96-b2fc7433ca8a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-295da192-54a7-49b9-af96-b2fc7433ca8a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-295da192-54a7-49b9-af96-b2fc7433ca8a .shogun-image-content {
  
    justify-content: center;
  
}

.s-295da192-54a7-49b9-af96-b2fc7433ca8a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image {
  box-sizing: border-box;
}



.s-295da192-54a7-49b9-af96-b2fc7433ca8a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-295da192-54a7-49b9-af96-b2fc7433ca8a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image-container {
      position: relative;
    }

    .s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-295da192-54a7-49b9-af96-b2fc7433ca8a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-295da192-54a7-49b9-af96-b2fc7433ca8a {
  margin: 0 !important;
  overflow: visible;
}

#s-295da192-54a7-49b9-af96-b2fc7433ca8a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-295da192-54a7-49b9-af96-b2fc7433ca8a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-295da192-54a7-49b9-af96-b2fc7433ca8a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-295da192-54a7-49b9-af96-b2fc7433ca8a img.shogun-image {
  /* Add background color handling */
  
}

#s-295da192-54a7-49b9-af96-b2fc7433ca8a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-295da192-54a7-49b9-af96-b2fc7433ca8a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-295da192-54a7-49b9-af96-b2fc7433ca8a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-295da192-54a7-49b9-af96-b2fc7433ca8a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-295da192-54a7-49b9-af96-b2fc7433ca8a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-295da192-54a7-49b9-af96-b2fc7433ca8a .shogun-image-content {
  
    justify-content: center;
  
}

.s-295da192-54a7-49b9-af96-b2fc7433ca8a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image {
  box-sizing: border-box;
}



.s-295da192-54a7-49b9-af96-b2fc7433ca8a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-295da192-54a7-49b9-af96-b2fc7433ca8a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image-container {
      position: relative;
    }

    .s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-295da192-54a7-49b9-af96-b2fc7433ca8a 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-295da192-54a7-49b9-af96-b2fc7433ca8a {
  margin: 0 !important;
  overflow: visible;
}

#s-295da192-54a7-49b9-af96-b2fc7433ca8a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-295da192-54a7-49b9-af96-b2fc7433ca8a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-295da192-54a7-49b9-af96-b2fc7433ca8a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-295da192-54a7-49b9-af96-b2fc7433ca8a img.shogun-image {
  /* Add background color handling */
  
}

#s-295da192-54a7-49b9-af96-b2fc7433ca8a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-295da192-54a7-49b9-af96-b2fc7433ca8a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-295da192-54a7-49b9-af96-b2fc7433ca8a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-295da192-54a7-49b9-af96-b2fc7433ca8a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-295da192-54a7-49b9-af96-b2fc7433ca8a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-295da192-54a7-49b9-af96-b2fc7433ca8a .shogun-image-content {
  
    justify-content: center;
  
}

.s-295da192-54a7-49b9-af96-b2fc7433ca8a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image {
  box-sizing: border-box;
}



.s-295da192-54a7-49b9-af96-b2fc7433ca8a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-295da192-54a7-49b9-af96-b2fc7433ca8a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image-container {
      position: relative;
    }

    .s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-295da192-54a7-49b9-af96-b2fc7433ca8a 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-295da192-54a7-49b9-af96-b2fc7433ca8a {
  margin: 0 !important;
  overflow: visible;
}

#s-295da192-54a7-49b9-af96-b2fc7433ca8a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-295da192-54a7-49b9-af96-b2fc7433ca8a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-295da192-54a7-49b9-af96-b2fc7433ca8a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-295da192-54a7-49b9-af96-b2fc7433ca8a img.shogun-image {
  /* Add background color handling */
  
}

#s-295da192-54a7-49b9-af96-b2fc7433ca8a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-295da192-54a7-49b9-af96-b2fc7433ca8a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-295da192-54a7-49b9-af96-b2fc7433ca8a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-295da192-54a7-49b9-af96-b2fc7433ca8a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-295da192-54a7-49b9-af96-b2fc7433ca8a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-295da192-54a7-49b9-af96-b2fc7433ca8a .shogun-image-content {
  
    justify-content: center;
  
}

.s-295da192-54a7-49b9-af96-b2fc7433ca8a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image {
  box-sizing: border-box;
}



.s-295da192-54a7-49b9-af96-b2fc7433ca8a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-295da192-54a7-49b9-af96-b2fc7433ca8a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image-container {
      position: relative;
    }

    .s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-295da192-54a7-49b9-af96-b2fc7433ca8a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-295da192-54a7-49b9-af96-b2fc7433ca8a {
  margin: 0 !important;
  overflow: visible;
}

#s-295da192-54a7-49b9-af96-b2fc7433ca8a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-295da192-54a7-49b9-af96-b2fc7433ca8a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-295da192-54a7-49b9-af96-b2fc7433ca8a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-295da192-54a7-49b9-af96-b2fc7433ca8a img.shogun-image {
  /* Add background color handling */
  
}

#s-295da192-54a7-49b9-af96-b2fc7433ca8a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-295da192-54a7-49b9-af96-b2fc7433ca8a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-295da192-54a7-49b9-af96-b2fc7433ca8a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-295da192-54a7-49b9-af96-b2fc7433ca8a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-295da192-54a7-49b9-af96-b2fc7433ca8a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-295da192-54a7-49b9-af96-b2fc7433ca8a .shogun-image-content {
  
    justify-content: center;
  
}

.s-295da192-54a7-49b9-af96-b2fc7433ca8a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image {
  box-sizing: border-box;
}



.s-295da192-54a7-49b9-af96-b2fc7433ca8a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-295da192-54a7-49b9-af96-b2fc7433ca8a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image-container {
      position: relative;
    }

    .s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-295da192-54a7-49b9-af96-b2fc7433ca8a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-295da192-54a7-49b9-af96-b2fc7433ca8a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-9f7af09f-132c-4c07-bf62-7658fb5880f2 {
  max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-9f7af09f-132c-4c07-bf62-7658fb5880f2 {
  margin: 0 !important;
  overflow: visible;
}

#s-9f7af09f-132c-4c07-bf62-7658fb5880f2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9f7af09f-132c-4c07-bf62-7658fb5880f2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9f7af09f-132c-4c07-bf62-7658fb5880f2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9f7af09f-132c-4c07-bf62-7658fb5880f2 img.shogun-image {
  /* Add background color handling */
  
}

#s-9f7af09f-132c-4c07-bf62-7658fb5880f2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9f7af09f-132c-4c07-bf62-7658fb5880f2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9f7af09f-132c-4c07-bf62-7658fb5880f2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9f7af09f-132c-4c07-bf62-7658fb5880f2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9f7af09f-132c-4c07-bf62-7658fb5880f2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9f7af09f-132c-4c07-bf62-7658fb5880f2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image {
  box-sizing: border-box;
}



.s-9f7af09f-132c-4c07-bf62-7658fb5880f2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9f7af09f-132c-4c07-bf62-7658fb5880f2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image-container {
      position: relative;
    }

    .s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9f7af09f-132c-4c07-bf62-7658fb5880f2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-9f7af09f-132c-4c07-bf62-7658fb5880f2 {
  margin: 0 !important;
  overflow: visible;
}

#s-9f7af09f-132c-4c07-bf62-7658fb5880f2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9f7af09f-132c-4c07-bf62-7658fb5880f2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9f7af09f-132c-4c07-bf62-7658fb5880f2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9f7af09f-132c-4c07-bf62-7658fb5880f2 img.shogun-image {
  /* Add background color handling */
  
}

#s-9f7af09f-132c-4c07-bf62-7658fb5880f2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9f7af09f-132c-4c07-bf62-7658fb5880f2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9f7af09f-132c-4c07-bf62-7658fb5880f2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9f7af09f-132c-4c07-bf62-7658fb5880f2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9f7af09f-132c-4c07-bf62-7658fb5880f2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9f7af09f-132c-4c07-bf62-7658fb5880f2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image {
  box-sizing: border-box;
}



.s-9f7af09f-132c-4c07-bf62-7658fb5880f2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9f7af09f-132c-4c07-bf62-7658fb5880f2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image-container {
      position: relative;
    }

    .s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9f7af09f-132c-4c07-bf62-7658fb5880f2 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-9f7af09f-132c-4c07-bf62-7658fb5880f2 {
  margin: 0 !important;
  overflow: visible;
}

#s-9f7af09f-132c-4c07-bf62-7658fb5880f2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9f7af09f-132c-4c07-bf62-7658fb5880f2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9f7af09f-132c-4c07-bf62-7658fb5880f2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9f7af09f-132c-4c07-bf62-7658fb5880f2 img.shogun-image {
  /* Add background color handling */
  
}

#s-9f7af09f-132c-4c07-bf62-7658fb5880f2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9f7af09f-132c-4c07-bf62-7658fb5880f2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9f7af09f-132c-4c07-bf62-7658fb5880f2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9f7af09f-132c-4c07-bf62-7658fb5880f2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9f7af09f-132c-4c07-bf62-7658fb5880f2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9f7af09f-132c-4c07-bf62-7658fb5880f2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image {
  box-sizing: border-box;
}



.s-9f7af09f-132c-4c07-bf62-7658fb5880f2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9f7af09f-132c-4c07-bf62-7658fb5880f2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image-container {
      position: relative;
    }

    .s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9f7af09f-132c-4c07-bf62-7658fb5880f2 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-9f7af09f-132c-4c07-bf62-7658fb5880f2 {
  margin: 0 !important;
  overflow: visible;
}

#s-9f7af09f-132c-4c07-bf62-7658fb5880f2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9f7af09f-132c-4c07-bf62-7658fb5880f2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9f7af09f-132c-4c07-bf62-7658fb5880f2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9f7af09f-132c-4c07-bf62-7658fb5880f2 img.shogun-image {
  /* Add background color handling */
  
}

#s-9f7af09f-132c-4c07-bf62-7658fb5880f2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9f7af09f-132c-4c07-bf62-7658fb5880f2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9f7af09f-132c-4c07-bf62-7658fb5880f2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9f7af09f-132c-4c07-bf62-7658fb5880f2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9f7af09f-132c-4c07-bf62-7658fb5880f2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9f7af09f-132c-4c07-bf62-7658fb5880f2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image {
  box-sizing: border-box;
}



.s-9f7af09f-132c-4c07-bf62-7658fb5880f2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9f7af09f-132c-4c07-bf62-7658fb5880f2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image-container {
      position: relative;
    }

    .s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9f7af09f-132c-4c07-bf62-7658fb5880f2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-9f7af09f-132c-4c07-bf62-7658fb5880f2 {
  margin: 0 !important;
  overflow: visible;
}

#s-9f7af09f-132c-4c07-bf62-7658fb5880f2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9f7af09f-132c-4c07-bf62-7658fb5880f2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9f7af09f-132c-4c07-bf62-7658fb5880f2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9f7af09f-132c-4c07-bf62-7658fb5880f2 img.shogun-image {
  /* Add background color handling */
  
}

#s-9f7af09f-132c-4c07-bf62-7658fb5880f2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9f7af09f-132c-4c07-bf62-7658fb5880f2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9f7af09f-132c-4c07-bf62-7658fb5880f2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9f7af09f-132c-4c07-bf62-7658fb5880f2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9f7af09f-132c-4c07-bf62-7658fb5880f2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9f7af09f-132c-4c07-bf62-7658fb5880f2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image {
  box-sizing: border-box;
}



.s-9f7af09f-132c-4c07-bf62-7658fb5880f2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9f7af09f-132c-4c07-bf62-7658fb5880f2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image-container {
      position: relative;
    }

    .s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9f7af09f-132c-4c07-bf62-7658fb5880f2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9f7af09f-132c-4c07-bf62-7658fb5880f2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-dae3b488-e2be-46fe-998d-1f8d3525fe6c {
  max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-dae3b488-e2be-46fe-998d-1f8d3525fe6c {
  margin: 0 !important;
  overflow: visible;
}

#s-dae3b488-e2be-46fe-998d-1f8d3525fe6c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dae3b488-e2be-46fe-998d-1f8d3525fe6c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dae3b488-e2be-46fe-998d-1f8d3525fe6c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dae3b488-e2be-46fe-998d-1f8d3525fe6c img.shogun-image {
  /* Add background color handling */
  
}

#s-dae3b488-e2be-46fe-998d-1f8d3525fe6c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dae3b488-e2be-46fe-998d-1f8d3525fe6c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dae3b488-e2be-46fe-998d-1f8d3525fe6c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dae3b488-e2be-46fe-998d-1f8d3525fe6c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dae3b488-e2be-46fe-998d-1f8d3525fe6c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-dae3b488-e2be-46fe-998d-1f8d3525fe6c .shogun-image-content {
  
    justify-content: center;
  
}

.s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image {
  box-sizing: border-box;
}



.s-dae3b488-e2be-46fe-998d-1f8d3525fe6c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dae3b488-e2be-46fe-998d-1f8d3525fe6c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image-container {
      position: relative;
    }

    .s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dae3b488-e2be-46fe-998d-1f8d3525fe6c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-dae3b488-e2be-46fe-998d-1f8d3525fe6c {
  margin: 0 !important;
  overflow: visible;
}

#s-dae3b488-e2be-46fe-998d-1f8d3525fe6c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dae3b488-e2be-46fe-998d-1f8d3525fe6c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dae3b488-e2be-46fe-998d-1f8d3525fe6c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dae3b488-e2be-46fe-998d-1f8d3525fe6c img.shogun-image {
  /* Add background color handling */
  
}

#s-dae3b488-e2be-46fe-998d-1f8d3525fe6c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dae3b488-e2be-46fe-998d-1f8d3525fe6c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dae3b488-e2be-46fe-998d-1f8d3525fe6c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dae3b488-e2be-46fe-998d-1f8d3525fe6c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dae3b488-e2be-46fe-998d-1f8d3525fe6c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-dae3b488-e2be-46fe-998d-1f8d3525fe6c .shogun-image-content {
  
    justify-content: center;
  
}

.s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image {
  box-sizing: border-box;
}



.s-dae3b488-e2be-46fe-998d-1f8d3525fe6c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dae3b488-e2be-46fe-998d-1f8d3525fe6c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image-container {
      position: relative;
    }

    .s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dae3b488-e2be-46fe-998d-1f8d3525fe6c 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-dae3b488-e2be-46fe-998d-1f8d3525fe6c {
  margin: 0 !important;
  overflow: visible;
}

#s-dae3b488-e2be-46fe-998d-1f8d3525fe6c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dae3b488-e2be-46fe-998d-1f8d3525fe6c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dae3b488-e2be-46fe-998d-1f8d3525fe6c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dae3b488-e2be-46fe-998d-1f8d3525fe6c img.shogun-image {
  /* Add background color handling */
  
}

#s-dae3b488-e2be-46fe-998d-1f8d3525fe6c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dae3b488-e2be-46fe-998d-1f8d3525fe6c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dae3b488-e2be-46fe-998d-1f8d3525fe6c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dae3b488-e2be-46fe-998d-1f8d3525fe6c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dae3b488-e2be-46fe-998d-1f8d3525fe6c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-dae3b488-e2be-46fe-998d-1f8d3525fe6c .shogun-image-content {
  
    justify-content: center;
  
}

.s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image {
  box-sizing: border-box;
}



.s-dae3b488-e2be-46fe-998d-1f8d3525fe6c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dae3b488-e2be-46fe-998d-1f8d3525fe6c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image-container {
      position: relative;
    }

    .s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dae3b488-e2be-46fe-998d-1f8d3525fe6c 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-dae3b488-e2be-46fe-998d-1f8d3525fe6c {
  margin: 0 !important;
  overflow: visible;
}

#s-dae3b488-e2be-46fe-998d-1f8d3525fe6c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dae3b488-e2be-46fe-998d-1f8d3525fe6c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dae3b488-e2be-46fe-998d-1f8d3525fe6c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dae3b488-e2be-46fe-998d-1f8d3525fe6c img.shogun-image {
  /* Add background color handling */
  
}

#s-dae3b488-e2be-46fe-998d-1f8d3525fe6c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dae3b488-e2be-46fe-998d-1f8d3525fe6c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dae3b488-e2be-46fe-998d-1f8d3525fe6c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dae3b488-e2be-46fe-998d-1f8d3525fe6c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dae3b488-e2be-46fe-998d-1f8d3525fe6c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-dae3b488-e2be-46fe-998d-1f8d3525fe6c .shogun-image-content {
  
    justify-content: center;
  
}

.s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image {
  box-sizing: border-box;
}



.s-dae3b488-e2be-46fe-998d-1f8d3525fe6c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dae3b488-e2be-46fe-998d-1f8d3525fe6c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image-container {
      position: relative;
    }

    .s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dae3b488-e2be-46fe-998d-1f8d3525fe6c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-dae3b488-e2be-46fe-998d-1f8d3525fe6c {
  margin: 0 !important;
  overflow: visible;
}

#s-dae3b488-e2be-46fe-998d-1f8d3525fe6c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dae3b488-e2be-46fe-998d-1f8d3525fe6c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dae3b488-e2be-46fe-998d-1f8d3525fe6c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dae3b488-e2be-46fe-998d-1f8d3525fe6c img.shogun-image {
  /* Add background color handling */
  
}

#s-dae3b488-e2be-46fe-998d-1f8d3525fe6c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dae3b488-e2be-46fe-998d-1f8d3525fe6c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dae3b488-e2be-46fe-998d-1f8d3525fe6c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dae3b488-e2be-46fe-998d-1f8d3525fe6c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dae3b488-e2be-46fe-998d-1f8d3525fe6c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-dae3b488-e2be-46fe-998d-1f8d3525fe6c .shogun-image-content {
  
    justify-content: center;
  
}

.s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image {
  box-sizing: border-box;
}



.s-dae3b488-e2be-46fe-998d-1f8d3525fe6c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dae3b488-e2be-46fe-998d-1f8d3525fe6c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image-container {
      position: relative;
    }

    .s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dae3b488-e2be-46fe-998d-1f8d3525fe6c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dae3b488-e2be-46fe-998d-1f8d3525fe6c 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;
}
