.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-ddfb5fa3-01ac-4da7-a964-ee4fb0f65f42 {
  min-height: 50px;
}








#s-ddfb5fa3-01ac-4da7-a964-ee4fb0f65f42 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ddfb5fa3-01ac-4da7-a964-ee4fb0f65f42.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-7db749a9-c4ad-448f-acc0-8fce1d5ce900 {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 {
  margin: 0 !important;
  overflow: visible;
}

#s-7db749a9-c4ad-448f-acc0-8fce1d5ce900-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 img.shogun-image {
  /* Add background color handling */
  
}

#s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image {
  box-sizing: border-box;
}



.s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image-container {
      position: relative;
    }

    .s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 {
  margin: 0 !important;
  overflow: visible;
}

#s-7db749a9-c4ad-448f-acc0-8fce1d5ce900-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 img.shogun-image {
  /* Add background color handling */
  
}

#s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image {
  box-sizing: border-box;
}



.s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image-container {
      position: relative;
    }

    .s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 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-7db749a9-c4ad-448f-acc0-8fce1d5ce900 {
  margin: 0 !important;
  overflow: visible;
}

#s-7db749a9-c4ad-448f-acc0-8fce1d5ce900-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 img.shogun-image {
  /* Add background color handling */
  
}

#s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image {
  box-sizing: border-box;
}



.s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image-container {
      position: relative;
    }

    .s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 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-7db749a9-c4ad-448f-acc0-8fce1d5ce900 {
  margin: 0 !important;
  overflow: visible;
}

#s-7db749a9-c4ad-448f-acc0-8fce1d5ce900-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 img.shogun-image {
  /* Add background color handling */
  
}

#s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image {
  box-sizing: border-box;
}



.s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image-container {
      position: relative;
    }

    .s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 {
  margin: 0 !important;
  overflow: visible;
}

#s-7db749a9-c4ad-448f-acc0-8fce1d5ce900-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 img.shogun-image {
  /* Add background color handling */
  
}

#s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image {
  box-sizing: border-box;
}



.s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image-container {
      position: relative;
    }

    .s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7db749a9-c4ad-448f-acc0-8fce1d5ce900.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7db749a9-c4ad-448f-acc0-8fce1d5ce900 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-34214907-da5f-464d-84c8-1bbc438fef6f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-34214907-da5f-464d-84c8-1bbc438fef6f .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-5ac8d031-ebff-402d-8708-159b2b997aa9 {
  min-height: 50px;
}








#s-5ac8d031-ebff-402d-8708-159b2b997aa9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5ac8d031-ebff-402d-8708-159b2b997aa9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a77c77f0-eb29-4d4d-bcb6-eb836cf3405f {
  min-height: 50px;
}








#s-a77c77f0-eb29-4d4d-bcb6-eb836cf3405f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a77c77f0-eb29-4d4d-bcb6-eb836cf3405f.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-a42368f5-1191-4a50-8dd8-cf8425f3bd4c {
  margin-top: -8px;
margin-bottom: -8px;
min-height: 50px;
}








#s-a42368f5-1191-4a50-8dd8-cf8425f3bd4c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a42368f5-1191-4a50-8dd8-cf8425f3bd4c.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;
}

.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;
}
#s-4697a710-ec12-4947-88d0-4a72c269ca18 {
  min-height: 50px;
}








#s-4697a710-ec12-4947-88d0-4a72c269ca18 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4697a710-ec12-4947-88d0-4a72c269ca18.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4e3ce293-7092-4d39-bce9-1a180c5f3393 {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-4e3ce293-7092-4d39-bce9-1a180c5f3393 {
  margin: 0 !important;
  overflow: visible;
}

#s-4e3ce293-7092-4d39-bce9-1a180c5f3393-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4e3ce293-7092-4d39-bce9-1a180c5f3393 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4e3ce293-7092-4d39-bce9-1a180c5f3393 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4e3ce293-7092-4d39-bce9-1a180c5f3393 img.shogun-image {
  /* Add background color handling */
  
}

#s-4e3ce293-7092-4d39-bce9-1a180c5f3393 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4e3ce293-7092-4d39-bce9-1a180c5f3393 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-4e3ce293-7092-4d39-bce9-1a180c5f3393 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4e3ce293-7092-4d39-bce9-1a180c5f3393 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4e3ce293-7092-4d39-bce9-1a180c5f3393 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-4e3ce293-7092-4d39-bce9-1a180c5f3393 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image {
  box-sizing: border-box;
}



.s-4e3ce293-7092-4d39-bce9-1a180c5f3393 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4e3ce293-7092-4d39-bce9-1a180c5f3393 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image-container {
      position: relative;
    }

    .s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4e3ce293-7092-4d39-bce9-1a180c5f3393 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-4e3ce293-7092-4d39-bce9-1a180c5f3393 {
  margin: 0 !important;
  overflow: visible;
}

#s-4e3ce293-7092-4d39-bce9-1a180c5f3393-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4e3ce293-7092-4d39-bce9-1a180c5f3393 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4e3ce293-7092-4d39-bce9-1a180c5f3393 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4e3ce293-7092-4d39-bce9-1a180c5f3393 img.shogun-image {
  /* Add background color handling */
  
}

#s-4e3ce293-7092-4d39-bce9-1a180c5f3393 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4e3ce293-7092-4d39-bce9-1a180c5f3393 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-4e3ce293-7092-4d39-bce9-1a180c5f3393 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4e3ce293-7092-4d39-bce9-1a180c5f3393 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4e3ce293-7092-4d39-bce9-1a180c5f3393 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-4e3ce293-7092-4d39-bce9-1a180c5f3393 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image {
  box-sizing: border-box;
}



.s-4e3ce293-7092-4d39-bce9-1a180c5f3393 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4e3ce293-7092-4d39-bce9-1a180c5f3393 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image-container {
      position: relative;
    }

    .s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4e3ce293-7092-4d39-bce9-1a180c5f3393 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-4e3ce293-7092-4d39-bce9-1a180c5f3393 {
  margin: 0 !important;
  overflow: visible;
}

#s-4e3ce293-7092-4d39-bce9-1a180c5f3393-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4e3ce293-7092-4d39-bce9-1a180c5f3393 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4e3ce293-7092-4d39-bce9-1a180c5f3393 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4e3ce293-7092-4d39-bce9-1a180c5f3393 img.shogun-image {
  /* Add background color handling */
  
}

#s-4e3ce293-7092-4d39-bce9-1a180c5f3393 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4e3ce293-7092-4d39-bce9-1a180c5f3393 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-4e3ce293-7092-4d39-bce9-1a180c5f3393 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4e3ce293-7092-4d39-bce9-1a180c5f3393 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4e3ce293-7092-4d39-bce9-1a180c5f3393 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-4e3ce293-7092-4d39-bce9-1a180c5f3393 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image {
  box-sizing: border-box;
}



.s-4e3ce293-7092-4d39-bce9-1a180c5f3393 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4e3ce293-7092-4d39-bce9-1a180c5f3393 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image-container {
      position: relative;
    }

    .s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4e3ce293-7092-4d39-bce9-1a180c5f3393 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-4e3ce293-7092-4d39-bce9-1a180c5f3393 {
  margin: 0 !important;
  overflow: visible;
}

#s-4e3ce293-7092-4d39-bce9-1a180c5f3393-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4e3ce293-7092-4d39-bce9-1a180c5f3393 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4e3ce293-7092-4d39-bce9-1a180c5f3393 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4e3ce293-7092-4d39-bce9-1a180c5f3393 img.shogun-image {
  /* Add background color handling */
  
}

#s-4e3ce293-7092-4d39-bce9-1a180c5f3393 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4e3ce293-7092-4d39-bce9-1a180c5f3393 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-4e3ce293-7092-4d39-bce9-1a180c5f3393 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4e3ce293-7092-4d39-bce9-1a180c5f3393 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4e3ce293-7092-4d39-bce9-1a180c5f3393 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-4e3ce293-7092-4d39-bce9-1a180c5f3393 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image {
  box-sizing: border-box;
}



.s-4e3ce293-7092-4d39-bce9-1a180c5f3393 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4e3ce293-7092-4d39-bce9-1a180c5f3393 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image-container {
      position: relative;
    }

    .s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4e3ce293-7092-4d39-bce9-1a180c5f3393 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-4e3ce293-7092-4d39-bce9-1a180c5f3393 {
  margin: 0 !important;
  overflow: visible;
}

#s-4e3ce293-7092-4d39-bce9-1a180c5f3393-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4e3ce293-7092-4d39-bce9-1a180c5f3393 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4e3ce293-7092-4d39-bce9-1a180c5f3393 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4e3ce293-7092-4d39-bce9-1a180c5f3393 img.shogun-image {
  /* Add background color handling */
  
}

#s-4e3ce293-7092-4d39-bce9-1a180c5f3393 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4e3ce293-7092-4d39-bce9-1a180c5f3393 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-4e3ce293-7092-4d39-bce9-1a180c5f3393 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4e3ce293-7092-4d39-bce9-1a180c5f3393 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4e3ce293-7092-4d39-bce9-1a180c5f3393 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-4e3ce293-7092-4d39-bce9-1a180c5f3393 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image {
  box-sizing: border-box;
}



.s-4e3ce293-7092-4d39-bce9-1a180c5f3393 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4e3ce293-7092-4d39-bce9-1a180c5f3393 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image-container {
      position: relative;
    }

    .s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4e3ce293-7092-4d39-bce9-1a180c5f3393.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4e3ce293-7092-4d39-bce9-1a180c5f3393 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
@media (min-width: 0px) {
[id="s-962c38b4-31e3-47f4-890b-49fe9457ac8d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-962c38b4-31e3-47f4-890b-49fe9457ac8d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-962c38b4-31e3-47f4-890b-49fe9457ac8d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-962c38b4-31e3-47f4-890b-49fe9457ac8d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-4127a4c2-6b2b-4600-bc32-fbfecb72475d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4127a4c2-6b2b-4600-bc32-fbfecb72475d"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-4127a4c2-6b2b-4600-bc32-fbfecb72475d"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4127a4c2-6b2b-4600-bc32-fbfecb72475d"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-4127a4c2-6b2b-4600-bc32-fbfecb72475d"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4127a4c2-6b2b-4600-bc32-fbfecb72475d"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-4127a4c2-6b2b-4600-bc32-fbfecb72475d"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-cd8d5387-4322-402a-8dcf-f1f9ddb89c11 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-ffc5d4e9-ab56-4976-89fe-78576242aab3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ffc5d4e9-ab56-4976-89fe-78576242aab3"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ffc5d4e9-ab56-4976-89fe-78576242aab3"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ffc5d4e9-ab56-4976-89fe-78576242aab3"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ffc5d4e9-ab56-4976-89fe-78576242aab3"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ffc5d4e9-ab56-4976-89fe-78576242aab3"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ffc5d4e9-ab56-4976-89fe-78576242aab3"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-c24e6298-83c1-4280-b5c8-7ed2c7172ff6 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-cec6b765-5135-4a83-90f4-e999f3a6db22"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cec6b765-5135-4a83-90f4-e999f3a6db22"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-cec6b765-5135-4a83-90f4-e999f3a6db22"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-cec6b765-5135-4a83-90f4-e999f3a6db22"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-da0a28ae-d625-4d25-b88a-2533d601ac8b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-da0a28ae-d625-4d25-b88a-2533d601ac8b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-da0a28ae-d625-4d25-b88a-2533d601ac8b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-da0a28ae-d625-4d25-b88a-2533d601ac8b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-da0a28ae-d625-4d25-b88a-2533d601ac8b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-da0a28ae-d625-4d25-b88a-2533d601ac8b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-da0a28ae-d625-4d25-b88a-2533d601ac8b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-289777da-7827-4eed-8119-694ea57a8c52 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-0f55f04d-8cff-41d9-9289-8131dcf9f2a7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0f55f04d-8cff-41d9-9289-8131dcf9f2a7"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0f55f04d-8cff-41d9-9289-8131dcf9f2a7"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0f55f04d-8cff-41d9-9289-8131dcf9f2a7"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0f55f04d-8cff-41d9-9289-8131dcf9f2a7"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0f55f04d-8cff-41d9-9289-8131dcf9f2a7"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0f55f04d-8cff-41d9-9289-8131dcf9f2a7"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-dcf5a0eb-39f0-4e94-a67f-6667d1cb79f2 {
  background-color: rgba(232, 232, 232, 1);
}
}
@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%;
}

#s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f {
  max-width: 1200px;
aspect-ratio: 1200/430;
text-align: center;
}

#s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f {
  margin: 0 !important;
  overflow: visible;
}

#s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f img.shogun-image {
  /* Add background color handling */
  
}

#s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f .shg-image-content-wrapper {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }

    #s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f .shogun-image-link {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f .shogun-image-content {
  
    justify-content: center;
  
}

.s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image {
  box-sizing: border-box;
}



.s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f {
      --shg-aspect-ratio: calc(1200/430); 
    }

    .s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image-container {
      position: relative;
    }

    .s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

@media (min-width: 1200px){#s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f {
  margin: 0 !important;
  overflow: visible;
}

#s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f img.shogun-image {
  /* Add background color handling */
  
}

#s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f .shg-image-content-wrapper {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }

    #s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f .shogun-image-link {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f .shogun-image-content {
  
    justify-content: center;
  
}

.s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image {
  box-sizing: border-box;
}



.s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f {
      --shg-aspect-ratio: calc(1200/430); 
    }

    .s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image-container {
      position: relative;
    }

    .s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f 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-9492ccce-c4ff-47a8-81fd-04b6ff0f874f {
  margin: 0 !important;
  overflow: visible;
}

#s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f img.shogun-image {
  /* Add background color handling */
  
}

#s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f .shg-image-content-wrapper {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }

    #s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f .shogun-image-link {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f .shogun-image-content {
  
    justify-content: center;
  
}

.s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image {
  box-sizing: border-box;
}



.s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f {
      --shg-aspect-ratio: calc(1200/430); 
    }

    .s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image-container {
      position: relative;
    }

    .s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f 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-9492ccce-c4ff-47a8-81fd-04b6ff0f874f {
  margin: 0 !important;
  overflow: visible;
}

#s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f img.shogun-image {
  /* Add background color handling */
  
}

#s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f .shg-image-content-wrapper {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }

    #s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f .shogun-image-link {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f .shogun-image-content {
  
    justify-content: center;
  
}

.s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image {
  box-sizing: border-box;
}



.s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f {
      --shg-aspect-ratio: calc(1200/430); 
    }

    .s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image-container {
      position: relative;
    }

    .s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

}@media (max-width: 767px){#s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f {
  margin: 0 !important;
  overflow: visible;
}

#s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f img.shogun-image {
  /* Add background color handling */
  
}

#s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f .shg-image-content-wrapper {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }

    #s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f .shogun-image-link {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f .shogun-image-content {
  
    justify-content: center;
  
}

.s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image {
  box-sizing: border-box;
}



.s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f {
      --shg-aspect-ratio: calc(1200/430); 
    }

    .s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image-container {
      position: relative;
    }

    .s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9492ccce-c4ff-47a8-81fd-04b6ff0f874f 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-09bf3ab0-9ecc-4b7c-a0c5-48102107a7e9 {
  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-09bf3ab0-9ecc-4b7c-a0c5-48102107a7e9:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-09bf3ab0-9ecc-4b7c-a0c5-48102107a7e9:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-09bf3ab0-9ecc-4b7c-a0c5-48102107a7e9 {
  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-09bf3ab0-9ecc-4b7c-a0c5-48102107a7e9-root {
    text-align: center;
  }


#s-09bf3ab0-9ecc-4b7c-a0c5-48102107a7e9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-09bf3ab0-9ecc-4b7c-a0c5-48102107a7e9-root {
    text-align: left;
  }


#s-09bf3ab0-9ecc-4b7c-a0c5-48102107a7e9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-09bf3ab0-9ecc-4b7c-a0c5-48102107a7e9-root {
    text-align: center;
  }


#s-09bf3ab0-9ecc-4b7c-a0c5-48102107a7e9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-09bf3ab0-9ecc-4b7c-a0c5-48102107a7e9-root {
    text-align: center;
  }


#s-09bf3ab0-9ecc-4b7c-a0c5-48102107a7e9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-09bf3ab0-9ecc-4b7c-a0c5-48102107a7e9-root {
    text-align: center;
  }


#s-09bf3ab0-9ecc-4b7c-a0c5-48102107a7e9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-107bee88-478b-4935-bb31-ca772d95a70f {
  min-height: 50px;
}








#s-107bee88-478b-4935-bb31-ca772d95a70f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-107bee88-478b-4935-bb31-ca772d95a70f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1ea06cab-e028-4b23-b341-4ddc8f783b39 {
  max-width: 1500px;
aspect-ratio: 1500/563;
text-align: center;
}

#s-1ea06cab-e028-4b23-b341-4ddc8f783b39 {
  margin: 0 !important;
  overflow: visible;
}

#s-1ea06cab-e028-4b23-b341-4ddc8f783b39-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1ea06cab-e028-4b23-b341-4ddc8f783b39 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1ea06cab-e028-4b23-b341-4ddc8f783b39 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1ea06cab-e028-4b23-b341-4ddc8f783b39 img.shogun-image {
  /* Add background color handling */
  
}

#s-1ea06cab-e028-4b23-b341-4ddc8f783b39 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1ea06cab-e028-4b23-b341-4ddc8f783b39 .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-1ea06cab-e028-4b23-b341-4ddc8f783b39 .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1ea06cab-e028-4b23-b341-4ddc8f783b39 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1ea06cab-e028-4b23-b341-4ddc8f783b39 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-1ea06cab-e028-4b23-b341-4ddc8f783b39 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image {
  box-sizing: border-box;
}



.s-1ea06cab-e028-4b23-b341-4ddc8f783b39 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1ea06cab-e028-4b23-b341-4ddc8f783b39 {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image-container {
      position: relative;
    }

    .s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1ea06cab-e028-4b23-b341-4ddc8f783b39 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-1ea06cab-e028-4b23-b341-4ddc8f783b39 {
  margin: 0 !important;
  overflow: visible;
}

#s-1ea06cab-e028-4b23-b341-4ddc8f783b39-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1ea06cab-e028-4b23-b341-4ddc8f783b39 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1ea06cab-e028-4b23-b341-4ddc8f783b39 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1ea06cab-e028-4b23-b341-4ddc8f783b39 img.shogun-image {
  /* Add background color handling */
  
}

#s-1ea06cab-e028-4b23-b341-4ddc8f783b39 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1ea06cab-e028-4b23-b341-4ddc8f783b39 .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-1ea06cab-e028-4b23-b341-4ddc8f783b39 .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1ea06cab-e028-4b23-b341-4ddc8f783b39 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1ea06cab-e028-4b23-b341-4ddc8f783b39 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-1ea06cab-e028-4b23-b341-4ddc8f783b39 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image {
  box-sizing: border-box;
}



.s-1ea06cab-e028-4b23-b341-4ddc8f783b39 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1ea06cab-e028-4b23-b341-4ddc8f783b39 {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image-container {
      position: relative;
    }

    .s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1ea06cab-e028-4b23-b341-4ddc8f783b39 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-1ea06cab-e028-4b23-b341-4ddc8f783b39 {
  margin: 0 !important;
  overflow: visible;
}

#s-1ea06cab-e028-4b23-b341-4ddc8f783b39-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1ea06cab-e028-4b23-b341-4ddc8f783b39 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1ea06cab-e028-4b23-b341-4ddc8f783b39 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1ea06cab-e028-4b23-b341-4ddc8f783b39 img.shogun-image {
  /* Add background color handling */
  
}

#s-1ea06cab-e028-4b23-b341-4ddc8f783b39 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1ea06cab-e028-4b23-b341-4ddc8f783b39 .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-1ea06cab-e028-4b23-b341-4ddc8f783b39 .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1ea06cab-e028-4b23-b341-4ddc8f783b39 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1ea06cab-e028-4b23-b341-4ddc8f783b39 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-1ea06cab-e028-4b23-b341-4ddc8f783b39 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image {
  box-sizing: border-box;
}



.s-1ea06cab-e028-4b23-b341-4ddc8f783b39 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1ea06cab-e028-4b23-b341-4ddc8f783b39 {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image-container {
      position: relative;
    }

    .s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1ea06cab-e028-4b23-b341-4ddc8f783b39 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-1ea06cab-e028-4b23-b341-4ddc8f783b39 {
  margin: 0 !important;
  overflow: visible;
}

#s-1ea06cab-e028-4b23-b341-4ddc8f783b39-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1ea06cab-e028-4b23-b341-4ddc8f783b39 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1ea06cab-e028-4b23-b341-4ddc8f783b39 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1ea06cab-e028-4b23-b341-4ddc8f783b39 img.shogun-image {
  /* Add background color handling */
  
}

#s-1ea06cab-e028-4b23-b341-4ddc8f783b39 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1ea06cab-e028-4b23-b341-4ddc8f783b39 .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-1ea06cab-e028-4b23-b341-4ddc8f783b39 .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1ea06cab-e028-4b23-b341-4ddc8f783b39 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1ea06cab-e028-4b23-b341-4ddc8f783b39 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-1ea06cab-e028-4b23-b341-4ddc8f783b39 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image {
  box-sizing: border-box;
}



.s-1ea06cab-e028-4b23-b341-4ddc8f783b39 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1ea06cab-e028-4b23-b341-4ddc8f783b39 {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image-container {
      position: relative;
    }

    .s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1ea06cab-e028-4b23-b341-4ddc8f783b39 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-1ea06cab-e028-4b23-b341-4ddc8f783b39 {
  margin: 0 !important;
  overflow: visible;
}

#s-1ea06cab-e028-4b23-b341-4ddc8f783b39-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1ea06cab-e028-4b23-b341-4ddc8f783b39 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1ea06cab-e028-4b23-b341-4ddc8f783b39 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1ea06cab-e028-4b23-b341-4ddc8f783b39 img.shogun-image {
  /* Add background color handling */
  
}

#s-1ea06cab-e028-4b23-b341-4ddc8f783b39 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1ea06cab-e028-4b23-b341-4ddc8f783b39 .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-1ea06cab-e028-4b23-b341-4ddc8f783b39 .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1ea06cab-e028-4b23-b341-4ddc8f783b39 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1ea06cab-e028-4b23-b341-4ddc8f783b39 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-1ea06cab-e028-4b23-b341-4ddc8f783b39 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image {
  box-sizing: border-box;
}



.s-1ea06cab-e028-4b23-b341-4ddc8f783b39 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1ea06cab-e028-4b23-b341-4ddc8f783b39 {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image-container {
      position: relative;
    }

    .s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1ea06cab-e028-4b23-b341-4ddc8f783b39.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1ea06cab-e028-4b23-b341-4ddc8f783b39 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
@media (min-width: 0px) {
[id="s-f386aeca-85f8-4969-9415-e76538af8795"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f386aeca-85f8-4969-9415-e76538af8795"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f386aeca-85f8-4969-9415-e76538af8795"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f386aeca-85f8-4969-9415-e76538af8795"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-f607e97d-9409-4d2f-9e0c-1e162cb8ab2b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f607e97d-9409-4d2f-9e0c-1e162cb8ab2b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f607e97d-9409-4d2f-9e0c-1e162cb8ab2b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f607e97d-9409-4d2f-9e0c-1e162cb8ab2b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f607e97d-9409-4d2f-9e0c-1e162cb8ab2b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f607e97d-9409-4d2f-9e0c-1e162cb8ab2b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f607e97d-9409-4d2f-9e0c-1e162cb8ab2b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-8524d7c8-4461-49ca-a761-3aef66b06e05 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-b9fb51e8-6e3a-41aa-ae62-68bdeab39302"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b9fb51e8-6e3a-41aa-ae62-68bdeab39302"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b9fb51e8-6e3a-41aa-ae62-68bdeab39302"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b9fb51e8-6e3a-41aa-ae62-68bdeab39302"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b9fb51e8-6e3a-41aa-ae62-68bdeab39302"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b9fb51e8-6e3a-41aa-ae62-68bdeab39302"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b9fb51e8-6e3a-41aa-ae62-68bdeab39302"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-2f58efa0-9915-41c9-bd55-76db0dde35d7 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-c1ee4666-2751-4836-968f-9f6b8abbc68b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c1ee4666-2751-4836-968f-9f6b8abbc68b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c1ee4666-2751-4836-968f-9f6b8abbc68b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c1ee4666-2751-4836-968f-9f6b8abbc68b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-6dd85d5c-163e-4fb7-8b56-ad03092878bb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6dd85d5c-163e-4fb7-8b56-ad03092878bb"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6dd85d5c-163e-4fb7-8b56-ad03092878bb"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6dd85d5c-163e-4fb7-8b56-ad03092878bb"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6dd85d5c-163e-4fb7-8b56-ad03092878bb"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6dd85d5c-163e-4fb7-8b56-ad03092878bb"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6dd85d5c-163e-4fb7-8b56-ad03092878bb"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-0fc68f35-8ce9-441f-96cd-cd5052ec8876 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-99768acb-b436-43b2-a228-3eb296511d63"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-99768acb-b436-43b2-a228-3eb296511d63"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-99768acb-b436-43b2-a228-3eb296511d63"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-99768acb-b436-43b2-a228-3eb296511d63"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-99768acb-b436-43b2-a228-3eb296511d63"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-99768acb-b436-43b2-a228-3eb296511d63"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-99768acb-b436-43b2-a228-3eb296511d63"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-ca04ffbb-f6b2-48e5-8aec-757e060f2cf4 {
  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%;
}

@media (min-width: 0px) {
[id="s-6c2b4db3-2fd4-40ba-accf-f8dfea5335c0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6c2b4db3-2fd4-40ba-accf-f8dfea5335c0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6c2b4db3-2fd4-40ba-accf-f8dfea5335c0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6c2b4db3-2fd4-40ba-accf-f8dfea5335c0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-bcb45d64-1c5f-47e7-b0ae-29588b0d5cb8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bcb45d64-1c5f-47e7-b0ae-29588b0d5cb8"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-bcb45d64-1c5f-47e7-b0ae-29588b0d5cb8"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-bcb45d64-1c5f-47e7-b0ae-29588b0d5cb8"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-bcb45d64-1c5f-47e7-b0ae-29588b0d5cb8"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-bcb45d64-1c5f-47e7-b0ae-29588b0d5cb8"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-bcb45d64-1c5f-47e7-b0ae-29588b0d5cb8"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-772ecf90-a0d2-4401-bafa-2d4906ecd373 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-11196864-335f-4a14-ad2a-82993249aefe"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-11196864-335f-4a14-ad2a-82993249aefe"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-11196864-335f-4a14-ad2a-82993249aefe"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-11196864-335f-4a14-ad2a-82993249aefe"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-11196864-335f-4a14-ad2a-82993249aefe"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-11196864-335f-4a14-ad2a-82993249aefe"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-11196864-335f-4a14-ad2a-82993249aefe"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-bf07a9a9-e4bd-47f1-9851-e9bb822b2533 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-052ad6d8-b44c-4ece-9392-f9a06289f877"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-052ad6d8-b44c-4ece-9392-f9a06289f877"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-052ad6d8-b44c-4ece-9392-f9a06289f877"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-052ad6d8-b44c-4ece-9392-f9a06289f877"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-bc9c001b-1b2d-45e8-a5f1-701f737e2450"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bc9c001b-1b2d-45e8-a5f1-701f737e2450"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-bc9c001b-1b2d-45e8-a5f1-701f737e2450"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-bc9c001b-1b2d-45e8-a5f1-701f737e2450"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-bc9c001b-1b2d-45e8-a5f1-701f737e2450"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-bc9c001b-1b2d-45e8-a5f1-701f737e2450"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-bc9c001b-1b2d-45e8-a5f1-701f737e2450"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-3f278017-8987-419c-bd48-ce0c545dc865 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-1156dfa6-c5a0-435a-a85f-50cb911ac573"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1156dfa6-c5a0-435a-a85f-50cb911ac573"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1156dfa6-c5a0-435a-a85f-50cb911ac573"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1156dfa6-c5a0-435a-a85f-50cb911ac573"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1156dfa6-c5a0-435a-a85f-50cb911ac573"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1156dfa6-c5a0-435a-a85f-50cb911ac573"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1156dfa6-c5a0-435a-a85f-50cb911ac573"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-9f45408f-d6d3-403e-a984-3cf9bf1a182a {
  background-color: rgba(232, 232, 232, 1);
}
}
.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-ca93510a-2c79-47f0-a451-291846be0fdd"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-ca93510a-2c79-47f0-a451-291846be0fdd"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-ca93510a-2c79-47f0-a451-291846be0fdd"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-ca93510a-2c79-47f0-a451-291846be0fdd"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-f68a482b-5d44-442b-99f5-bbf982cc304a {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-f68a482b-5d44-442b-99f5-bbf982cc304a {
  margin: 0 !important;
  overflow: visible;
}

#s-f68a482b-5d44-442b-99f5-bbf982cc304a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f68a482b-5d44-442b-99f5-bbf982cc304a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f68a482b-5d44-442b-99f5-bbf982cc304a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f68a482b-5d44-442b-99f5-bbf982cc304a img.shogun-image {
  /* Add background color handling */
  
}

#s-f68a482b-5d44-442b-99f5-bbf982cc304a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f68a482b-5d44-442b-99f5-bbf982cc304a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f68a482b-5d44-442b-99f5-bbf982cc304a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f68a482b-5d44-442b-99f5-bbf982cc304a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f68a482b-5d44-442b-99f5-bbf982cc304a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-f68a482b-5d44-442b-99f5-bbf982cc304a .shogun-image-content {
  
    justify-content: center;
  
}

.s-f68a482b-5d44-442b-99f5-bbf982cc304a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image {
  box-sizing: border-box;
}



.s-f68a482b-5d44-442b-99f5-bbf982cc304a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f68a482b-5d44-442b-99f5-bbf982cc304a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image-container {
      position: relative;
    }

    .s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f68a482b-5d44-442b-99f5-bbf982cc304a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-f68a482b-5d44-442b-99f5-bbf982cc304a {
  margin: 0 !important;
  overflow: visible;
}

#s-f68a482b-5d44-442b-99f5-bbf982cc304a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f68a482b-5d44-442b-99f5-bbf982cc304a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f68a482b-5d44-442b-99f5-bbf982cc304a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f68a482b-5d44-442b-99f5-bbf982cc304a img.shogun-image {
  /* Add background color handling */
  
}

#s-f68a482b-5d44-442b-99f5-bbf982cc304a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f68a482b-5d44-442b-99f5-bbf982cc304a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f68a482b-5d44-442b-99f5-bbf982cc304a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f68a482b-5d44-442b-99f5-bbf982cc304a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f68a482b-5d44-442b-99f5-bbf982cc304a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-f68a482b-5d44-442b-99f5-bbf982cc304a .shogun-image-content {
  
    justify-content: center;
  
}

.s-f68a482b-5d44-442b-99f5-bbf982cc304a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image {
  box-sizing: border-box;
}



.s-f68a482b-5d44-442b-99f5-bbf982cc304a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f68a482b-5d44-442b-99f5-bbf982cc304a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image-container {
      position: relative;
    }

    .s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f68a482b-5d44-442b-99f5-bbf982cc304a 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-f68a482b-5d44-442b-99f5-bbf982cc304a {
  margin: 0 !important;
  overflow: visible;
}

#s-f68a482b-5d44-442b-99f5-bbf982cc304a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f68a482b-5d44-442b-99f5-bbf982cc304a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f68a482b-5d44-442b-99f5-bbf982cc304a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f68a482b-5d44-442b-99f5-bbf982cc304a img.shogun-image {
  /* Add background color handling */
  
}

#s-f68a482b-5d44-442b-99f5-bbf982cc304a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f68a482b-5d44-442b-99f5-bbf982cc304a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f68a482b-5d44-442b-99f5-bbf982cc304a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f68a482b-5d44-442b-99f5-bbf982cc304a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f68a482b-5d44-442b-99f5-bbf982cc304a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-f68a482b-5d44-442b-99f5-bbf982cc304a .shogun-image-content {
  
    justify-content: center;
  
}

.s-f68a482b-5d44-442b-99f5-bbf982cc304a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image {
  box-sizing: border-box;
}



.s-f68a482b-5d44-442b-99f5-bbf982cc304a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f68a482b-5d44-442b-99f5-bbf982cc304a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image-container {
      position: relative;
    }

    .s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f68a482b-5d44-442b-99f5-bbf982cc304a 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-f68a482b-5d44-442b-99f5-bbf982cc304a {
  margin: 0 !important;
  overflow: visible;
}

#s-f68a482b-5d44-442b-99f5-bbf982cc304a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f68a482b-5d44-442b-99f5-bbf982cc304a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f68a482b-5d44-442b-99f5-bbf982cc304a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f68a482b-5d44-442b-99f5-bbf982cc304a img.shogun-image {
  /* Add background color handling */
  
}

#s-f68a482b-5d44-442b-99f5-bbf982cc304a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f68a482b-5d44-442b-99f5-bbf982cc304a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f68a482b-5d44-442b-99f5-bbf982cc304a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f68a482b-5d44-442b-99f5-bbf982cc304a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f68a482b-5d44-442b-99f5-bbf982cc304a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-f68a482b-5d44-442b-99f5-bbf982cc304a .shogun-image-content {
  
    justify-content: center;
  
}

.s-f68a482b-5d44-442b-99f5-bbf982cc304a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image {
  box-sizing: border-box;
}



.s-f68a482b-5d44-442b-99f5-bbf982cc304a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f68a482b-5d44-442b-99f5-bbf982cc304a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image-container {
      position: relative;
    }

    .s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f68a482b-5d44-442b-99f5-bbf982cc304a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-f68a482b-5d44-442b-99f5-bbf982cc304a {
  margin: 0 !important;
  overflow: visible;
}

#s-f68a482b-5d44-442b-99f5-bbf982cc304a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f68a482b-5d44-442b-99f5-bbf982cc304a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f68a482b-5d44-442b-99f5-bbf982cc304a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f68a482b-5d44-442b-99f5-bbf982cc304a img.shogun-image {
  /* Add background color handling */
  
}

#s-f68a482b-5d44-442b-99f5-bbf982cc304a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f68a482b-5d44-442b-99f5-bbf982cc304a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f68a482b-5d44-442b-99f5-bbf982cc304a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f68a482b-5d44-442b-99f5-bbf982cc304a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f68a482b-5d44-442b-99f5-bbf982cc304a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-f68a482b-5d44-442b-99f5-bbf982cc304a .shogun-image-content {
  
    justify-content: center;
  
}

.s-f68a482b-5d44-442b-99f5-bbf982cc304a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image {
  box-sizing: border-box;
}



.s-f68a482b-5d44-442b-99f5-bbf982cc304a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f68a482b-5d44-442b-99f5-bbf982cc304a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image-container {
      position: relative;
    }

    .s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f68a482b-5d44-442b-99f5-bbf982cc304a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f68a482b-5d44-442b-99f5-bbf982cc304a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 {
  margin: 0 !important;
  overflow: visible;
}

#s-9457da6c-f14d-48d0-98f5-55b1ffaf7376-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 img.shogun-image {
  /* Add background color handling */
  
}

#s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image {
  box-sizing: border-box;
}



.s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image-container {
      position: relative;
    }

    .s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 {
  margin: 0 !important;
  overflow: visible;
}

#s-9457da6c-f14d-48d0-98f5-55b1ffaf7376-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 img.shogun-image {
  /* Add background color handling */
  
}

#s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image {
  box-sizing: border-box;
}



.s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image-container {
      position: relative;
    }

    .s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 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-9457da6c-f14d-48d0-98f5-55b1ffaf7376 {
  margin: 0 !important;
  overflow: visible;
}

#s-9457da6c-f14d-48d0-98f5-55b1ffaf7376-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 img.shogun-image {
  /* Add background color handling */
  
}

#s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image {
  box-sizing: border-box;
}



.s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image-container {
      position: relative;
    }

    .s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 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-9457da6c-f14d-48d0-98f5-55b1ffaf7376 {
  margin: 0 !important;
  overflow: visible;
}

#s-9457da6c-f14d-48d0-98f5-55b1ffaf7376-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 img.shogun-image {
  /* Add background color handling */
  
}

#s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image {
  box-sizing: border-box;
}



.s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image-container {
      position: relative;
    }

    .s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 {
  margin: 0 !important;
  overflow: visible;
}

#s-9457da6c-f14d-48d0-98f5-55b1ffaf7376-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 img.shogun-image {
  /* Add background color handling */
  
}

#s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image {
  box-sizing: border-box;
}



.s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image-container {
      position: relative;
    }

    .s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9457da6c-f14d-48d0-98f5-55b1ffaf7376.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9457da6c-f14d-48d0-98f5-55b1ffaf7376 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-1306febf-da64-4f5b-9650-24a0cd4d019a {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-1306febf-da64-4f5b-9650-24a0cd4d019a {
  margin: 0 !important;
  overflow: visible;
}

#s-1306febf-da64-4f5b-9650-24a0cd4d019a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1306febf-da64-4f5b-9650-24a0cd4d019a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1306febf-da64-4f5b-9650-24a0cd4d019a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1306febf-da64-4f5b-9650-24a0cd4d019a img.shogun-image {
  /* Add background color handling */
  
}

#s-1306febf-da64-4f5b-9650-24a0cd4d019a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1306febf-da64-4f5b-9650-24a0cd4d019a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1306febf-da64-4f5b-9650-24a0cd4d019a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1306febf-da64-4f5b-9650-24a0cd4d019a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1306febf-da64-4f5b-9650-24a0cd4d019a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-1306febf-da64-4f5b-9650-24a0cd4d019a .shogun-image-content {
  
    justify-content: center;
  
}

.s-1306febf-da64-4f5b-9650-24a0cd4d019a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image {
  box-sizing: border-box;
}



.s-1306febf-da64-4f5b-9650-24a0cd4d019a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1306febf-da64-4f5b-9650-24a0cd4d019a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image-container {
      position: relative;
    }

    .s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1306febf-da64-4f5b-9650-24a0cd4d019a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-1306febf-da64-4f5b-9650-24a0cd4d019a {
  margin: 0 !important;
  overflow: visible;
}

#s-1306febf-da64-4f5b-9650-24a0cd4d019a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1306febf-da64-4f5b-9650-24a0cd4d019a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1306febf-da64-4f5b-9650-24a0cd4d019a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1306febf-da64-4f5b-9650-24a0cd4d019a img.shogun-image {
  /* Add background color handling */
  
}

#s-1306febf-da64-4f5b-9650-24a0cd4d019a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1306febf-da64-4f5b-9650-24a0cd4d019a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1306febf-da64-4f5b-9650-24a0cd4d019a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1306febf-da64-4f5b-9650-24a0cd4d019a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1306febf-da64-4f5b-9650-24a0cd4d019a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-1306febf-da64-4f5b-9650-24a0cd4d019a .shogun-image-content {
  
    justify-content: center;
  
}

.s-1306febf-da64-4f5b-9650-24a0cd4d019a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image {
  box-sizing: border-box;
}



.s-1306febf-da64-4f5b-9650-24a0cd4d019a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1306febf-da64-4f5b-9650-24a0cd4d019a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image-container {
      position: relative;
    }

    .s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1306febf-da64-4f5b-9650-24a0cd4d019a 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-1306febf-da64-4f5b-9650-24a0cd4d019a {
  margin: 0 !important;
  overflow: visible;
}

#s-1306febf-da64-4f5b-9650-24a0cd4d019a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1306febf-da64-4f5b-9650-24a0cd4d019a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1306febf-da64-4f5b-9650-24a0cd4d019a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1306febf-da64-4f5b-9650-24a0cd4d019a img.shogun-image {
  /* Add background color handling */
  
}

#s-1306febf-da64-4f5b-9650-24a0cd4d019a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1306febf-da64-4f5b-9650-24a0cd4d019a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1306febf-da64-4f5b-9650-24a0cd4d019a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1306febf-da64-4f5b-9650-24a0cd4d019a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1306febf-da64-4f5b-9650-24a0cd4d019a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-1306febf-da64-4f5b-9650-24a0cd4d019a .shogun-image-content {
  
    justify-content: center;
  
}

.s-1306febf-da64-4f5b-9650-24a0cd4d019a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image {
  box-sizing: border-box;
}



.s-1306febf-da64-4f5b-9650-24a0cd4d019a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1306febf-da64-4f5b-9650-24a0cd4d019a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image-container {
      position: relative;
    }

    .s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1306febf-da64-4f5b-9650-24a0cd4d019a 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-1306febf-da64-4f5b-9650-24a0cd4d019a {
  margin: 0 !important;
  overflow: visible;
}

#s-1306febf-da64-4f5b-9650-24a0cd4d019a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1306febf-da64-4f5b-9650-24a0cd4d019a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1306febf-da64-4f5b-9650-24a0cd4d019a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1306febf-da64-4f5b-9650-24a0cd4d019a img.shogun-image {
  /* Add background color handling */
  
}

#s-1306febf-da64-4f5b-9650-24a0cd4d019a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1306febf-da64-4f5b-9650-24a0cd4d019a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1306febf-da64-4f5b-9650-24a0cd4d019a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1306febf-da64-4f5b-9650-24a0cd4d019a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1306febf-da64-4f5b-9650-24a0cd4d019a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-1306febf-da64-4f5b-9650-24a0cd4d019a .shogun-image-content {
  
    justify-content: center;
  
}

.s-1306febf-da64-4f5b-9650-24a0cd4d019a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image {
  box-sizing: border-box;
}



.s-1306febf-da64-4f5b-9650-24a0cd4d019a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1306febf-da64-4f5b-9650-24a0cd4d019a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image-container {
      position: relative;
    }

    .s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1306febf-da64-4f5b-9650-24a0cd4d019a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-1306febf-da64-4f5b-9650-24a0cd4d019a {
  margin: 0 !important;
  overflow: visible;
}

#s-1306febf-da64-4f5b-9650-24a0cd4d019a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1306febf-da64-4f5b-9650-24a0cd4d019a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1306febf-da64-4f5b-9650-24a0cd4d019a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1306febf-da64-4f5b-9650-24a0cd4d019a img.shogun-image {
  /* Add background color handling */
  
}

#s-1306febf-da64-4f5b-9650-24a0cd4d019a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1306febf-da64-4f5b-9650-24a0cd4d019a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1306febf-da64-4f5b-9650-24a0cd4d019a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1306febf-da64-4f5b-9650-24a0cd4d019a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1306febf-da64-4f5b-9650-24a0cd4d019a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-1306febf-da64-4f5b-9650-24a0cd4d019a .shogun-image-content {
  
    justify-content: center;
  
}

.s-1306febf-da64-4f5b-9650-24a0cd4d019a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image {
  box-sizing: border-box;
}



.s-1306febf-da64-4f5b-9650-24a0cd4d019a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1306febf-da64-4f5b-9650-24a0cd4d019a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image-container {
      position: relative;
    }

    .s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1306febf-da64-4f5b-9650-24a0cd4d019a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1306febf-da64-4f5b-9650-24a0cd4d019a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 {
  margin: 0 !important;
  overflow: visible;
}

#s-b205f949-7f7f-4f2d-95c9-70da42acbbb9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 img.shogun-image {
  /* Add background color handling */
  
}

#s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image {
  box-sizing: border-box;
}



.s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image-container {
      position: relative;
    }

    .s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 {
  margin: 0 !important;
  overflow: visible;
}

#s-b205f949-7f7f-4f2d-95c9-70da42acbbb9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 img.shogun-image {
  /* Add background color handling */
  
}

#s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image {
  box-sizing: border-box;
}



.s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image-container {
      position: relative;
    }

    .s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 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-b205f949-7f7f-4f2d-95c9-70da42acbbb9 {
  margin: 0 !important;
  overflow: visible;
}

#s-b205f949-7f7f-4f2d-95c9-70da42acbbb9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 img.shogun-image {
  /* Add background color handling */
  
}

#s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image {
  box-sizing: border-box;
}



.s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image-container {
      position: relative;
    }

    .s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 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-b205f949-7f7f-4f2d-95c9-70da42acbbb9 {
  margin: 0 !important;
  overflow: visible;
}

#s-b205f949-7f7f-4f2d-95c9-70da42acbbb9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 img.shogun-image {
  /* Add background color handling */
  
}

#s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image {
  box-sizing: border-box;
}



.s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image-container {
      position: relative;
    }

    .s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 {
  margin: 0 !important;
  overflow: visible;
}

#s-b205f949-7f7f-4f2d-95c9-70da42acbbb9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 img.shogun-image {
  /* Add background color handling */
  
}

#s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image {
  box-sizing: border-box;
}



.s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image-container {
      position: relative;
    }

    .s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b205f949-7f7f-4f2d-95c9-70da42acbbb9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b205f949-7f7f-4f2d-95c9-70da42acbbb9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
@media (min-width: 0px) {
[id="s-408edca7-1546-4fb7-a71f-db4bce82640d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-408edca7-1546-4fb7-a71f-db4bce82640d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-408edca7-1546-4fb7-a71f-db4bce82640d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-408edca7-1546-4fb7-a71f-db4bce82640d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-7c41b124-386d-420c-a234-0b0ba3300c6d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7c41b124-386d-420c-a234-0b0ba3300c6d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7c41b124-386d-420c-a234-0b0ba3300c6d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7c41b124-386d-420c-a234-0b0ba3300c6d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7c41b124-386d-420c-a234-0b0ba3300c6d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7c41b124-386d-420c-a234-0b0ba3300c6d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7c41b124-386d-420c-a234-0b0ba3300c6d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-7a881801-c0e2-4298-b9f4-fcaedd1e42d0 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-7cd0ac87-b31b-4e4f-af7e-1e6e58f1dbdb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7cd0ac87-b31b-4e4f-af7e-1e6e58f1dbdb"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7cd0ac87-b31b-4e4f-af7e-1e6e58f1dbdb"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7cd0ac87-b31b-4e4f-af7e-1e6e58f1dbdb"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7cd0ac87-b31b-4e4f-af7e-1e6e58f1dbdb"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7cd0ac87-b31b-4e4f-af7e-1e6e58f1dbdb"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7cd0ac87-b31b-4e4f-af7e-1e6e58f1dbdb"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-1d7a254d-624f-434c-8af9-499e1978ad99 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-b1742bc1-5af1-4268-adea-4cc22b2bf66b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b1742bc1-5af1-4268-adea-4cc22b2bf66b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b1742bc1-5af1-4268-adea-4cc22b2bf66b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b1742bc1-5af1-4268-adea-4cc22b2bf66b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-b7e915bc-30fb-4eb1-b108-b019522bee35"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b7e915bc-30fb-4eb1-b108-b019522bee35"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b7e915bc-30fb-4eb1-b108-b019522bee35"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b7e915bc-30fb-4eb1-b108-b019522bee35"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b7e915bc-30fb-4eb1-b108-b019522bee35"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b7e915bc-30fb-4eb1-b108-b019522bee35"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b7e915bc-30fb-4eb1-b108-b019522bee35"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-d8aefa8e-5a86-4ad5-92c7-008138e41de2 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-05416b82-1e68-47e8-b3af-08f901afb7a8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-05416b82-1e68-47e8-b3af-08f901afb7a8"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-05416b82-1e68-47e8-b3af-08f901afb7a8"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-05416b82-1e68-47e8-b3af-08f901afb7a8"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-05416b82-1e68-47e8-b3af-08f901afb7a8"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-05416b82-1e68-47e8-b3af-08f901afb7a8"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-05416b82-1e68-47e8-b3af-08f901afb7a8"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-9c3e99a8-9c8d-4613-a376-3bfe9f488e25 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-6731450a-ed6d-431b-b207-248c84556ac9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6731450a-ed6d-431b-b207-248c84556ac9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6731450a-ed6d-431b-b207-248c84556ac9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6731450a-ed6d-431b-b207-248c84556ac9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-b6ec50fa-46bd-4ab5-9061-e302383b2447"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b6ec50fa-46bd-4ab5-9061-e302383b2447"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-b6ec50fa-46bd-4ab5-9061-e302383b2447"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b6ec50fa-46bd-4ab5-9061-e302383b2447"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-b6ec50fa-46bd-4ab5-9061-e302383b2447"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b6ec50fa-46bd-4ab5-9061-e302383b2447"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-b6ec50fa-46bd-4ab5-9061-e302383b2447"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-97edbbf2-b660-4c07-83b6-db8eca56b359 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-24571878-07aa-4569-88b2-5669d05ab5c2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-24571878-07aa-4569-88b2-5669d05ab5c2"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-24571878-07aa-4569-88b2-5669d05ab5c2"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-24571878-07aa-4569-88b2-5669d05ab5c2"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-24571878-07aa-4569-88b2-5669d05ab5c2"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-24571878-07aa-4569-88b2-5669d05ab5c2"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-24571878-07aa-4569-88b2-5669d05ab5c2"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-d44f6d1d-7c17-4070-9da0-1b122ad1b24a {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-9f27708f-0644-427b-aa9e-6243ddeacd16"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9f27708f-0644-427b-aa9e-6243ddeacd16"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9f27708f-0644-427b-aa9e-6243ddeacd16"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9f27708f-0644-427b-aa9e-6243ddeacd16"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-599623ae-0812-46f1-b91d-9b23f44625ab"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-599623ae-0812-46f1-b91d-9b23f44625ab"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-599623ae-0812-46f1-b91d-9b23f44625ab"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-599623ae-0812-46f1-b91d-9b23f44625ab"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-599623ae-0812-46f1-b91d-9b23f44625ab"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-599623ae-0812-46f1-b91d-9b23f44625ab"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-599623ae-0812-46f1-b91d-9b23f44625ab"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-6cd51578-b505-4d85-b242-09b17fa86ada {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-e454c7a1-a2bb-44b0-a9bd-ea13abf6d598"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e454c7a1-a2bb-44b0-a9bd-ea13abf6d598"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e454c7a1-a2bb-44b0-a9bd-ea13abf6d598"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e454c7a1-a2bb-44b0-a9bd-ea13abf6d598"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e454c7a1-a2bb-44b0-a9bd-ea13abf6d598"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e454c7a1-a2bb-44b0-a9bd-ea13abf6d598"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e454c7a1-a2bb-44b0-a9bd-ea13abf6d598"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-8b7a8c83-1763-41c7-b77a-e6bd59f2ecb0 {
  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: 9px;
margin-bottom: 9px;
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-b63eef8d-82f8-422e-bf9c-ceaf8e26a0b7"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-b63eef8d-82f8-422e-bf9c-ceaf8e26a0b7"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-b63eef8d-82f8-422e-bf9c-ceaf8e26a0b7"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-b63eef8d-82f8-422e-bf9c-ceaf8e26a0b7"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image {
  box-sizing: border-box;
}



.s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image-container {
      position: relative;
    }

    .s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image {
  box-sizing: border-box;
}



.s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image-container {
      position: relative;
    }

    .s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 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-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image {
  box-sizing: border-box;
}



.s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image-container {
      position: relative;
    }

    .s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 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-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image {
  box-sizing: border-box;
}



.s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image-container {
      position: relative;
    }

    .s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image {
  box-sizing: border-box;
}



.s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image-container {
      position: relative;
    }

    .s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-34ec2997-003c-4fe6-a8a1-f3ffb1ab44d0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-e3d602c8-cab5-4004-94e2-a7bde831e2fe {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-e3d602c8-cab5-4004-94e2-a7bde831e2fe {
  margin: 0 !important;
  overflow: visible;
}

#s-e3d602c8-cab5-4004-94e2-a7bde831e2fe-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e3d602c8-cab5-4004-94e2-a7bde831e2fe {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e3d602c8-cab5-4004-94e2-a7bde831e2fe {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e3d602c8-cab5-4004-94e2-a7bde831e2fe img.shogun-image {
  /* Add background color handling */
  
}

#s-e3d602c8-cab5-4004-94e2-a7bde831e2fe img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e3d602c8-cab5-4004-94e2-a7bde831e2fe .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e3d602c8-cab5-4004-94e2-a7bde831e2fe .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e3d602c8-cab5-4004-94e2-a7bde831e2fe .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e3d602c8-cab5-4004-94e2-a7bde831e2fe img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-e3d602c8-cab5-4004-94e2-a7bde831e2fe .shogun-image-content {
  
    justify-content: center;
  
}

.s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image {
  box-sizing: border-box;
}



.s-e3d602c8-cab5-4004-94e2-a7bde831e2fe img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e3d602c8-cab5-4004-94e2-a7bde831e2fe {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image-container {
      position: relative;
    }

    .s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e3d602c8-cab5-4004-94e2-a7bde831e2fe img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-e3d602c8-cab5-4004-94e2-a7bde831e2fe {
  margin: 0 !important;
  overflow: visible;
}

#s-e3d602c8-cab5-4004-94e2-a7bde831e2fe-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e3d602c8-cab5-4004-94e2-a7bde831e2fe {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e3d602c8-cab5-4004-94e2-a7bde831e2fe {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e3d602c8-cab5-4004-94e2-a7bde831e2fe img.shogun-image {
  /* Add background color handling */
  
}

#s-e3d602c8-cab5-4004-94e2-a7bde831e2fe img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e3d602c8-cab5-4004-94e2-a7bde831e2fe .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e3d602c8-cab5-4004-94e2-a7bde831e2fe .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e3d602c8-cab5-4004-94e2-a7bde831e2fe .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e3d602c8-cab5-4004-94e2-a7bde831e2fe img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-e3d602c8-cab5-4004-94e2-a7bde831e2fe .shogun-image-content {
  
    justify-content: center;
  
}

.s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image {
  box-sizing: border-box;
}



.s-e3d602c8-cab5-4004-94e2-a7bde831e2fe img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e3d602c8-cab5-4004-94e2-a7bde831e2fe {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image-container {
      position: relative;
    }

    .s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e3d602c8-cab5-4004-94e2-a7bde831e2fe 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-e3d602c8-cab5-4004-94e2-a7bde831e2fe {
  margin: 0 !important;
  overflow: visible;
}

#s-e3d602c8-cab5-4004-94e2-a7bde831e2fe-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e3d602c8-cab5-4004-94e2-a7bde831e2fe {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e3d602c8-cab5-4004-94e2-a7bde831e2fe {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e3d602c8-cab5-4004-94e2-a7bde831e2fe img.shogun-image {
  /* Add background color handling */
  
}

#s-e3d602c8-cab5-4004-94e2-a7bde831e2fe img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e3d602c8-cab5-4004-94e2-a7bde831e2fe .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e3d602c8-cab5-4004-94e2-a7bde831e2fe .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e3d602c8-cab5-4004-94e2-a7bde831e2fe .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e3d602c8-cab5-4004-94e2-a7bde831e2fe img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-e3d602c8-cab5-4004-94e2-a7bde831e2fe .shogun-image-content {
  
    justify-content: center;
  
}

.s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image {
  box-sizing: border-box;
}



.s-e3d602c8-cab5-4004-94e2-a7bde831e2fe img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e3d602c8-cab5-4004-94e2-a7bde831e2fe {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image-container {
      position: relative;
    }

    .s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e3d602c8-cab5-4004-94e2-a7bde831e2fe 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-e3d602c8-cab5-4004-94e2-a7bde831e2fe {
  margin: 0 !important;
  overflow: visible;
}

#s-e3d602c8-cab5-4004-94e2-a7bde831e2fe-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e3d602c8-cab5-4004-94e2-a7bde831e2fe {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e3d602c8-cab5-4004-94e2-a7bde831e2fe {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e3d602c8-cab5-4004-94e2-a7bde831e2fe img.shogun-image {
  /* Add background color handling */
  
}

#s-e3d602c8-cab5-4004-94e2-a7bde831e2fe img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e3d602c8-cab5-4004-94e2-a7bde831e2fe .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e3d602c8-cab5-4004-94e2-a7bde831e2fe .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e3d602c8-cab5-4004-94e2-a7bde831e2fe .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e3d602c8-cab5-4004-94e2-a7bde831e2fe img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-e3d602c8-cab5-4004-94e2-a7bde831e2fe .shogun-image-content {
  
    justify-content: center;
  
}

.s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image {
  box-sizing: border-box;
}



.s-e3d602c8-cab5-4004-94e2-a7bde831e2fe img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e3d602c8-cab5-4004-94e2-a7bde831e2fe {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image-container {
      position: relative;
    }

    .s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e3d602c8-cab5-4004-94e2-a7bde831e2fe img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-e3d602c8-cab5-4004-94e2-a7bde831e2fe {
  margin: 0 !important;
  overflow: visible;
}

#s-e3d602c8-cab5-4004-94e2-a7bde831e2fe-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e3d602c8-cab5-4004-94e2-a7bde831e2fe {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e3d602c8-cab5-4004-94e2-a7bde831e2fe {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e3d602c8-cab5-4004-94e2-a7bde831e2fe img.shogun-image {
  /* Add background color handling */
  
}

#s-e3d602c8-cab5-4004-94e2-a7bde831e2fe img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e3d602c8-cab5-4004-94e2-a7bde831e2fe .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e3d602c8-cab5-4004-94e2-a7bde831e2fe .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e3d602c8-cab5-4004-94e2-a7bde831e2fe .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e3d602c8-cab5-4004-94e2-a7bde831e2fe img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-e3d602c8-cab5-4004-94e2-a7bde831e2fe .shogun-image-content {
  
    justify-content: center;
  
}

.s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image {
  box-sizing: border-box;
}



.s-e3d602c8-cab5-4004-94e2-a7bde831e2fe img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e3d602c8-cab5-4004-94e2-a7bde831e2fe {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image-container {
      position: relative;
    }

    .s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e3d602c8-cab5-4004-94e2-a7bde831e2fe.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e3d602c8-cab5-4004-94e2-a7bde831e2fe img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-e01e6e9d-bbbb-4618-8557-ac508c686957 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-e01e6e9d-bbbb-4618-8557-ac508c686957 {
  margin: 0 !important;
  overflow: visible;
}

#s-e01e6e9d-bbbb-4618-8557-ac508c686957-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e01e6e9d-bbbb-4618-8557-ac508c686957 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e01e6e9d-bbbb-4618-8557-ac508c686957 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e01e6e9d-bbbb-4618-8557-ac508c686957 img.shogun-image {
  /* Add background color handling */
  
}

#s-e01e6e9d-bbbb-4618-8557-ac508c686957 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e01e6e9d-bbbb-4618-8557-ac508c686957 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e01e6e9d-bbbb-4618-8557-ac508c686957 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e01e6e9d-bbbb-4618-8557-ac508c686957 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e01e6e9d-bbbb-4618-8557-ac508c686957 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-e01e6e9d-bbbb-4618-8557-ac508c686957 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e01e6e9d-bbbb-4618-8557-ac508c686957.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image {
  box-sizing: border-box;
}



.s-e01e6e9d-bbbb-4618-8557-ac508c686957 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e01e6e9d-bbbb-4618-8557-ac508c686957 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image-container {
      position: relative;
    }

    .s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e01e6e9d-bbbb-4618-8557-ac508c686957 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-e01e6e9d-bbbb-4618-8557-ac508c686957 {
  margin: 0 !important;
  overflow: visible;
}

#s-e01e6e9d-bbbb-4618-8557-ac508c686957-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e01e6e9d-bbbb-4618-8557-ac508c686957 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e01e6e9d-bbbb-4618-8557-ac508c686957 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e01e6e9d-bbbb-4618-8557-ac508c686957 img.shogun-image {
  /* Add background color handling */
  
}

#s-e01e6e9d-bbbb-4618-8557-ac508c686957 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e01e6e9d-bbbb-4618-8557-ac508c686957 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e01e6e9d-bbbb-4618-8557-ac508c686957 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e01e6e9d-bbbb-4618-8557-ac508c686957 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e01e6e9d-bbbb-4618-8557-ac508c686957 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-e01e6e9d-bbbb-4618-8557-ac508c686957 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e01e6e9d-bbbb-4618-8557-ac508c686957.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image {
  box-sizing: border-box;
}



.s-e01e6e9d-bbbb-4618-8557-ac508c686957 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e01e6e9d-bbbb-4618-8557-ac508c686957 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image-container {
      position: relative;
    }

    .s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e01e6e9d-bbbb-4618-8557-ac508c686957 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-e01e6e9d-bbbb-4618-8557-ac508c686957 {
  margin: 0 !important;
  overflow: visible;
}

#s-e01e6e9d-bbbb-4618-8557-ac508c686957-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e01e6e9d-bbbb-4618-8557-ac508c686957 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e01e6e9d-bbbb-4618-8557-ac508c686957 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e01e6e9d-bbbb-4618-8557-ac508c686957 img.shogun-image {
  /* Add background color handling */
  
}

#s-e01e6e9d-bbbb-4618-8557-ac508c686957 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e01e6e9d-bbbb-4618-8557-ac508c686957 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e01e6e9d-bbbb-4618-8557-ac508c686957 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e01e6e9d-bbbb-4618-8557-ac508c686957 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e01e6e9d-bbbb-4618-8557-ac508c686957 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-e01e6e9d-bbbb-4618-8557-ac508c686957 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e01e6e9d-bbbb-4618-8557-ac508c686957.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image {
  box-sizing: border-box;
}



.s-e01e6e9d-bbbb-4618-8557-ac508c686957 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e01e6e9d-bbbb-4618-8557-ac508c686957 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image-container {
      position: relative;
    }

    .s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e01e6e9d-bbbb-4618-8557-ac508c686957 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-e01e6e9d-bbbb-4618-8557-ac508c686957 {
  margin: 0 !important;
  overflow: visible;
}

#s-e01e6e9d-bbbb-4618-8557-ac508c686957-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e01e6e9d-bbbb-4618-8557-ac508c686957 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e01e6e9d-bbbb-4618-8557-ac508c686957 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e01e6e9d-bbbb-4618-8557-ac508c686957 img.shogun-image {
  /* Add background color handling */
  
}

#s-e01e6e9d-bbbb-4618-8557-ac508c686957 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e01e6e9d-bbbb-4618-8557-ac508c686957 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e01e6e9d-bbbb-4618-8557-ac508c686957 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e01e6e9d-bbbb-4618-8557-ac508c686957 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e01e6e9d-bbbb-4618-8557-ac508c686957 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-e01e6e9d-bbbb-4618-8557-ac508c686957 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e01e6e9d-bbbb-4618-8557-ac508c686957.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image {
  box-sizing: border-box;
}



.s-e01e6e9d-bbbb-4618-8557-ac508c686957 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e01e6e9d-bbbb-4618-8557-ac508c686957 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image-container {
      position: relative;
    }

    .s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e01e6e9d-bbbb-4618-8557-ac508c686957 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-e01e6e9d-bbbb-4618-8557-ac508c686957 {
  margin: 0 !important;
  overflow: visible;
}

#s-e01e6e9d-bbbb-4618-8557-ac508c686957-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e01e6e9d-bbbb-4618-8557-ac508c686957 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e01e6e9d-bbbb-4618-8557-ac508c686957 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e01e6e9d-bbbb-4618-8557-ac508c686957 img.shogun-image {
  /* Add background color handling */
  
}

#s-e01e6e9d-bbbb-4618-8557-ac508c686957 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e01e6e9d-bbbb-4618-8557-ac508c686957 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e01e6e9d-bbbb-4618-8557-ac508c686957 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e01e6e9d-bbbb-4618-8557-ac508c686957 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e01e6e9d-bbbb-4618-8557-ac508c686957 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-e01e6e9d-bbbb-4618-8557-ac508c686957 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e01e6e9d-bbbb-4618-8557-ac508c686957.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image {
  box-sizing: border-box;
}



.s-e01e6e9d-bbbb-4618-8557-ac508c686957 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e01e6e9d-bbbb-4618-8557-ac508c686957 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image-container {
      position: relative;
    }

    .s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e01e6e9d-bbbb-4618-8557-ac508c686957.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e01e6e9d-bbbb-4618-8557-ac508c686957 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-3e547e56-735f-4644-b57f-624a978e9bd0 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-3e547e56-735f-4644-b57f-624a978e9bd0 {
  margin: 0 !important;
  overflow: visible;
}

#s-3e547e56-735f-4644-b57f-624a978e9bd0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e547e56-735f-4644-b57f-624a978e9bd0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3e547e56-735f-4644-b57f-624a978e9bd0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e547e56-735f-4644-b57f-624a978e9bd0 img.shogun-image {
  /* Add background color handling */
  
}

#s-3e547e56-735f-4644-b57f-624a978e9bd0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3e547e56-735f-4644-b57f-624a978e9bd0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3e547e56-735f-4644-b57f-624a978e9bd0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3e547e56-735f-4644-b57f-624a978e9bd0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3e547e56-735f-4644-b57f-624a978e9bd0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-3e547e56-735f-4644-b57f-624a978e9bd0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e547e56-735f-4644-b57f-624a978e9bd0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image {
  box-sizing: border-box;
}



.s-3e547e56-735f-4644-b57f-624a978e9bd0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3e547e56-735f-4644-b57f-624a978e9bd0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image-container {
      position: relative;
    }

    .s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e547e56-735f-4644-b57f-624a978e9bd0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-3e547e56-735f-4644-b57f-624a978e9bd0 {
  margin: 0 !important;
  overflow: visible;
}

#s-3e547e56-735f-4644-b57f-624a978e9bd0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e547e56-735f-4644-b57f-624a978e9bd0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3e547e56-735f-4644-b57f-624a978e9bd0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e547e56-735f-4644-b57f-624a978e9bd0 img.shogun-image {
  /* Add background color handling */
  
}

#s-3e547e56-735f-4644-b57f-624a978e9bd0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3e547e56-735f-4644-b57f-624a978e9bd0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3e547e56-735f-4644-b57f-624a978e9bd0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3e547e56-735f-4644-b57f-624a978e9bd0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3e547e56-735f-4644-b57f-624a978e9bd0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-3e547e56-735f-4644-b57f-624a978e9bd0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e547e56-735f-4644-b57f-624a978e9bd0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image {
  box-sizing: border-box;
}



.s-3e547e56-735f-4644-b57f-624a978e9bd0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3e547e56-735f-4644-b57f-624a978e9bd0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image-container {
      position: relative;
    }

    .s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e547e56-735f-4644-b57f-624a978e9bd0 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-3e547e56-735f-4644-b57f-624a978e9bd0 {
  margin: 0 !important;
  overflow: visible;
}

#s-3e547e56-735f-4644-b57f-624a978e9bd0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e547e56-735f-4644-b57f-624a978e9bd0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3e547e56-735f-4644-b57f-624a978e9bd0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e547e56-735f-4644-b57f-624a978e9bd0 img.shogun-image {
  /* Add background color handling */
  
}

#s-3e547e56-735f-4644-b57f-624a978e9bd0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3e547e56-735f-4644-b57f-624a978e9bd0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3e547e56-735f-4644-b57f-624a978e9bd0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3e547e56-735f-4644-b57f-624a978e9bd0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3e547e56-735f-4644-b57f-624a978e9bd0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-3e547e56-735f-4644-b57f-624a978e9bd0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e547e56-735f-4644-b57f-624a978e9bd0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image {
  box-sizing: border-box;
}



.s-3e547e56-735f-4644-b57f-624a978e9bd0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3e547e56-735f-4644-b57f-624a978e9bd0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image-container {
      position: relative;
    }

    .s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e547e56-735f-4644-b57f-624a978e9bd0 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-3e547e56-735f-4644-b57f-624a978e9bd0 {
  margin: 0 !important;
  overflow: visible;
}

#s-3e547e56-735f-4644-b57f-624a978e9bd0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e547e56-735f-4644-b57f-624a978e9bd0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3e547e56-735f-4644-b57f-624a978e9bd0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e547e56-735f-4644-b57f-624a978e9bd0 img.shogun-image {
  /* Add background color handling */
  
}

#s-3e547e56-735f-4644-b57f-624a978e9bd0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3e547e56-735f-4644-b57f-624a978e9bd0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3e547e56-735f-4644-b57f-624a978e9bd0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3e547e56-735f-4644-b57f-624a978e9bd0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3e547e56-735f-4644-b57f-624a978e9bd0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-3e547e56-735f-4644-b57f-624a978e9bd0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e547e56-735f-4644-b57f-624a978e9bd0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image {
  box-sizing: border-box;
}



.s-3e547e56-735f-4644-b57f-624a978e9bd0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3e547e56-735f-4644-b57f-624a978e9bd0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image-container {
      position: relative;
    }

    .s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e547e56-735f-4644-b57f-624a978e9bd0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-3e547e56-735f-4644-b57f-624a978e9bd0 {
  margin: 0 !important;
  overflow: visible;
}

#s-3e547e56-735f-4644-b57f-624a978e9bd0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e547e56-735f-4644-b57f-624a978e9bd0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3e547e56-735f-4644-b57f-624a978e9bd0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e547e56-735f-4644-b57f-624a978e9bd0 img.shogun-image {
  /* Add background color handling */
  
}

#s-3e547e56-735f-4644-b57f-624a978e9bd0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3e547e56-735f-4644-b57f-624a978e9bd0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3e547e56-735f-4644-b57f-624a978e9bd0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3e547e56-735f-4644-b57f-624a978e9bd0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3e547e56-735f-4644-b57f-624a978e9bd0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-3e547e56-735f-4644-b57f-624a978e9bd0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e547e56-735f-4644-b57f-624a978e9bd0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image {
  box-sizing: border-box;
}



.s-3e547e56-735f-4644-b57f-624a978e9bd0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3e547e56-735f-4644-b57f-624a978e9bd0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image-container {
      position: relative;
    }

    .s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e547e56-735f-4644-b57f-624a978e9bd0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e547e56-735f-4644-b57f-624a978e9bd0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
@media (min-width: 0px) {
[id="s-970a4114-22c4-45c0-9d17-74d856f11f39"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-970a4114-22c4-45c0-9d17-74d856f11f39"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-970a4114-22c4-45c0-9d17-74d856f11f39"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-970a4114-22c4-45c0-9d17-74d856f11f39"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-fd783f32-b723-492e-9fb2-729f2a57a611"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fd783f32-b723-492e-9fb2-729f2a57a611"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-fd783f32-b723-492e-9fb2-729f2a57a611"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-fd783f32-b723-492e-9fb2-729f2a57a611"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-fd783f32-b723-492e-9fb2-729f2a57a611"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-fd783f32-b723-492e-9fb2-729f2a57a611"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-fd783f32-b723-492e-9fb2-729f2a57a611"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-c2c56048-35d6-4f41-ae16-81c9edcc4370 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-bd0d6bc8-35c7-41e0-8a15-315d55323db4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bd0d6bc8-35c7-41e0-8a15-315d55323db4"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-bd0d6bc8-35c7-41e0-8a15-315d55323db4"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-bd0d6bc8-35c7-41e0-8a15-315d55323db4"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-bd0d6bc8-35c7-41e0-8a15-315d55323db4"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-bd0d6bc8-35c7-41e0-8a15-315d55323db4"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-bd0d6bc8-35c7-41e0-8a15-315d55323db4"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-032b50e6-9e5d-4ed0-bf76-49a924d3b78f {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-d978135e-e474-4be8-8a5a-c699a562aec3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d978135e-e474-4be8-8a5a-c699a562aec3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d978135e-e474-4be8-8a5a-c699a562aec3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d978135e-e474-4be8-8a5a-c699a562aec3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-e0a65b11-4820-407a-853e-7f70415b03d4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e0a65b11-4820-407a-853e-7f70415b03d4"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e0a65b11-4820-407a-853e-7f70415b03d4"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e0a65b11-4820-407a-853e-7f70415b03d4"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e0a65b11-4820-407a-853e-7f70415b03d4"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e0a65b11-4820-407a-853e-7f70415b03d4"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e0a65b11-4820-407a-853e-7f70415b03d4"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-f7976b35-df4d-412d-b9bb-e9f89aa7cf94 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-a58e7ef1-bc8f-45a5-a423-20b06756301e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a58e7ef1-bc8f-45a5-a423-20b06756301e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a58e7ef1-bc8f-45a5-a423-20b06756301e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a58e7ef1-bc8f-45a5-a423-20b06756301e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a58e7ef1-bc8f-45a5-a423-20b06756301e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a58e7ef1-bc8f-45a5-a423-20b06756301e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a58e7ef1-bc8f-45a5-a423-20b06756301e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-ba22f4f2-9db0-4892-bbab-d7baa4dec1e1 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-4d2d9589-ac27-46f2-9011-2d767f24e20c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4d2d9589-ac27-46f2-9011-2d767f24e20c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4d2d9589-ac27-46f2-9011-2d767f24e20c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4d2d9589-ac27-46f2-9011-2d767f24e20c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-0db6cf89-3b2a-414d-b2ef-2697329ec1f5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0db6cf89-3b2a-414d-b2ef-2697329ec1f5"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-0db6cf89-3b2a-414d-b2ef-2697329ec1f5"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0db6cf89-3b2a-414d-b2ef-2697329ec1f5"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-0db6cf89-3b2a-414d-b2ef-2697329ec1f5"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0db6cf89-3b2a-414d-b2ef-2697329ec1f5"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-0db6cf89-3b2a-414d-b2ef-2697329ec1f5"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-2c1c181d-c167-48fa-98d6-927b66881315 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-37bc9dfe-4a5f-41a8-bf8d-2d57649a4ddc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-37bc9dfe-4a5f-41a8-bf8d-2d57649a4ddc"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-37bc9dfe-4a5f-41a8-bf8d-2d57649a4ddc"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-37bc9dfe-4a5f-41a8-bf8d-2d57649a4ddc"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-37bc9dfe-4a5f-41a8-bf8d-2d57649a4ddc"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-37bc9dfe-4a5f-41a8-bf8d-2d57649a4ddc"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-37bc9dfe-4a5f-41a8-bf8d-2d57649a4ddc"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-21a14d20-75d8-40f4-9aa1-3a70e6c1ce1d {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-0e042639-08a0-411b-a5cc-2040d56ad54d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0e042639-08a0-411b-a5cc-2040d56ad54d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0e042639-08a0-411b-a5cc-2040d56ad54d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0e042639-08a0-411b-a5cc-2040d56ad54d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-c64c5316-d16c-4adf-9947-8d744f540696"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c64c5316-d16c-4adf-9947-8d744f540696"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c64c5316-d16c-4adf-9947-8d744f540696"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c64c5316-d16c-4adf-9947-8d744f540696"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c64c5316-d16c-4adf-9947-8d744f540696"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c64c5316-d16c-4adf-9947-8d744f540696"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c64c5316-d16c-4adf-9947-8d744f540696"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-ad9348db-c087-41db-8f35-3b7eb87f4b3d {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-3346f5a5-98ac-42c1-aa5c-fcb0c151193d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3346f5a5-98ac-42c1-aa5c-fcb0c151193d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3346f5a5-98ac-42c1-aa5c-fcb0c151193d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3346f5a5-98ac-42c1-aa5c-fcb0c151193d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3346f5a5-98ac-42c1-aa5c-fcb0c151193d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3346f5a5-98ac-42c1-aa5c-fcb0c151193d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3346f5a5-98ac-42c1-aa5c-fcb0c151193d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-c94232ac-594e-4408-b60d-c5291f378f80 {
  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-46bafd25-3470-4a59-bc3b-a22c2e0465c9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-46bafd25-3470-4a59-bc3b-a22c2e0465c9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-46bafd25-3470-4a59-bc3b-a22c2e0465c9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-46bafd25-3470-4a59-bc3b-a22c2e0465c9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-573c3be7-2a23-435f-acf6-50d15a1c4f39"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-573c3be7-2a23-435f-acf6-50d15a1c4f39"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-573c3be7-2a23-435f-acf6-50d15a1c4f39"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-573c3be7-2a23-435f-acf6-50d15a1c4f39"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-573c3be7-2a23-435f-acf6-50d15a1c4f39"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-573c3be7-2a23-435f-acf6-50d15a1c4f39"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-573c3be7-2a23-435f-acf6-50d15a1c4f39"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-0623acfb-66a9-470a-a8bd-e8053581a620 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-6d1fb226-3922-4d28-bf2c-ddbaadbd8e73"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6d1fb226-3922-4d28-bf2c-ddbaadbd8e73"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6d1fb226-3922-4d28-bf2c-ddbaadbd8e73"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6d1fb226-3922-4d28-bf2c-ddbaadbd8e73"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6d1fb226-3922-4d28-bf2c-ddbaadbd8e73"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6d1fb226-3922-4d28-bf2c-ddbaadbd8e73"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6d1fb226-3922-4d28-bf2c-ddbaadbd8e73"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-fbb4de0c-25c4-4951-a39d-8d2cde34f945 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-05c969b4-6be3-4e7e-ac3d-3c0e3ad1933b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-05c969b4-6be3-4e7e-ac3d-3c0e3ad1933b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-05c969b4-6be3-4e7e-ac3d-3c0e3ad1933b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-05c969b4-6be3-4e7e-ac3d-3c0e3ad1933b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-94b88656-d32f-4174-9d32-06abd8b8259e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-94b88656-d32f-4174-9d32-06abd8b8259e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-94b88656-d32f-4174-9d32-06abd8b8259e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-94b88656-d32f-4174-9d32-06abd8b8259e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-94b88656-d32f-4174-9d32-06abd8b8259e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-94b88656-d32f-4174-9d32-06abd8b8259e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-94b88656-d32f-4174-9d32-06abd8b8259e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-92b0f448-f3f0-425e-9a5c-a8e001e8050b {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-aa1fbf55-6a14-410d-b128-c6f072211aa6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-aa1fbf55-6a14-410d-b128-c6f072211aa6"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-aa1fbf55-6a14-410d-b128-c6f072211aa6"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-aa1fbf55-6a14-410d-b128-c6f072211aa6"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-aa1fbf55-6a14-410d-b128-c6f072211aa6"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-aa1fbf55-6a14-410d-b128-c6f072211aa6"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-aa1fbf55-6a14-410d-b128-c6f072211aa6"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-fe049427-494c-4368-8828-7abafe7334f8 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-4a469799-ee3f-46ad-812b-6900bdcf552b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4a469799-ee3f-46ad-812b-6900bdcf552b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4a469799-ee3f-46ad-812b-6900bdcf552b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4a469799-ee3f-46ad-812b-6900bdcf552b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-3306d054-6d11-4663-b44f-15be0d609328"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3306d054-6d11-4663-b44f-15be0d609328"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-3306d054-6d11-4663-b44f-15be0d609328"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3306d054-6d11-4663-b44f-15be0d609328"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-3306d054-6d11-4663-b44f-15be0d609328"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3306d054-6d11-4663-b44f-15be0d609328"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-3306d054-6d11-4663-b44f-15be0d609328"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-d6f065c7-4d70-4b5f-94c4-613a7fb187fc {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-31423d55-4c67-4fbc-bbfe-16d8cc481a9e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-31423d55-4c67-4fbc-bbfe-16d8cc481a9e"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-31423d55-4c67-4fbc-bbfe-16d8cc481a9e"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-31423d55-4c67-4fbc-bbfe-16d8cc481a9e"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-31423d55-4c67-4fbc-bbfe-16d8cc481a9e"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-31423d55-4c67-4fbc-bbfe-16d8cc481a9e"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-31423d55-4c67-4fbc-bbfe-16d8cc481a9e"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-fa00347b-bb9f-4d69-9e90-f79cf0be9420 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-2e02ed4d-abc1-4616-a898-6910b325ccfb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2e02ed4d-abc1-4616-a898-6910b325ccfb"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2e02ed4d-abc1-4616-a898-6910b325ccfb"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2e02ed4d-abc1-4616-a898-6910b325ccfb"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-513fc10f-6e12-4d89-b2f0-133cd61a3f50"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-513fc10f-6e12-4d89-b2f0-133cd61a3f50"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-513fc10f-6e12-4d89-b2f0-133cd61a3f50"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-513fc10f-6e12-4d89-b2f0-133cd61a3f50"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-513fc10f-6e12-4d89-b2f0-133cd61a3f50"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-513fc10f-6e12-4d89-b2f0-133cd61a3f50"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-513fc10f-6e12-4d89-b2f0-133cd61a3f50"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-f32be862-8f0d-49f7-a73c-c1d1a5fc7eda {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-a2b15cd0-ae52-4a9c-bd3b-260a76f37248"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a2b15cd0-ae52-4a9c-bd3b-260a76f37248"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a2b15cd0-ae52-4a9c-bd3b-260a76f37248"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a2b15cd0-ae52-4a9c-bd3b-260a76f37248"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a2b15cd0-ae52-4a9c-bd3b-260a76f37248"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a2b15cd0-ae52-4a9c-bd3b-260a76f37248"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a2b15cd0-ae52-4a9c-bd3b-260a76f37248"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-db77f78d-3b3f-4fab-9538-851b7bef469c {
  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-589b36d7-0d8a-4296-8b38-52cc0bc6d79c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-589b36d7-0d8a-4296-8b38-52cc0bc6d79c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-589b36d7-0d8a-4296-8b38-52cc0bc6d79c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-589b36d7-0d8a-4296-8b38-52cc0bc6d79c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-ab1742aa-8dfd-45e9-adc6-9c2c44fc9993"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ab1742aa-8dfd-45e9-adc6-9c2c44fc9993"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ab1742aa-8dfd-45e9-adc6-9c2c44fc9993"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ab1742aa-8dfd-45e9-adc6-9c2c44fc9993"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ab1742aa-8dfd-45e9-adc6-9c2c44fc9993"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ab1742aa-8dfd-45e9-adc6-9c2c44fc9993"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ab1742aa-8dfd-45e9-adc6-9c2c44fc9993"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-3c8d2649-e471-4f0f-b180-d01401db134c {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-951019c2-a548-49db-bc92-3b66f740698b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-951019c2-a548-49db-bc92-3b66f740698b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-951019c2-a548-49db-bc92-3b66f740698b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-951019c2-a548-49db-bc92-3b66f740698b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-951019c2-a548-49db-bc92-3b66f740698b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-951019c2-a548-49db-bc92-3b66f740698b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-951019c2-a548-49db-bc92-3b66f740698b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-18c1b943-cfd4-430f-a767-41880a2ad140 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-a5e98948-530a-462e-9a3f-599cfe532427"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a5e98948-530a-462e-9a3f-599cfe532427"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a5e98948-530a-462e-9a3f-599cfe532427"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a5e98948-530a-462e-9a3f-599cfe532427"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-5e1d1263-9bc8-4797-a5ee-23228302e5b9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5e1d1263-9bc8-4797-a5ee-23228302e5b9"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5e1d1263-9bc8-4797-a5ee-23228302e5b9"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5e1d1263-9bc8-4797-a5ee-23228302e5b9"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5e1d1263-9bc8-4797-a5ee-23228302e5b9"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5e1d1263-9bc8-4797-a5ee-23228302e5b9"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5e1d1263-9bc8-4797-a5ee-23228302e5b9"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-b27122d6-7bee-4b62-952d-91a1d17d46b9 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-bcb2a5e2-0184-4352-a10f-5d0670baaa2f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bcb2a5e2-0184-4352-a10f-5d0670baaa2f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-bcb2a5e2-0184-4352-a10f-5d0670baaa2f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-bcb2a5e2-0184-4352-a10f-5d0670baaa2f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-bcb2a5e2-0184-4352-a10f-5d0670baaa2f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-bcb2a5e2-0184-4352-a10f-5d0670baaa2f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-bcb2a5e2-0184-4352-a10f-5d0670baaa2f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-ac1775e8-dbb2-4fb6-9132-dcd02e231d14 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-c03d6ab8-b27b-4b45-b8aa-14898d03aed8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c03d6ab8-b27b-4b45-b8aa-14898d03aed8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c03d6ab8-b27b-4b45-b8aa-14898d03aed8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c03d6ab8-b27b-4b45-b8aa-14898d03aed8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-a23dd365-a994-40e2-8f4c-bd0fe7c291c2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a23dd365-a994-40e2-8f4c-bd0fe7c291c2"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-a23dd365-a994-40e2-8f4c-bd0fe7c291c2"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a23dd365-a994-40e2-8f4c-bd0fe7c291c2"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-a23dd365-a994-40e2-8f4c-bd0fe7c291c2"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a23dd365-a994-40e2-8f4c-bd0fe7c291c2"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-a23dd365-a994-40e2-8f4c-bd0fe7c291c2"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-784a68c0-a8bb-43f0-b83b-cb25e7e9b132 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-fb805537-9141-4524-8bbf-1a4219906ae5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fb805537-9141-4524-8bbf-1a4219906ae5"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-fb805537-9141-4524-8bbf-1a4219906ae5"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-fb805537-9141-4524-8bbf-1a4219906ae5"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-fb805537-9141-4524-8bbf-1a4219906ae5"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-fb805537-9141-4524-8bbf-1a4219906ae5"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-fb805537-9141-4524-8bbf-1a4219906ae5"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-1d23f7cc-0028-4b8d-afe6-eec17d36d571 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-ff189bb9-386e-4eed-bbd2-a4e7ef37e7bc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ff189bb9-386e-4eed-bbd2-a4e7ef37e7bc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ff189bb9-386e-4eed-bbd2-a4e7ef37e7bc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ff189bb9-386e-4eed-bbd2-a4e7ef37e7bc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-5f4464a9-c758-446a-b005-0709ee86c06d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5f4464a9-c758-446a-b005-0709ee86c06d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5f4464a9-c758-446a-b005-0709ee86c06d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5f4464a9-c758-446a-b005-0709ee86c06d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5f4464a9-c758-446a-b005-0709ee86c06d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5f4464a9-c758-446a-b005-0709ee86c06d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5f4464a9-c758-446a-b005-0709ee86c06d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-ca873e34-9d5f-4508-b9ae-6a888d31759d {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-47dbad1e-d08b-4665-bf23-607cef313c01"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-47dbad1e-d08b-4665-bf23-607cef313c01"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-47dbad1e-d08b-4665-bf23-607cef313c01"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-47dbad1e-d08b-4665-bf23-607cef313c01"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-47dbad1e-d08b-4665-bf23-607cef313c01"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-47dbad1e-d08b-4665-bf23-607cef313c01"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-47dbad1e-d08b-4665-bf23-607cef313c01"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-325df0f3-2a26-444d-805d-9b002bda6067 {
  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-b2500d37-e870-40ea-888b-4f278646264d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b2500d37-e870-40ea-888b-4f278646264d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b2500d37-e870-40ea-888b-4f278646264d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b2500d37-e870-40ea-888b-4f278646264d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-c74e3b83-48c1-41b8-9595-ff7225761501"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c74e3b83-48c1-41b8-9595-ff7225761501"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c74e3b83-48c1-41b8-9595-ff7225761501"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c74e3b83-48c1-41b8-9595-ff7225761501"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c74e3b83-48c1-41b8-9595-ff7225761501"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c74e3b83-48c1-41b8-9595-ff7225761501"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c74e3b83-48c1-41b8-9595-ff7225761501"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-2a5f4cd4-b7f5-4f4c-9d0e-2ad70e408939 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-94f826ab-cd7e-4ee5-96c6-ffc90b6e4acd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-94f826ab-cd7e-4ee5-96c6-ffc90b6e4acd"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-94f826ab-cd7e-4ee5-96c6-ffc90b6e4acd"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-94f826ab-cd7e-4ee5-96c6-ffc90b6e4acd"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-94f826ab-cd7e-4ee5-96c6-ffc90b6e4acd"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-94f826ab-cd7e-4ee5-96c6-ffc90b6e4acd"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-94f826ab-cd7e-4ee5-96c6-ffc90b6e4acd"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-51d27926-1fc4-4fa7-96db-42f4d0a462f9 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-7bfc6bf8-6729-46e6-8a28-f035ddd6ca40"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7bfc6bf8-6729-46e6-8a28-f035ddd6ca40"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7bfc6bf8-6729-46e6-8a28-f035ddd6ca40"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7bfc6bf8-6729-46e6-8a28-f035ddd6ca40"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-e29be98c-c7d0-4d81-bdff-594de65dccb9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e29be98c-c7d0-4d81-bdff-594de65dccb9"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e29be98c-c7d0-4d81-bdff-594de65dccb9"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e29be98c-c7d0-4d81-bdff-594de65dccb9"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e29be98c-c7d0-4d81-bdff-594de65dccb9"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e29be98c-c7d0-4d81-bdff-594de65dccb9"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e29be98c-c7d0-4d81-bdff-594de65dccb9"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-f9d8904d-026d-498c-97da-065d0cc59584 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-cc3b1771-29a9-4f62-bba2-7e526731e19f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cc3b1771-29a9-4f62-bba2-7e526731e19f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-cc3b1771-29a9-4f62-bba2-7e526731e19f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-cc3b1771-29a9-4f62-bba2-7e526731e19f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-cc3b1771-29a9-4f62-bba2-7e526731e19f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-cc3b1771-29a9-4f62-bba2-7e526731e19f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-cc3b1771-29a9-4f62-bba2-7e526731e19f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-a3856d75-7ade-4db8-9ef4-07780551692c {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-10fb8c7b-cc6c-4da6-83c7-bd821442ed04"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-10fb8c7b-cc6c-4da6-83c7-bd821442ed04"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-10fb8c7b-cc6c-4da6-83c7-bd821442ed04"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-10fb8c7b-cc6c-4da6-83c7-bd821442ed04"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-707639a1-fc47-4a7c-86dd-ba084758282b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-707639a1-fc47-4a7c-86dd-ba084758282b"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-707639a1-fc47-4a7c-86dd-ba084758282b"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-707639a1-fc47-4a7c-86dd-ba084758282b"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-707639a1-fc47-4a7c-86dd-ba084758282b"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-707639a1-fc47-4a7c-86dd-ba084758282b"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-707639a1-fc47-4a7c-86dd-ba084758282b"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-ae397b23-a7a7-4bb8-87e7-47864197dfc0 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-3eff866d-a71a-48bb-9317-303de2566898"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3eff866d-a71a-48bb-9317-303de2566898"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-3eff866d-a71a-48bb-9317-303de2566898"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3eff866d-a71a-48bb-9317-303de2566898"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-3eff866d-a71a-48bb-9317-303de2566898"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3eff866d-a71a-48bb-9317-303de2566898"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-3eff866d-a71a-48bb-9317-303de2566898"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-424fda7c-ec31-43d5-84ca-87cd998086dd {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-68f1e61a-69a8-4dd9-b6d1-f44d5ceb60b7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-68f1e61a-69a8-4dd9-b6d1-f44d5ceb60b7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-68f1e61a-69a8-4dd9-b6d1-f44d5ceb60b7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-68f1e61a-69a8-4dd9-b6d1-f44d5ceb60b7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-65dceba3-92ea-4a07-8e5d-b977fdfc7c3b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-65dceba3-92ea-4a07-8e5d-b977fdfc7c3b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-65dceba3-92ea-4a07-8e5d-b977fdfc7c3b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-65dceba3-92ea-4a07-8e5d-b977fdfc7c3b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-65dceba3-92ea-4a07-8e5d-b977fdfc7c3b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-65dceba3-92ea-4a07-8e5d-b977fdfc7c3b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-65dceba3-92ea-4a07-8e5d-b977fdfc7c3b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-3279b85d-7b61-4acb-b32b-0ca96c79f6ab {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-9884aef8-7f2f-4688-be8c-aebce1c614d0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9884aef8-7f2f-4688-be8c-aebce1c614d0"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-9884aef8-7f2f-4688-be8c-aebce1c614d0"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9884aef8-7f2f-4688-be8c-aebce1c614d0"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-9884aef8-7f2f-4688-be8c-aebce1c614d0"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9884aef8-7f2f-4688-be8c-aebce1c614d0"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-9884aef8-7f2f-4688-be8c-aebce1c614d0"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-1ed7cbf6-38b8-4adf-8e15-a4c88ed8c80c {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-c24e9628-6f8b-4bae-a435-b772633e000c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c24e9628-6f8b-4bae-a435-b772633e000c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c24e9628-6f8b-4bae-a435-b772633e000c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c24e9628-6f8b-4bae-a435-b772633e000c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c24e9628-6f8b-4bae-a435-b772633e000c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c24e9628-6f8b-4bae-a435-b772633e000c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c24e9628-6f8b-4bae-a435-b772633e000c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

#s-dd7b4840-b618-4faa-93d2-84b7796d10b3 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 0%;
padding-right: 0%;
}

#s-9b8f3b41-6b84-46ab-8f3b-8bf3d893a89f {
  margin-top: 0px;
margin-left: 4%;
margin-bottom: 0px;
margin-right: 4%;
padding-top: 20px;
padding-left: 1%;
padding-bottom: 20px;
padding-right: 1%;
}

#s-1b225233-e02a-4b19-8170-1e4f08063d69 {
  max-width: 1920px;
aspect-ratio: 1920/1095;
text-align: center;
}

#s-1b225233-e02a-4b19-8170-1e4f08063d69 {
  margin: 0 !important;
  overflow: visible;
}

#s-1b225233-e02a-4b19-8170-1e4f08063d69-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1b225233-e02a-4b19-8170-1e4f08063d69 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1b225233-e02a-4b19-8170-1e4f08063d69 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1b225233-e02a-4b19-8170-1e4f08063d69 img.shogun-image {
  /* Add background color handling */
  
}

#s-1b225233-e02a-4b19-8170-1e4f08063d69 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1b225233-e02a-4b19-8170-1e4f08063d69 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-1b225233-e02a-4b19-8170-1e4f08063d69 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1b225233-e02a-4b19-8170-1e4f08063d69 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1b225233-e02a-4b19-8170-1e4f08063d69 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-1b225233-e02a-4b19-8170-1e4f08063d69 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1b225233-e02a-4b19-8170-1e4f08063d69.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image {
  box-sizing: border-box;
}



.s-1b225233-e02a-4b19-8170-1e4f08063d69 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1b225233-e02a-4b19-8170-1e4f08063d69 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image-container {
      position: relative;
    }

    .s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1b225233-e02a-4b19-8170-1e4f08063d69 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

@media (min-width: 1200px){#s-1b225233-e02a-4b19-8170-1e4f08063d69 {
  margin: 0 !important;
  overflow: visible;
}

#s-1b225233-e02a-4b19-8170-1e4f08063d69-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1b225233-e02a-4b19-8170-1e4f08063d69 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1b225233-e02a-4b19-8170-1e4f08063d69 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1b225233-e02a-4b19-8170-1e4f08063d69 img.shogun-image {
  /* Add background color handling */
  
}

#s-1b225233-e02a-4b19-8170-1e4f08063d69 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1b225233-e02a-4b19-8170-1e4f08063d69 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-1b225233-e02a-4b19-8170-1e4f08063d69 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1b225233-e02a-4b19-8170-1e4f08063d69 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1b225233-e02a-4b19-8170-1e4f08063d69 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-1b225233-e02a-4b19-8170-1e4f08063d69 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1b225233-e02a-4b19-8170-1e4f08063d69.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image {
  box-sizing: border-box;
}



.s-1b225233-e02a-4b19-8170-1e4f08063d69 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1b225233-e02a-4b19-8170-1e4f08063d69 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image-container {
      position: relative;
    }

    .s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1b225233-e02a-4b19-8170-1e4f08063d69 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-1b225233-e02a-4b19-8170-1e4f08063d69 {
  margin: 0 !important;
  overflow: visible;
}

#s-1b225233-e02a-4b19-8170-1e4f08063d69-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1b225233-e02a-4b19-8170-1e4f08063d69 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1b225233-e02a-4b19-8170-1e4f08063d69 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1b225233-e02a-4b19-8170-1e4f08063d69 img.shogun-image {
  /* Add background color handling */
  
}

#s-1b225233-e02a-4b19-8170-1e4f08063d69 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1b225233-e02a-4b19-8170-1e4f08063d69 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-1b225233-e02a-4b19-8170-1e4f08063d69 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1b225233-e02a-4b19-8170-1e4f08063d69 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1b225233-e02a-4b19-8170-1e4f08063d69 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-1b225233-e02a-4b19-8170-1e4f08063d69 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1b225233-e02a-4b19-8170-1e4f08063d69.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image {
  box-sizing: border-box;
}



.s-1b225233-e02a-4b19-8170-1e4f08063d69 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1b225233-e02a-4b19-8170-1e4f08063d69 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image-container {
      position: relative;
    }

    .s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1b225233-e02a-4b19-8170-1e4f08063d69 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-1b225233-e02a-4b19-8170-1e4f08063d69 {
  margin: 0 !important;
  overflow: visible;
}

#s-1b225233-e02a-4b19-8170-1e4f08063d69-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1b225233-e02a-4b19-8170-1e4f08063d69 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1b225233-e02a-4b19-8170-1e4f08063d69 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1b225233-e02a-4b19-8170-1e4f08063d69 img.shogun-image {
  /* Add background color handling */
  
}

#s-1b225233-e02a-4b19-8170-1e4f08063d69 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1b225233-e02a-4b19-8170-1e4f08063d69 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-1b225233-e02a-4b19-8170-1e4f08063d69 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1b225233-e02a-4b19-8170-1e4f08063d69 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1b225233-e02a-4b19-8170-1e4f08063d69 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-1b225233-e02a-4b19-8170-1e4f08063d69 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1b225233-e02a-4b19-8170-1e4f08063d69.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image {
  box-sizing: border-box;
}



.s-1b225233-e02a-4b19-8170-1e4f08063d69 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1b225233-e02a-4b19-8170-1e4f08063d69 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image-container {
      position: relative;
    }

    .s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1b225233-e02a-4b19-8170-1e4f08063d69 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (max-width: 767px){#s-1b225233-e02a-4b19-8170-1e4f08063d69 {
  margin: 0 !important;
  overflow: visible;
}

#s-1b225233-e02a-4b19-8170-1e4f08063d69-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1b225233-e02a-4b19-8170-1e4f08063d69 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1b225233-e02a-4b19-8170-1e4f08063d69 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1b225233-e02a-4b19-8170-1e4f08063d69 img.shogun-image {
  /* Add background color handling */
  
}

#s-1b225233-e02a-4b19-8170-1e4f08063d69 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1b225233-e02a-4b19-8170-1e4f08063d69 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-1b225233-e02a-4b19-8170-1e4f08063d69 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1b225233-e02a-4b19-8170-1e4f08063d69 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1b225233-e02a-4b19-8170-1e4f08063d69 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-1b225233-e02a-4b19-8170-1e4f08063d69 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1b225233-e02a-4b19-8170-1e4f08063d69.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image {
  box-sizing: border-box;
}



.s-1b225233-e02a-4b19-8170-1e4f08063d69 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1b225233-e02a-4b19-8170-1e4f08063d69 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image-container {
      position: relative;
    }

    .s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1b225233-e02a-4b19-8170-1e4f08063d69.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1b225233-e02a-4b19-8170-1e4f08063d69 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}
@media (min-width: 0px) {
[id="s-f1c83622-59b6-4198-821a-3968d68c1f97"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f1c83622-59b6-4198-821a-3968d68c1f97"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f1c83622-59b6-4198-821a-3968d68c1f97"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f1c83622-59b6-4198-821a-3968d68c1f97"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-129d4100-8e46-4924-938b-1d0b0d1075b3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-129d4100-8e46-4924-938b-1d0b0d1075b3"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-129d4100-8e46-4924-938b-1d0b0d1075b3"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-129d4100-8e46-4924-938b-1d0b0d1075b3"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-129d4100-8e46-4924-938b-1d0b0d1075b3"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-129d4100-8e46-4924-938b-1d0b0d1075b3"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-129d4100-8e46-4924-938b-1d0b0d1075b3"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-914ea2a6-dcea-4b82-8a2e-e4cf31362d85 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-35255a1b-48a2-4250-a68a-494eef474859"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-35255a1b-48a2-4250-a68a-494eef474859"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-35255a1b-48a2-4250-a68a-494eef474859"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-35255a1b-48a2-4250-a68a-494eef474859"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-35255a1b-48a2-4250-a68a-494eef474859"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-35255a1b-48a2-4250-a68a-494eef474859"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-35255a1b-48a2-4250-a68a-494eef474859"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-6bed4bbd-9be7-4c30-bfea-baaa4b228b8c {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-8de7f8c4-07e0-4b9e-96b1-32a0ce93d74c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8de7f8c4-07e0-4b9e-96b1-32a0ce93d74c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8de7f8c4-07e0-4b9e-96b1-32a0ce93d74c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8de7f8c4-07e0-4b9e-96b1-32a0ce93d74c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-797f87f4-18f7-4abe-bd3c-165f6a4111ce"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-797f87f4-18f7-4abe-bd3c-165f6a4111ce"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-797f87f4-18f7-4abe-bd3c-165f6a4111ce"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-797f87f4-18f7-4abe-bd3c-165f6a4111ce"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-797f87f4-18f7-4abe-bd3c-165f6a4111ce"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-797f87f4-18f7-4abe-bd3c-165f6a4111ce"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-797f87f4-18f7-4abe-bd3c-165f6a4111ce"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-c6e73cef-bbc0-4bb8-bef0-e9e0e02790c2 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-7f56026b-e3a1-4f3a-bf6f-e33e8521e201"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7f56026b-e3a1-4f3a-bf6f-e33e8521e201"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7f56026b-e3a1-4f3a-bf6f-e33e8521e201"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7f56026b-e3a1-4f3a-bf6f-e33e8521e201"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7f56026b-e3a1-4f3a-bf6f-e33e8521e201"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7f56026b-e3a1-4f3a-bf6f-e33e8521e201"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7f56026b-e3a1-4f3a-bf6f-e33e8521e201"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-6833abd9-3117-4b1c-b244-bdc64bef3d50 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-a8c1f55d-f10d-4954-9eb6-e26b2cafe6aa"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a8c1f55d-f10d-4954-9eb6-e26b2cafe6aa"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a8c1f55d-f10d-4954-9eb6-e26b2cafe6aa"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a8c1f55d-f10d-4954-9eb6-e26b2cafe6aa"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-364d972d-868b-4a4a-82f3-349d4a21b8a4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-364d972d-868b-4a4a-82f3-349d4a21b8a4"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-364d972d-868b-4a4a-82f3-349d4a21b8a4"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-364d972d-868b-4a4a-82f3-349d4a21b8a4"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-364d972d-868b-4a4a-82f3-349d4a21b8a4"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-364d972d-868b-4a4a-82f3-349d4a21b8a4"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-364d972d-868b-4a4a-82f3-349d4a21b8a4"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-93221f9b-ac57-402c-a4f6-3e9a65ec106a {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-8b6bd866-0db7-4f9a-aed2-4971b80495d0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8b6bd866-0db7-4f9a-aed2-4971b80495d0"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8b6bd866-0db7-4f9a-aed2-4971b80495d0"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8b6bd866-0db7-4f9a-aed2-4971b80495d0"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8b6bd866-0db7-4f9a-aed2-4971b80495d0"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8b6bd866-0db7-4f9a-aed2-4971b80495d0"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8b6bd866-0db7-4f9a-aed2-4971b80495d0"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-872a6972-f560-47b7-b108-109e6f529a0a {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-686cc6b3-05c6-460f-bf1c-c3a15517ff92"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-686cc6b3-05c6-460f-bf1c-c3a15517ff92"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-686cc6b3-05c6-460f-bf1c-c3a15517ff92"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-686cc6b3-05c6-460f-bf1c-c3a15517ff92"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-471dc9c1-3b5a-46fd-9a8f-2d22ebf22b68"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-471dc9c1-3b5a-46fd-9a8f-2d22ebf22b68"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-471dc9c1-3b5a-46fd-9a8f-2d22ebf22b68"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-471dc9c1-3b5a-46fd-9a8f-2d22ebf22b68"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-471dc9c1-3b5a-46fd-9a8f-2d22ebf22b68"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-471dc9c1-3b5a-46fd-9a8f-2d22ebf22b68"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-471dc9c1-3b5a-46fd-9a8f-2d22ebf22b68"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-714ee00e-2068-47d3-8b65-e25715e644e4 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-d99f6210-00c0-45ce-8a05-6df962c7c672"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d99f6210-00c0-45ce-8a05-6df962c7c672"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d99f6210-00c0-45ce-8a05-6df962c7c672"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d99f6210-00c0-45ce-8a05-6df962c7c672"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d99f6210-00c0-45ce-8a05-6df962c7c672"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d99f6210-00c0-45ce-8a05-6df962c7c672"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d99f6210-00c0-45ce-8a05-6df962c7c672"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-52c430d2-09ab-4f2d-97ac-81399b13c5c2 {
  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-38dcbc48-5215-4850-ba38-997f0f47c348"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-38dcbc48-5215-4850-ba38-997f0f47c348"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-38dcbc48-5215-4850-ba38-997f0f47c348"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-38dcbc48-5215-4850-ba38-997f0f47c348"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-8278067f-ae55-4d74-a2a7-56f4dfb29196"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8278067f-ae55-4d74-a2a7-56f4dfb29196"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8278067f-ae55-4d74-a2a7-56f4dfb29196"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8278067f-ae55-4d74-a2a7-56f4dfb29196"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8278067f-ae55-4d74-a2a7-56f4dfb29196"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8278067f-ae55-4d74-a2a7-56f4dfb29196"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8278067f-ae55-4d74-a2a7-56f4dfb29196"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-b00297bc-a7d6-41f9-b2bf-51e346753f5b {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-1b415580-339a-4d84-ac65-c1f07eec18c5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1b415580-339a-4d84-ac65-c1f07eec18c5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1b415580-339a-4d84-ac65-c1f07eec18c5"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1b415580-339a-4d84-ac65-c1f07eec18c5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1b415580-339a-4d84-ac65-c1f07eec18c5"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1b415580-339a-4d84-ac65-c1f07eec18c5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1b415580-339a-4d84-ac65-c1f07eec18c5"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-1126905c-8bb7-4a67-a5ba-a6f047bb9a91 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-9b2da314-0907-4b96-96da-6a46468aa2fb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9b2da314-0907-4b96-96da-6a46468aa2fb"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9b2da314-0907-4b96-96da-6a46468aa2fb"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9b2da314-0907-4b96-96da-6a46468aa2fb"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-a668b55a-8c02-408b-803f-3c482f4079a0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a668b55a-8c02-408b-803f-3c482f4079a0"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-a668b55a-8c02-408b-803f-3c482f4079a0"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a668b55a-8c02-408b-803f-3c482f4079a0"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-a668b55a-8c02-408b-803f-3c482f4079a0"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a668b55a-8c02-408b-803f-3c482f4079a0"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-a668b55a-8c02-408b-803f-3c482f4079a0"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-d04b0ab1-756b-4b2d-9177-c4e00aef2da1 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-4accdfee-a4b9-491b-8797-19e1d0f89b09"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4accdfee-a4b9-491b-8797-19e1d0f89b09"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-4accdfee-a4b9-491b-8797-19e1d0f89b09"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4accdfee-a4b9-491b-8797-19e1d0f89b09"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-4accdfee-a4b9-491b-8797-19e1d0f89b09"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4accdfee-a4b9-491b-8797-19e1d0f89b09"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-4accdfee-a4b9-491b-8797-19e1d0f89b09"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-5159baa7-9945-4e56-aa18-fff19839123e {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-aa1136da-a2d4-4bfc-a85a-1cce55abb6ef"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-aa1136da-a2d4-4bfc-a85a-1cce55abb6ef"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-aa1136da-a2d4-4bfc-a85a-1cce55abb6ef"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-aa1136da-a2d4-4bfc-a85a-1cce55abb6ef"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-7c84d1ed-798e-4736-b99b-58b8ef8c8917"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7c84d1ed-798e-4736-b99b-58b8ef8c8917"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7c84d1ed-798e-4736-b99b-58b8ef8c8917"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7c84d1ed-798e-4736-b99b-58b8ef8c8917"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7c84d1ed-798e-4736-b99b-58b8ef8c8917"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7c84d1ed-798e-4736-b99b-58b8ef8c8917"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7c84d1ed-798e-4736-b99b-58b8ef8c8917"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-d3059adb-eabc-4aa4-a47b-3cbd73deae9d {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-ebbc748c-957f-4c27-a4a7-9251b2e74185"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ebbc748c-957f-4c27-a4a7-9251b2e74185"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ebbc748c-957f-4c27-a4a7-9251b2e74185"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ebbc748c-957f-4c27-a4a7-9251b2e74185"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ebbc748c-957f-4c27-a4a7-9251b2e74185"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ebbc748c-957f-4c27-a4a7-9251b2e74185"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ebbc748c-957f-4c27-a4a7-9251b2e74185"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-6b58eeb6-84b6-4051-adc1-73071a45ec66 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-09ec1a80-75f8-4d16-ac52-36d00430798f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-09ec1a80-75f8-4d16-ac52-36d00430798f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-09ec1a80-75f8-4d16-ac52-36d00430798f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-09ec1a80-75f8-4d16-ac52-36d00430798f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-09ec1a80-75f8-4d16-ac52-36d00430798f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-09ec1a80-75f8-4d16-ac52-36d00430798f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-09ec1a80-75f8-4d16-ac52-36d00430798f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

#s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 {
  max-width: 1920px;
aspect-ratio: 1920/1095;
text-align: center;
}

#s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 {
  margin: 0 !important;
  overflow: visible;
}

#s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 img.shogun-image {
  /* Add background color handling */
  
}

#s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image {
  box-sizing: border-box;
}



.s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image-container {
      position: relative;
    }

    .s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

@media (min-width: 1200px){#s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 {
  margin: 0 !important;
  overflow: visible;
}

#s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 img.shogun-image {
  /* Add background color handling */
  
}

#s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image {
  box-sizing: border-box;
}



.s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image-container {
      position: relative;
    }

    .s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 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-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 {
  margin: 0 !important;
  overflow: visible;
}

#s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 img.shogun-image {
  /* Add background color handling */
  
}

#s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image {
  box-sizing: border-box;
}



.s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image-container {
      position: relative;
    }

    .s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 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-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 {
  margin: 0 !important;
  overflow: visible;
}

#s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 img.shogun-image {
  /* Add background color handling */
  
}

#s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image {
  box-sizing: border-box;
}



.s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image-container {
      position: relative;
    }

    .s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (max-width: 767px){#s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 {
  margin: 0 !important;
  overflow: visible;
}

#s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 img.shogun-image {
  /* Add background color handling */
  
}

#s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image {
  box-sizing: border-box;
}



.s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image-container {
      position: relative;
    }

    .s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2fcfca2e-6c98-4f9c-9d0a-e01da2cb25a6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}
#s-d8f80687-e65f-407b-a1e6-38cad1138757 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 1%;
padding-right: 1%;
}

#s-961d26df-8558-4a7a-857a-4275ecd2ffca {
  margin-left: 4%;
margin-right: 4%;
padding-top: 20px;
padding-left: 1%;
padding-bottom: 20px;
padding-right: 1%;
}

@media (min-width: 0px) {
[id="s-465c12a2-5b92-4822-bbad-80f7543d81f5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-465c12a2-5b92-4822-bbad-80f7543d81f5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-465c12a2-5b92-4822-bbad-80f7543d81f5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-465c12a2-5b92-4822-bbad-80f7543d81f5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-f50362f4-b02a-4e1c-9e2f-dd1f31bd0358"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f50362f4-b02a-4e1c-9e2f-dd1f31bd0358"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f50362f4-b02a-4e1c-9e2f-dd1f31bd0358"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f50362f4-b02a-4e1c-9e2f-dd1f31bd0358"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f50362f4-b02a-4e1c-9e2f-dd1f31bd0358"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f50362f4-b02a-4e1c-9e2f-dd1f31bd0358"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f50362f4-b02a-4e1c-9e2f-dd1f31bd0358"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-0f60bfb9-04c3-494f-9454-3ae646321dc2 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-63bf92f9-3e16-4c53-bc9e-e05d8d85ea28"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-63bf92f9-3e16-4c53-bc9e-e05d8d85ea28"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-63bf92f9-3e16-4c53-bc9e-e05d8d85ea28"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-63bf92f9-3e16-4c53-bc9e-e05d8d85ea28"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-63bf92f9-3e16-4c53-bc9e-e05d8d85ea28"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-63bf92f9-3e16-4c53-bc9e-e05d8d85ea28"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-63bf92f9-3e16-4c53-bc9e-e05d8d85ea28"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-56666917-1aac-4c6f-a888-0be9f60ddad7 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-a9919695-c639-4cd2-83fa-595d8b74b68d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a9919695-c639-4cd2-83fa-595d8b74b68d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a9919695-c639-4cd2-83fa-595d8b74b68d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a9919695-c639-4cd2-83fa-595d8b74b68d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-ebe4d99d-f0cf-47e1-9940-05c6c3ddff08"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ebe4d99d-f0cf-47e1-9940-05c6c3ddff08"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ebe4d99d-f0cf-47e1-9940-05c6c3ddff08"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ebe4d99d-f0cf-47e1-9940-05c6c3ddff08"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ebe4d99d-f0cf-47e1-9940-05c6c3ddff08"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ebe4d99d-f0cf-47e1-9940-05c6c3ddff08"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ebe4d99d-f0cf-47e1-9940-05c6c3ddff08"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-784dfcfa-5f03-42e3-8dad-e38bdc8db1ef {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-874997e1-cb94-4a6a-be83-222f6e471f1f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-874997e1-cb94-4a6a-be83-222f6e471f1f"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-874997e1-cb94-4a6a-be83-222f6e471f1f"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-874997e1-cb94-4a6a-be83-222f6e471f1f"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-874997e1-cb94-4a6a-be83-222f6e471f1f"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-874997e1-cb94-4a6a-be83-222f6e471f1f"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-874997e1-cb94-4a6a-be83-222f6e471f1f"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-8e57157b-d8e4-45ad-a76f-07477b7093cb {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-2d3402a2-6a38-4f45-962e-bce2011d2a93"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2d3402a2-6a38-4f45-962e-bce2011d2a93"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2d3402a2-6a38-4f45-962e-bce2011d2a93"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2d3402a2-6a38-4f45-962e-bce2011d2a93"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-170525cc-cf12-4eb8-929a-7a6e40fe5856"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-170525cc-cf12-4eb8-929a-7a6e40fe5856"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-170525cc-cf12-4eb8-929a-7a6e40fe5856"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-170525cc-cf12-4eb8-929a-7a6e40fe5856"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-170525cc-cf12-4eb8-929a-7a6e40fe5856"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-170525cc-cf12-4eb8-929a-7a6e40fe5856"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-170525cc-cf12-4eb8-929a-7a6e40fe5856"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-482e9f34-4f6f-4d72-8703-9bcaef821240 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-6c40e896-aa74-4997-bf90-000ca9010e0f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6c40e896-aa74-4997-bf90-000ca9010e0f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6c40e896-aa74-4997-bf90-000ca9010e0f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6c40e896-aa74-4997-bf90-000ca9010e0f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6c40e896-aa74-4997-bf90-000ca9010e0f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6c40e896-aa74-4997-bf90-000ca9010e0f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6c40e896-aa74-4997-bf90-000ca9010e0f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-cc74a127-b87b-4840-82ca-c957ba5d68d0 {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-1ceab5ec-97d9-409e-9f2c-034383d5bf63 {
  margin-top: -10px;
margin-bottom: -10px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-1ceab5ec-97d9-409e-9f2c-034383d5bf63 hr {
  border-top: 1px solid #ddd;
}

@media (min-width: 0px) {
[id="s-753210b9-97a6-4928-865c-fbaacc608106"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-753210b9-97a6-4928-865c-fbaacc608106"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-753210b9-97a6-4928-865c-fbaacc608106"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-753210b9-97a6-4928-865c-fbaacc608106"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-7b860b77-474a-4e54-93da-d46b5cb0d369"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7b860b77-474a-4e54-93da-d46b5cb0d369"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7b860b77-474a-4e54-93da-d46b5cb0d369"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7b860b77-474a-4e54-93da-d46b5cb0d369"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7b860b77-474a-4e54-93da-d46b5cb0d369"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7b860b77-474a-4e54-93da-d46b5cb0d369"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7b860b77-474a-4e54-93da-d46b5cb0d369"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-48c83805-c308-4ca9-ba5a-c658a99ddc4c {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-40a4312e-afaa-4496-b7ae-4a7fcf53e239"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-40a4312e-afaa-4496-b7ae-4a7fcf53e239"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-40a4312e-afaa-4496-b7ae-4a7fcf53e239"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-40a4312e-afaa-4496-b7ae-4a7fcf53e239"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-40a4312e-afaa-4496-b7ae-4a7fcf53e239"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-40a4312e-afaa-4496-b7ae-4a7fcf53e239"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-40a4312e-afaa-4496-b7ae-4a7fcf53e239"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-b7f5d4e0-9383-4c1d-b482-ca72613b7419 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-dd5082ed-8f49-43e1-b18e-43fa47d0ce0c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-dd5082ed-8f49-43e1-b18e-43fa47d0ce0c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-dd5082ed-8f49-43e1-b18e-43fa47d0ce0c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-dd5082ed-8f49-43e1-b18e-43fa47d0ce0c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-39ba0a55-9441-456b-9202-20686cc8db58"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-39ba0a55-9441-456b-9202-20686cc8db58"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-39ba0a55-9441-456b-9202-20686cc8db58"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-39ba0a55-9441-456b-9202-20686cc8db58"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-39ba0a55-9441-456b-9202-20686cc8db58"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-39ba0a55-9441-456b-9202-20686cc8db58"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-39ba0a55-9441-456b-9202-20686cc8db58"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-8196f97c-c7a3-4476-a6e2-54b744a1e0d6 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-5e58ea74-c4f6-478d-8bab-2f2f86b58865"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5e58ea74-c4f6-478d-8bab-2f2f86b58865"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5e58ea74-c4f6-478d-8bab-2f2f86b58865"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5e58ea74-c4f6-478d-8bab-2f2f86b58865"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5e58ea74-c4f6-478d-8bab-2f2f86b58865"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5e58ea74-c4f6-478d-8bab-2f2f86b58865"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5e58ea74-c4f6-478d-8bab-2f2f86b58865"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-1b5da81d-3eae-4c63-b4cd-4a0757606396 {
  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-top: 0px;
margin-left: 4%;
margin-bottom: 0px;
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-51138f1d-9eb5-458a-8f67-e4397aee6e41"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-51138f1d-9eb5-458a-8f67-e4397aee6e41"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-51138f1d-9eb5-458a-8f67-e4397aee6e41"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-51138f1d-9eb5-458a-8f67-e4397aee6e41"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-1998457e-b5ac-4a5c-9c98-da0b9e56c850"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1998457e-b5ac-4a5c-9c98-da0b9e56c850"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1998457e-b5ac-4a5c-9c98-da0b9e56c850"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1998457e-b5ac-4a5c-9c98-da0b9e56c850"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1998457e-b5ac-4a5c-9c98-da0b9e56c850"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1998457e-b5ac-4a5c-9c98-da0b9e56c850"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1998457e-b5ac-4a5c-9c98-da0b9e56c850"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-4ca9fb9e-9e3f-4843-a3f4-e4ba9e0e949d {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-c0d21c1d-4e29-4884-9498-661e6489ce0c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c0d21c1d-4e29-4884-9498-661e6489ce0c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c0d21c1d-4e29-4884-9498-661e6489ce0c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c0d21c1d-4e29-4884-9498-661e6489ce0c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c0d21c1d-4e29-4884-9498-661e6489ce0c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c0d21c1d-4e29-4884-9498-661e6489ce0c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c0d21c1d-4e29-4884-9498-661e6489ce0c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-a0e7dcf1-e8ff-4be1-a56f-5151a957c524 {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-1b8eb6db-b8df-436e-90f3-a19c1e62fc3b {
  margin-top: -10px;
margin-bottom: -10px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-1b8eb6db-b8df-436e-90f3-a19c1e62fc3b hr {
  border-top: 1px solid #ddd;
}

@media (min-width: 0px) {
[id="s-18783911-73b7-4132-914b-07fbdfb82357"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-18783911-73b7-4132-914b-07fbdfb82357"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-18783911-73b7-4132-914b-07fbdfb82357"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-18783911-73b7-4132-914b-07fbdfb82357"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-74b7ce25-da45-4f28-85dd-427f2b41e6d4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-74b7ce25-da45-4f28-85dd-427f2b41e6d4"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-74b7ce25-da45-4f28-85dd-427f2b41e6d4"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-74b7ce25-da45-4f28-85dd-427f2b41e6d4"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-74b7ce25-da45-4f28-85dd-427f2b41e6d4"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-74b7ce25-da45-4f28-85dd-427f2b41e6d4"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-74b7ce25-da45-4f28-85dd-427f2b41e6d4"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-a58bd07f-714a-470c-9192-2b79f8e14503 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-a196fb01-68b2-4bfd-87ed-9d79fefab5d6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a196fb01-68b2-4bfd-87ed-9d79fefab5d6"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a196fb01-68b2-4bfd-87ed-9d79fefab5d6"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a196fb01-68b2-4bfd-87ed-9d79fefab5d6"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a196fb01-68b2-4bfd-87ed-9d79fefab5d6"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a196fb01-68b2-4bfd-87ed-9d79fefab5d6"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a196fb01-68b2-4bfd-87ed-9d79fefab5d6"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-aeccdf4d-4a57-49ac-af00-240e3f33afa0 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-bc2ae0b2-2120-4001-9c76-22fbb5725d3c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bc2ae0b2-2120-4001-9c76-22fbb5725d3c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-bc2ae0b2-2120-4001-9c76-22fbb5725d3c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-bc2ae0b2-2120-4001-9c76-22fbb5725d3c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-bc2ae0b2-2120-4001-9c76-22fbb5725d3c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-bc2ae0b2-2120-4001-9c76-22fbb5725d3c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-bc2ae0b2-2120-4001-9c76-22fbb5725d3c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

#s-f3049b99-715a-4457-8d88-736a05723f8d {
  max-width: 1920px;
aspect-ratio: 1920/1095;
text-align: center;
}

#s-f3049b99-715a-4457-8d88-736a05723f8d {
  margin: 0 !important;
  overflow: visible;
}

#s-f3049b99-715a-4457-8d88-736a05723f8d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f3049b99-715a-4457-8d88-736a05723f8d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f3049b99-715a-4457-8d88-736a05723f8d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f3049b99-715a-4457-8d88-736a05723f8d img.shogun-image {
  /* Add background color handling */
  
}

#s-f3049b99-715a-4457-8d88-736a05723f8d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f3049b99-715a-4457-8d88-736a05723f8d .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-f3049b99-715a-4457-8d88-736a05723f8d .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f3049b99-715a-4457-8d88-736a05723f8d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f3049b99-715a-4457-8d88-736a05723f8d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-f3049b99-715a-4457-8d88-736a05723f8d .shogun-image-content {
  
    justify-content: center;
  
}

.s-f3049b99-715a-4457-8d88-736a05723f8d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image {
  box-sizing: border-box;
}



.s-f3049b99-715a-4457-8d88-736a05723f8d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f3049b99-715a-4457-8d88-736a05723f8d {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image-container {
      position: relative;
    }

    .s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f3049b99-715a-4457-8d88-736a05723f8d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

@media (min-width: 1200px){#s-f3049b99-715a-4457-8d88-736a05723f8d {
  margin: 0 !important;
  overflow: visible;
}

#s-f3049b99-715a-4457-8d88-736a05723f8d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f3049b99-715a-4457-8d88-736a05723f8d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f3049b99-715a-4457-8d88-736a05723f8d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f3049b99-715a-4457-8d88-736a05723f8d img.shogun-image {
  /* Add background color handling */
  
}

#s-f3049b99-715a-4457-8d88-736a05723f8d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f3049b99-715a-4457-8d88-736a05723f8d .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-f3049b99-715a-4457-8d88-736a05723f8d .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f3049b99-715a-4457-8d88-736a05723f8d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f3049b99-715a-4457-8d88-736a05723f8d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-f3049b99-715a-4457-8d88-736a05723f8d .shogun-image-content {
  
    justify-content: center;
  
}

.s-f3049b99-715a-4457-8d88-736a05723f8d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image {
  box-sizing: border-box;
}



.s-f3049b99-715a-4457-8d88-736a05723f8d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f3049b99-715a-4457-8d88-736a05723f8d {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image-container {
      position: relative;
    }

    .s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f3049b99-715a-4457-8d88-736a05723f8d 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-f3049b99-715a-4457-8d88-736a05723f8d {
  margin: 0 !important;
  overflow: visible;
}

#s-f3049b99-715a-4457-8d88-736a05723f8d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f3049b99-715a-4457-8d88-736a05723f8d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f3049b99-715a-4457-8d88-736a05723f8d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f3049b99-715a-4457-8d88-736a05723f8d img.shogun-image {
  /* Add background color handling */
  
}

#s-f3049b99-715a-4457-8d88-736a05723f8d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f3049b99-715a-4457-8d88-736a05723f8d .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-f3049b99-715a-4457-8d88-736a05723f8d .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f3049b99-715a-4457-8d88-736a05723f8d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f3049b99-715a-4457-8d88-736a05723f8d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-f3049b99-715a-4457-8d88-736a05723f8d .shogun-image-content {
  
    justify-content: center;
  
}

.s-f3049b99-715a-4457-8d88-736a05723f8d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image {
  box-sizing: border-box;
}



.s-f3049b99-715a-4457-8d88-736a05723f8d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f3049b99-715a-4457-8d88-736a05723f8d {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image-container {
      position: relative;
    }

    .s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f3049b99-715a-4457-8d88-736a05723f8d 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-f3049b99-715a-4457-8d88-736a05723f8d {
  margin: 0 !important;
  overflow: visible;
}

#s-f3049b99-715a-4457-8d88-736a05723f8d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f3049b99-715a-4457-8d88-736a05723f8d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f3049b99-715a-4457-8d88-736a05723f8d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f3049b99-715a-4457-8d88-736a05723f8d img.shogun-image {
  /* Add background color handling */
  
}

#s-f3049b99-715a-4457-8d88-736a05723f8d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f3049b99-715a-4457-8d88-736a05723f8d .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-f3049b99-715a-4457-8d88-736a05723f8d .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f3049b99-715a-4457-8d88-736a05723f8d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f3049b99-715a-4457-8d88-736a05723f8d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-f3049b99-715a-4457-8d88-736a05723f8d .shogun-image-content {
  
    justify-content: center;
  
}

.s-f3049b99-715a-4457-8d88-736a05723f8d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image {
  box-sizing: border-box;
}



.s-f3049b99-715a-4457-8d88-736a05723f8d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f3049b99-715a-4457-8d88-736a05723f8d {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image-container {
      position: relative;
    }

    .s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f3049b99-715a-4457-8d88-736a05723f8d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (max-width: 767px){#s-f3049b99-715a-4457-8d88-736a05723f8d {
  margin: 0 !important;
  overflow: visible;
}

#s-f3049b99-715a-4457-8d88-736a05723f8d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f3049b99-715a-4457-8d88-736a05723f8d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f3049b99-715a-4457-8d88-736a05723f8d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f3049b99-715a-4457-8d88-736a05723f8d img.shogun-image {
  /* Add background color handling */
  
}

#s-f3049b99-715a-4457-8d88-736a05723f8d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f3049b99-715a-4457-8d88-736a05723f8d .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-f3049b99-715a-4457-8d88-736a05723f8d .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f3049b99-715a-4457-8d88-736a05723f8d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f3049b99-715a-4457-8d88-736a05723f8d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-f3049b99-715a-4457-8d88-736a05723f8d .shogun-image-content {
  
    justify-content: center;
  
}

.s-f3049b99-715a-4457-8d88-736a05723f8d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image {
  box-sizing: border-box;
}



.s-f3049b99-715a-4457-8d88-736a05723f8d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f3049b99-715a-4457-8d88-736a05723f8d {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image-container {
      position: relative;
    }

    .s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f3049b99-715a-4457-8d88-736a05723f8d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f3049b99-715a-4457-8d88-736a05723f8d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}
#s-f7b6358f-a31a-44c9-8123-f62025dfae88 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 1%;
padding-right: 1%;
}

#s-bd0cf468-551f-4285-a665-229b08933cad {
  margin-left: 4%;
margin-right: 4%;
padding-top: 20px;
padding-left: 1%;
padding-bottom: 20px;
padding-right: 1%;
}

@media (min-width: 0px) {
[id="s-89de73d9-3f56-4c06-83d8-a74c359802e9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-89de73d9-3f56-4c06-83d8-a74c359802e9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-89de73d9-3f56-4c06-83d8-a74c359802e9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-89de73d9-3f56-4c06-83d8-a74c359802e9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-16409f95-8435-47e3-84e4-fda9775bd29d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-16409f95-8435-47e3-84e4-fda9775bd29d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-16409f95-8435-47e3-84e4-fda9775bd29d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-16409f95-8435-47e3-84e4-fda9775bd29d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-16409f95-8435-47e3-84e4-fda9775bd29d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-16409f95-8435-47e3-84e4-fda9775bd29d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-16409f95-8435-47e3-84e4-fda9775bd29d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-3ab94866-c8a9-4ea3-9b4d-831932e6753e {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-a156bb98-fc19-41a6-8b64-5fb7c42eb277"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a156bb98-fc19-41a6-8b64-5fb7c42eb277"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a156bb98-fc19-41a6-8b64-5fb7c42eb277"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a156bb98-fc19-41a6-8b64-5fb7c42eb277"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a156bb98-fc19-41a6-8b64-5fb7c42eb277"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a156bb98-fc19-41a6-8b64-5fb7c42eb277"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a156bb98-fc19-41a6-8b64-5fb7c42eb277"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-6e8f9f91-ed8c-4cc2-93ec-64b8af25c0e1 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-1cc251ba-b198-449b-b042-12645b1e7e6c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1cc251ba-b198-449b-b042-12645b1e7e6c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1cc251ba-b198-449b-b042-12645b1e7e6c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1cc251ba-b198-449b-b042-12645b1e7e6c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-c9ccab1c-8e21-47cf-a9b2-ba4bfe1369d8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c9ccab1c-8e21-47cf-a9b2-ba4bfe1369d8"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c9ccab1c-8e21-47cf-a9b2-ba4bfe1369d8"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c9ccab1c-8e21-47cf-a9b2-ba4bfe1369d8"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c9ccab1c-8e21-47cf-a9b2-ba4bfe1369d8"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c9ccab1c-8e21-47cf-a9b2-ba4bfe1369d8"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c9ccab1c-8e21-47cf-a9b2-ba4bfe1369d8"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-6fb27c96-65b9-497e-a764-bf0d2679c7a3 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-6fa2606d-1170-42be-ab91-1854de6c7b56"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6fa2606d-1170-42be-ab91-1854de6c7b56"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6fa2606d-1170-42be-ab91-1854de6c7b56"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6fa2606d-1170-42be-ab91-1854de6c7b56"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6fa2606d-1170-42be-ab91-1854de6c7b56"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6fa2606d-1170-42be-ab91-1854de6c7b56"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6fa2606d-1170-42be-ab91-1854de6c7b56"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-82328a8f-a490-430f-8d60-6d816fff4cee {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-ecd26691-b2b7-420a-a066-ddaa94cfa01d {
  margin-top: -8px;
margin-bottom: -8px;
min-height: 50px;
}








#s-ecd26691-b2b7-420a-a066-ddaa94cfa01d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ecd26691-b2b7-420a-a066-ddaa94cfa01d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.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-397a54c7-d83b-4be2-b5e2-bd573881672b {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-397a54c7-d83b-4be2-b5e2-bd573881672b .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-397a54c7-d83b-4be2-b5e2-bd573881672b .shg-sld-nav-button.shg-sld-left,
#s-397a54c7-d83b-4be2-b5e2-bd573881672b .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa {
  margin: 0 !important;
  overflow: visible;
}

#s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa img.shogun-image {
  /* Add background color handling */
  
}

#s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa .shogun-image-content {
  
    justify-content: center;
  
}

.s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image {
  box-sizing: border-box;
}



.s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image-container {
      position: relative;
    }

    .s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa {
  margin: 0 !important;
  overflow: visible;
}

#s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa img.shogun-image {
  /* Add background color handling */
  
}

#s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa .shogun-image-content {
  
    justify-content: center;
  
}

.s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image {
  box-sizing: border-box;
}



.s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image-container {
      position: relative;
    }

    .s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa 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-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa {
  margin: 0 !important;
  overflow: visible;
}

#s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa img.shogun-image {
  /* Add background color handling */
  
}

#s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa .shogun-image-content {
  
    justify-content: center;
  
}

.s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image {
  box-sizing: border-box;
}



.s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image-container {
      position: relative;
    }

    .s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa 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-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa {
  margin: 0 !important;
  overflow: visible;
}

#s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa img.shogun-image {
  /* Add background color handling */
  
}

#s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa .shogun-image-content {
  
    justify-content: center;
  
}

.s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image {
  box-sizing: border-box;
}



.s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image-container {
      position: relative;
    }

    .s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa {
  margin: 0 !important;
  overflow: visible;
}

#s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa img.shogun-image {
  /* Add background color handling */
  
}

#s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa .shogun-image-content {
  
    justify-content: center;
  
}

.s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image {
  box-sizing: border-box;
}



.s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image-container {
      position: relative;
    }

    .s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4e38fdb4-49af-4671-9bd0-c1f865fa8ffa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-ed96cef8-4768-4472-999d-81120611d18f {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-ed96cef8-4768-4472-999d-81120611d18f {
  margin: 0 !important;
  overflow: visible;
}

#s-ed96cef8-4768-4472-999d-81120611d18f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ed96cef8-4768-4472-999d-81120611d18f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ed96cef8-4768-4472-999d-81120611d18f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ed96cef8-4768-4472-999d-81120611d18f img.shogun-image {
  /* Add background color handling */
  
}

#s-ed96cef8-4768-4472-999d-81120611d18f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ed96cef8-4768-4472-999d-81120611d18f .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-ed96cef8-4768-4472-999d-81120611d18f .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ed96cef8-4768-4472-999d-81120611d18f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ed96cef8-4768-4472-999d-81120611d18f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-ed96cef8-4768-4472-999d-81120611d18f .shogun-image-content {
  
    justify-content: center;
  
}

.s-ed96cef8-4768-4472-999d-81120611d18f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image {
  box-sizing: border-box;
}



.s-ed96cef8-4768-4472-999d-81120611d18f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ed96cef8-4768-4472-999d-81120611d18f {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image-container {
      position: relative;
    }

    .s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ed96cef8-4768-4472-999d-81120611d18f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-ed96cef8-4768-4472-999d-81120611d18f {
  margin: 0 !important;
  overflow: visible;
}

#s-ed96cef8-4768-4472-999d-81120611d18f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ed96cef8-4768-4472-999d-81120611d18f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ed96cef8-4768-4472-999d-81120611d18f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ed96cef8-4768-4472-999d-81120611d18f img.shogun-image {
  /* Add background color handling */
  
}

#s-ed96cef8-4768-4472-999d-81120611d18f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ed96cef8-4768-4472-999d-81120611d18f .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-ed96cef8-4768-4472-999d-81120611d18f .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ed96cef8-4768-4472-999d-81120611d18f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ed96cef8-4768-4472-999d-81120611d18f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-ed96cef8-4768-4472-999d-81120611d18f .shogun-image-content {
  
    justify-content: center;
  
}

.s-ed96cef8-4768-4472-999d-81120611d18f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image {
  box-sizing: border-box;
}



.s-ed96cef8-4768-4472-999d-81120611d18f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ed96cef8-4768-4472-999d-81120611d18f {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image-container {
      position: relative;
    }

    .s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ed96cef8-4768-4472-999d-81120611d18f 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-ed96cef8-4768-4472-999d-81120611d18f {
  margin: 0 !important;
  overflow: visible;
}

#s-ed96cef8-4768-4472-999d-81120611d18f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ed96cef8-4768-4472-999d-81120611d18f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ed96cef8-4768-4472-999d-81120611d18f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ed96cef8-4768-4472-999d-81120611d18f img.shogun-image {
  /* Add background color handling */
  
}

#s-ed96cef8-4768-4472-999d-81120611d18f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ed96cef8-4768-4472-999d-81120611d18f .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-ed96cef8-4768-4472-999d-81120611d18f .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ed96cef8-4768-4472-999d-81120611d18f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ed96cef8-4768-4472-999d-81120611d18f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-ed96cef8-4768-4472-999d-81120611d18f .shogun-image-content {
  
    justify-content: center;
  
}

.s-ed96cef8-4768-4472-999d-81120611d18f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image {
  box-sizing: border-box;
}



.s-ed96cef8-4768-4472-999d-81120611d18f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ed96cef8-4768-4472-999d-81120611d18f {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image-container {
      position: relative;
    }

    .s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ed96cef8-4768-4472-999d-81120611d18f 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-ed96cef8-4768-4472-999d-81120611d18f {
  margin: 0 !important;
  overflow: visible;
}

#s-ed96cef8-4768-4472-999d-81120611d18f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ed96cef8-4768-4472-999d-81120611d18f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ed96cef8-4768-4472-999d-81120611d18f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ed96cef8-4768-4472-999d-81120611d18f img.shogun-image {
  /* Add background color handling */
  
}

#s-ed96cef8-4768-4472-999d-81120611d18f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ed96cef8-4768-4472-999d-81120611d18f .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-ed96cef8-4768-4472-999d-81120611d18f .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ed96cef8-4768-4472-999d-81120611d18f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ed96cef8-4768-4472-999d-81120611d18f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-ed96cef8-4768-4472-999d-81120611d18f .shogun-image-content {
  
    justify-content: center;
  
}

.s-ed96cef8-4768-4472-999d-81120611d18f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image {
  box-sizing: border-box;
}



.s-ed96cef8-4768-4472-999d-81120611d18f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ed96cef8-4768-4472-999d-81120611d18f {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image-container {
      position: relative;
    }

    .s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ed96cef8-4768-4472-999d-81120611d18f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-ed96cef8-4768-4472-999d-81120611d18f {
  margin: 0 !important;
  overflow: visible;
}

#s-ed96cef8-4768-4472-999d-81120611d18f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ed96cef8-4768-4472-999d-81120611d18f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ed96cef8-4768-4472-999d-81120611d18f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ed96cef8-4768-4472-999d-81120611d18f img.shogun-image {
  /* Add background color handling */
  
}

#s-ed96cef8-4768-4472-999d-81120611d18f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ed96cef8-4768-4472-999d-81120611d18f .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-ed96cef8-4768-4472-999d-81120611d18f .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ed96cef8-4768-4472-999d-81120611d18f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ed96cef8-4768-4472-999d-81120611d18f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-ed96cef8-4768-4472-999d-81120611d18f .shogun-image-content {
  
    justify-content: center;
  
}

.s-ed96cef8-4768-4472-999d-81120611d18f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image {
  box-sizing: border-box;
}



.s-ed96cef8-4768-4472-999d-81120611d18f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ed96cef8-4768-4472-999d-81120611d18f {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image-container {
      position: relative;
    }

    .s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ed96cef8-4768-4472-999d-81120611d18f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ed96cef8-4768-4472-999d-81120611d18f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-361e4dd8-cb64-4b8c-bfa9-07309636f436 {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-361e4dd8-cb64-4b8c-bfa9-07309636f436 {
  margin: 0 !important;
  overflow: visible;
}

#s-361e4dd8-cb64-4b8c-bfa9-07309636f436-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-361e4dd8-cb64-4b8c-bfa9-07309636f436 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-361e4dd8-cb64-4b8c-bfa9-07309636f436 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-361e4dd8-cb64-4b8c-bfa9-07309636f436 img.shogun-image {
  /* Add background color handling */
  
}

#s-361e4dd8-cb64-4b8c-bfa9-07309636f436 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-361e4dd8-cb64-4b8c-bfa9-07309636f436 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-361e4dd8-cb64-4b8c-bfa9-07309636f436 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-361e4dd8-cb64-4b8c-bfa9-07309636f436 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-361e4dd8-cb64-4b8c-bfa9-07309636f436 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-361e4dd8-cb64-4b8c-bfa9-07309636f436 .shogun-image-content {
  
    justify-content: center;
  
}

.s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shg-align-container {
  display: flex;
  justify-content: center
}

.s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image {
  box-sizing: border-box;
}



.s-361e4dd8-cb64-4b8c-bfa9-07309636f436 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-361e4dd8-cb64-4b8c-bfa9-07309636f436 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image-container {
      position: relative;
    }

    .s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-361e4dd8-cb64-4b8c-bfa9-07309636f436 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-361e4dd8-cb64-4b8c-bfa9-07309636f436 {
  margin: 0 !important;
  overflow: visible;
}

#s-361e4dd8-cb64-4b8c-bfa9-07309636f436-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-361e4dd8-cb64-4b8c-bfa9-07309636f436 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-361e4dd8-cb64-4b8c-bfa9-07309636f436 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-361e4dd8-cb64-4b8c-bfa9-07309636f436 img.shogun-image {
  /* Add background color handling */
  
}

#s-361e4dd8-cb64-4b8c-bfa9-07309636f436 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-361e4dd8-cb64-4b8c-bfa9-07309636f436 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-361e4dd8-cb64-4b8c-bfa9-07309636f436 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-361e4dd8-cb64-4b8c-bfa9-07309636f436 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-361e4dd8-cb64-4b8c-bfa9-07309636f436 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-361e4dd8-cb64-4b8c-bfa9-07309636f436 .shogun-image-content {
  
    justify-content: center;
  
}

.s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shg-align-container {
  display: flex;
  justify-content: center
}

.s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image {
  box-sizing: border-box;
}



.s-361e4dd8-cb64-4b8c-bfa9-07309636f436 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-361e4dd8-cb64-4b8c-bfa9-07309636f436 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image-container {
      position: relative;
    }

    .s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-361e4dd8-cb64-4b8c-bfa9-07309636f436 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-361e4dd8-cb64-4b8c-bfa9-07309636f436 {
  margin: 0 !important;
  overflow: visible;
}

#s-361e4dd8-cb64-4b8c-bfa9-07309636f436-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-361e4dd8-cb64-4b8c-bfa9-07309636f436 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-361e4dd8-cb64-4b8c-bfa9-07309636f436 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-361e4dd8-cb64-4b8c-bfa9-07309636f436 img.shogun-image {
  /* Add background color handling */
  
}

#s-361e4dd8-cb64-4b8c-bfa9-07309636f436 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-361e4dd8-cb64-4b8c-bfa9-07309636f436 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-361e4dd8-cb64-4b8c-bfa9-07309636f436 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-361e4dd8-cb64-4b8c-bfa9-07309636f436 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-361e4dd8-cb64-4b8c-bfa9-07309636f436 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-361e4dd8-cb64-4b8c-bfa9-07309636f436 .shogun-image-content {
  
    justify-content: center;
  
}

.s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shg-align-container {
  display: flex;
  justify-content: center
}

.s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image {
  box-sizing: border-box;
}



.s-361e4dd8-cb64-4b8c-bfa9-07309636f436 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-361e4dd8-cb64-4b8c-bfa9-07309636f436 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image-container {
      position: relative;
    }

    .s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-361e4dd8-cb64-4b8c-bfa9-07309636f436 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-361e4dd8-cb64-4b8c-bfa9-07309636f436 {
  margin: 0 !important;
  overflow: visible;
}

#s-361e4dd8-cb64-4b8c-bfa9-07309636f436-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-361e4dd8-cb64-4b8c-bfa9-07309636f436 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-361e4dd8-cb64-4b8c-bfa9-07309636f436 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-361e4dd8-cb64-4b8c-bfa9-07309636f436 img.shogun-image {
  /* Add background color handling */
  
}

#s-361e4dd8-cb64-4b8c-bfa9-07309636f436 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-361e4dd8-cb64-4b8c-bfa9-07309636f436 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-361e4dd8-cb64-4b8c-bfa9-07309636f436 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-361e4dd8-cb64-4b8c-bfa9-07309636f436 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-361e4dd8-cb64-4b8c-bfa9-07309636f436 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-361e4dd8-cb64-4b8c-bfa9-07309636f436 .shogun-image-content {
  
    justify-content: center;
  
}

.s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shg-align-container {
  display: flex;
  justify-content: center
}

.s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image {
  box-sizing: border-box;
}



.s-361e4dd8-cb64-4b8c-bfa9-07309636f436 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-361e4dd8-cb64-4b8c-bfa9-07309636f436 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image-container {
      position: relative;
    }

    .s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-361e4dd8-cb64-4b8c-bfa9-07309636f436 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-361e4dd8-cb64-4b8c-bfa9-07309636f436 {
  margin: 0 !important;
  overflow: visible;
}

#s-361e4dd8-cb64-4b8c-bfa9-07309636f436-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-361e4dd8-cb64-4b8c-bfa9-07309636f436 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-361e4dd8-cb64-4b8c-bfa9-07309636f436 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-361e4dd8-cb64-4b8c-bfa9-07309636f436 img.shogun-image {
  /* Add background color handling */
  
}

#s-361e4dd8-cb64-4b8c-bfa9-07309636f436 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-361e4dd8-cb64-4b8c-bfa9-07309636f436 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-361e4dd8-cb64-4b8c-bfa9-07309636f436 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-361e4dd8-cb64-4b8c-bfa9-07309636f436 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-361e4dd8-cb64-4b8c-bfa9-07309636f436 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-361e4dd8-cb64-4b8c-bfa9-07309636f436 .shogun-image-content {
  
    justify-content: center;
  
}

.s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shg-align-container {
  display: flex;
  justify-content: center
}

.s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image {
  box-sizing: border-box;
}



.s-361e4dd8-cb64-4b8c-bfa9-07309636f436 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-361e4dd8-cb64-4b8c-bfa9-07309636f436 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image-container {
      position: relative;
    }

    .s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-361e4dd8-cb64-4b8c-bfa9-07309636f436.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-361e4dd8-cb64-4b8c-bfa9-07309636f436 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-f9a3f24a-9710-4f89-98af-a64bed5221af {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-f9a3f24a-9710-4f89-98af-a64bed5221af {
  margin: 0 !important;
  overflow: visible;
}

#s-f9a3f24a-9710-4f89-98af-a64bed5221af-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f9a3f24a-9710-4f89-98af-a64bed5221af {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f9a3f24a-9710-4f89-98af-a64bed5221af {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f9a3f24a-9710-4f89-98af-a64bed5221af img.shogun-image {
  /* Add background color handling */
  
}

#s-f9a3f24a-9710-4f89-98af-a64bed5221af img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f9a3f24a-9710-4f89-98af-a64bed5221af .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-f9a3f24a-9710-4f89-98af-a64bed5221af .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f9a3f24a-9710-4f89-98af-a64bed5221af .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f9a3f24a-9710-4f89-98af-a64bed5221af img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-f9a3f24a-9710-4f89-98af-a64bed5221af .shogun-image-content {
  
    justify-content: center;
  
}

.s-f9a3f24a-9710-4f89-98af-a64bed5221af.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image {
  box-sizing: border-box;
}



.s-f9a3f24a-9710-4f89-98af-a64bed5221af img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f9a3f24a-9710-4f89-98af-a64bed5221af {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image-container {
      position: relative;
    }

    .s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f9a3f24a-9710-4f89-98af-a64bed5221af img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-f9a3f24a-9710-4f89-98af-a64bed5221af {
  margin: 0 !important;
  overflow: visible;
}

#s-f9a3f24a-9710-4f89-98af-a64bed5221af-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f9a3f24a-9710-4f89-98af-a64bed5221af {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f9a3f24a-9710-4f89-98af-a64bed5221af {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f9a3f24a-9710-4f89-98af-a64bed5221af img.shogun-image {
  /* Add background color handling */
  
}

#s-f9a3f24a-9710-4f89-98af-a64bed5221af img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f9a3f24a-9710-4f89-98af-a64bed5221af .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-f9a3f24a-9710-4f89-98af-a64bed5221af .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f9a3f24a-9710-4f89-98af-a64bed5221af .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f9a3f24a-9710-4f89-98af-a64bed5221af img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-f9a3f24a-9710-4f89-98af-a64bed5221af .shogun-image-content {
  
    justify-content: center;
  
}

.s-f9a3f24a-9710-4f89-98af-a64bed5221af.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image {
  box-sizing: border-box;
}



.s-f9a3f24a-9710-4f89-98af-a64bed5221af img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f9a3f24a-9710-4f89-98af-a64bed5221af {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image-container {
      position: relative;
    }

    .s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f9a3f24a-9710-4f89-98af-a64bed5221af 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-f9a3f24a-9710-4f89-98af-a64bed5221af {
  margin: 0 !important;
  overflow: visible;
}

#s-f9a3f24a-9710-4f89-98af-a64bed5221af-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f9a3f24a-9710-4f89-98af-a64bed5221af {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f9a3f24a-9710-4f89-98af-a64bed5221af {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f9a3f24a-9710-4f89-98af-a64bed5221af img.shogun-image {
  /* Add background color handling */
  
}

#s-f9a3f24a-9710-4f89-98af-a64bed5221af img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f9a3f24a-9710-4f89-98af-a64bed5221af .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-f9a3f24a-9710-4f89-98af-a64bed5221af .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f9a3f24a-9710-4f89-98af-a64bed5221af .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f9a3f24a-9710-4f89-98af-a64bed5221af img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-f9a3f24a-9710-4f89-98af-a64bed5221af .shogun-image-content {
  
    justify-content: center;
  
}

.s-f9a3f24a-9710-4f89-98af-a64bed5221af.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image {
  box-sizing: border-box;
}



.s-f9a3f24a-9710-4f89-98af-a64bed5221af img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f9a3f24a-9710-4f89-98af-a64bed5221af {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image-container {
      position: relative;
    }

    .s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f9a3f24a-9710-4f89-98af-a64bed5221af 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-f9a3f24a-9710-4f89-98af-a64bed5221af {
  margin: 0 !important;
  overflow: visible;
}

#s-f9a3f24a-9710-4f89-98af-a64bed5221af-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f9a3f24a-9710-4f89-98af-a64bed5221af {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f9a3f24a-9710-4f89-98af-a64bed5221af {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f9a3f24a-9710-4f89-98af-a64bed5221af img.shogun-image {
  /* Add background color handling */
  
}

#s-f9a3f24a-9710-4f89-98af-a64bed5221af img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f9a3f24a-9710-4f89-98af-a64bed5221af .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-f9a3f24a-9710-4f89-98af-a64bed5221af .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f9a3f24a-9710-4f89-98af-a64bed5221af .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f9a3f24a-9710-4f89-98af-a64bed5221af img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-f9a3f24a-9710-4f89-98af-a64bed5221af .shogun-image-content {
  
    justify-content: center;
  
}

.s-f9a3f24a-9710-4f89-98af-a64bed5221af.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image {
  box-sizing: border-box;
}



.s-f9a3f24a-9710-4f89-98af-a64bed5221af img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f9a3f24a-9710-4f89-98af-a64bed5221af {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image-container {
      position: relative;
    }

    .s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f9a3f24a-9710-4f89-98af-a64bed5221af img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-f9a3f24a-9710-4f89-98af-a64bed5221af {
  margin: 0 !important;
  overflow: visible;
}

#s-f9a3f24a-9710-4f89-98af-a64bed5221af-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f9a3f24a-9710-4f89-98af-a64bed5221af {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f9a3f24a-9710-4f89-98af-a64bed5221af {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f9a3f24a-9710-4f89-98af-a64bed5221af img.shogun-image {
  /* Add background color handling */
  
}

#s-f9a3f24a-9710-4f89-98af-a64bed5221af img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f9a3f24a-9710-4f89-98af-a64bed5221af .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-f9a3f24a-9710-4f89-98af-a64bed5221af .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f9a3f24a-9710-4f89-98af-a64bed5221af .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f9a3f24a-9710-4f89-98af-a64bed5221af img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-f9a3f24a-9710-4f89-98af-a64bed5221af .shogun-image-content {
  
    justify-content: center;
  
}

.s-f9a3f24a-9710-4f89-98af-a64bed5221af.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image {
  box-sizing: border-box;
}



.s-f9a3f24a-9710-4f89-98af-a64bed5221af img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f9a3f24a-9710-4f89-98af-a64bed5221af {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image-container {
      position: relative;
    }

    .s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f9a3f24a-9710-4f89-98af-a64bed5221af.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f9a3f24a-9710-4f89-98af-a64bed5221af img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-164036e4-429f-47b4-b08b-93d38cd527b9 {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-164036e4-429f-47b4-b08b-93d38cd527b9 {
  margin: 0 !important;
  overflow: visible;
}

#s-164036e4-429f-47b4-b08b-93d38cd527b9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-164036e4-429f-47b4-b08b-93d38cd527b9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-164036e4-429f-47b4-b08b-93d38cd527b9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-164036e4-429f-47b4-b08b-93d38cd527b9 img.shogun-image {
  /* Add background color handling */
  
}

#s-164036e4-429f-47b4-b08b-93d38cd527b9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-164036e4-429f-47b4-b08b-93d38cd527b9 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-164036e4-429f-47b4-b08b-93d38cd527b9 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-164036e4-429f-47b4-b08b-93d38cd527b9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-164036e4-429f-47b4-b08b-93d38cd527b9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-164036e4-429f-47b4-b08b-93d38cd527b9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-164036e4-429f-47b4-b08b-93d38cd527b9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image {
  box-sizing: border-box;
}



.s-164036e4-429f-47b4-b08b-93d38cd527b9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-164036e4-429f-47b4-b08b-93d38cd527b9 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image-container {
      position: relative;
    }

    .s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-164036e4-429f-47b4-b08b-93d38cd527b9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-164036e4-429f-47b4-b08b-93d38cd527b9 {
  margin: 0 !important;
  overflow: visible;
}

#s-164036e4-429f-47b4-b08b-93d38cd527b9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-164036e4-429f-47b4-b08b-93d38cd527b9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-164036e4-429f-47b4-b08b-93d38cd527b9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-164036e4-429f-47b4-b08b-93d38cd527b9 img.shogun-image {
  /* Add background color handling */
  
}

#s-164036e4-429f-47b4-b08b-93d38cd527b9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-164036e4-429f-47b4-b08b-93d38cd527b9 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-164036e4-429f-47b4-b08b-93d38cd527b9 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-164036e4-429f-47b4-b08b-93d38cd527b9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-164036e4-429f-47b4-b08b-93d38cd527b9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-164036e4-429f-47b4-b08b-93d38cd527b9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-164036e4-429f-47b4-b08b-93d38cd527b9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image {
  box-sizing: border-box;
}



.s-164036e4-429f-47b4-b08b-93d38cd527b9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-164036e4-429f-47b4-b08b-93d38cd527b9 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image-container {
      position: relative;
    }

    .s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-164036e4-429f-47b4-b08b-93d38cd527b9 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-164036e4-429f-47b4-b08b-93d38cd527b9 {
  margin: 0 !important;
  overflow: visible;
}

#s-164036e4-429f-47b4-b08b-93d38cd527b9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-164036e4-429f-47b4-b08b-93d38cd527b9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-164036e4-429f-47b4-b08b-93d38cd527b9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-164036e4-429f-47b4-b08b-93d38cd527b9 img.shogun-image {
  /* Add background color handling */
  
}

#s-164036e4-429f-47b4-b08b-93d38cd527b9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-164036e4-429f-47b4-b08b-93d38cd527b9 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-164036e4-429f-47b4-b08b-93d38cd527b9 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-164036e4-429f-47b4-b08b-93d38cd527b9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-164036e4-429f-47b4-b08b-93d38cd527b9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-164036e4-429f-47b4-b08b-93d38cd527b9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-164036e4-429f-47b4-b08b-93d38cd527b9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image {
  box-sizing: border-box;
}



.s-164036e4-429f-47b4-b08b-93d38cd527b9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-164036e4-429f-47b4-b08b-93d38cd527b9 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image-container {
      position: relative;
    }

    .s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-164036e4-429f-47b4-b08b-93d38cd527b9 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-164036e4-429f-47b4-b08b-93d38cd527b9 {
  margin: 0 !important;
  overflow: visible;
}

#s-164036e4-429f-47b4-b08b-93d38cd527b9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-164036e4-429f-47b4-b08b-93d38cd527b9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-164036e4-429f-47b4-b08b-93d38cd527b9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-164036e4-429f-47b4-b08b-93d38cd527b9 img.shogun-image {
  /* Add background color handling */
  
}

#s-164036e4-429f-47b4-b08b-93d38cd527b9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-164036e4-429f-47b4-b08b-93d38cd527b9 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-164036e4-429f-47b4-b08b-93d38cd527b9 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-164036e4-429f-47b4-b08b-93d38cd527b9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-164036e4-429f-47b4-b08b-93d38cd527b9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-164036e4-429f-47b4-b08b-93d38cd527b9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-164036e4-429f-47b4-b08b-93d38cd527b9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image {
  box-sizing: border-box;
}



.s-164036e4-429f-47b4-b08b-93d38cd527b9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-164036e4-429f-47b4-b08b-93d38cd527b9 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image-container {
      position: relative;
    }

    .s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-164036e4-429f-47b4-b08b-93d38cd527b9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-164036e4-429f-47b4-b08b-93d38cd527b9 {
  margin: 0 !important;
  overflow: visible;
}

#s-164036e4-429f-47b4-b08b-93d38cd527b9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-164036e4-429f-47b4-b08b-93d38cd527b9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-164036e4-429f-47b4-b08b-93d38cd527b9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-164036e4-429f-47b4-b08b-93d38cd527b9 img.shogun-image {
  /* Add background color handling */
  
}

#s-164036e4-429f-47b4-b08b-93d38cd527b9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-164036e4-429f-47b4-b08b-93d38cd527b9 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-164036e4-429f-47b4-b08b-93d38cd527b9 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-164036e4-429f-47b4-b08b-93d38cd527b9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-164036e4-429f-47b4-b08b-93d38cd527b9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-164036e4-429f-47b4-b08b-93d38cd527b9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-164036e4-429f-47b4-b08b-93d38cd527b9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image {
  box-sizing: border-box;
}



.s-164036e4-429f-47b4-b08b-93d38cd527b9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-164036e4-429f-47b4-b08b-93d38cd527b9 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image-container {
      position: relative;
    }

    .s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-164036e4-429f-47b4-b08b-93d38cd527b9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-164036e4-429f-47b4-b08b-93d38cd527b9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-28a6173b-e039-4349-ba2f-16ef89e0d5cb {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-28a6173b-e039-4349-ba2f-16ef89e0d5cb {
  margin: 0 !important;
  overflow: visible;
}

#s-28a6173b-e039-4349-ba2f-16ef89e0d5cb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-28a6173b-e039-4349-ba2f-16ef89e0d5cb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-28a6173b-e039-4349-ba2f-16ef89e0d5cb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-28a6173b-e039-4349-ba2f-16ef89e0d5cb img.shogun-image {
  /* Add background color handling */
  
}

#s-28a6173b-e039-4349-ba2f-16ef89e0d5cb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-28a6173b-e039-4349-ba2f-16ef89e0d5cb .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-28a6173b-e039-4349-ba2f-16ef89e0d5cb .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-28a6173b-e039-4349-ba2f-16ef89e0d5cb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-28a6173b-e039-4349-ba2f-16ef89e0d5cb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-28a6173b-e039-4349-ba2f-16ef89e0d5cb .shogun-image-content {
  
    justify-content: center;
  
}

.s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image {
  box-sizing: border-box;
}



.s-28a6173b-e039-4349-ba2f-16ef89e0d5cb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-28a6173b-e039-4349-ba2f-16ef89e0d5cb {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image-container {
      position: relative;
    }

    .s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-28a6173b-e039-4349-ba2f-16ef89e0d5cb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-28a6173b-e039-4349-ba2f-16ef89e0d5cb {
  margin: 0 !important;
  overflow: visible;
}

#s-28a6173b-e039-4349-ba2f-16ef89e0d5cb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-28a6173b-e039-4349-ba2f-16ef89e0d5cb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-28a6173b-e039-4349-ba2f-16ef89e0d5cb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-28a6173b-e039-4349-ba2f-16ef89e0d5cb img.shogun-image {
  /* Add background color handling */
  
}

#s-28a6173b-e039-4349-ba2f-16ef89e0d5cb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-28a6173b-e039-4349-ba2f-16ef89e0d5cb .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-28a6173b-e039-4349-ba2f-16ef89e0d5cb .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-28a6173b-e039-4349-ba2f-16ef89e0d5cb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-28a6173b-e039-4349-ba2f-16ef89e0d5cb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-28a6173b-e039-4349-ba2f-16ef89e0d5cb .shogun-image-content {
  
    justify-content: center;
  
}

.s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image {
  box-sizing: border-box;
}



.s-28a6173b-e039-4349-ba2f-16ef89e0d5cb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-28a6173b-e039-4349-ba2f-16ef89e0d5cb {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image-container {
      position: relative;
    }

    .s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-28a6173b-e039-4349-ba2f-16ef89e0d5cb 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-28a6173b-e039-4349-ba2f-16ef89e0d5cb {
  margin: 0 !important;
  overflow: visible;
}

#s-28a6173b-e039-4349-ba2f-16ef89e0d5cb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-28a6173b-e039-4349-ba2f-16ef89e0d5cb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-28a6173b-e039-4349-ba2f-16ef89e0d5cb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-28a6173b-e039-4349-ba2f-16ef89e0d5cb img.shogun-image {
  /* Add background color handling */
  
}

#s-28a6173b-e039-4349-ba2f-16ef89e0d5cb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-28a6173b-e039-4349-ba2f-16ef89e0d5cb .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-28a6173b-e039-4349-ba2f-16ef89e0d5cb .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-28a6173b-e039-4349-ba2f-16ef89e0d5cb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-28a6173b-e039-4349-ba2f-16ef89e0d5cb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-28a6173b-e039-4349-ba2f-16ef89e0d5cb .shogun-image-content {
  
    justify-content: center;
  
}

.s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image {
  box-sizing: border-box;
}



.s-28a6173b-e039-4349-ba2f-16ef89e0d5cb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-28a6173b-e039-4349-ba2f-16ef89e0d5cb {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image-container {
      position: relative;
    }

    .s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-28a6173b-e039-4349-ba2f-16ef89e0d5cb 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-28a6173b-e039-4349-ba2f-16ef89e0d5cb {
  margin: 0 !important;
  overflow: visible;
}

#s-28a6173b-e039-4349-ba2f-16ef89e0d5cb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-28a6173b-e039-4349-ba2f-16ef89e0d5cb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-28a6173b-e039-4349-ba2f-16ef89e0d5cb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-28a6173b-e039-4349-ba2f-16ef89e0d5cb img.shogun-image {
  /* Add background color handling */
  
}

#s-28a6173b-e039-4349-ba2f-16ef89e0d5cb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-28a6173b-e039-4349-ba2f-16ef89e0d5cb .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-28a6173b-e039-4349-ba2f-16ef89e0d5cb .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-28a6173b-e039-4349-ba2f-16ef89e0d5cb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-28a6173b-e039-4349-ba2f-16ef89e0d5cb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-28a6173b-e039-4349-ba2f-16ef89e0d5cb .shogun-image-content {
  
    justify-content: center;
  
}

.s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image {
  box-sizing: border-box;
}



.s-28a6173b-e039-4349-ba2f-16ef89e0d5cb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-28a6173b-e039-4349-ba2f-16ef89e0d5cb {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image-container {
      position: relative;
    }

    .s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-28a6173b-e039-4349-ba2f-16ef89e0d5cb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-28a6173b-e039-4349-ba2f-16ef89e0d5cb {
  margin: 0 !important;
  overflow: visible;
}

#s-28a6173b-e039-4349-ba2f-16ef89e0d5cb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-28a6173b-e039-4349-ba2f-16ef89e0d5cb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-28a6173b-e039-4349-ba2f-16ef89e0d5cb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-28a6173b-e039-4349-ba2f-16ef89e0d5cb img.shogun-image {
  /* Add background color handling */
  
}

#s-28a6173b-e039-4349-ba2f-16ef89e0d5cb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-28a6173b-e039-4349-ba2f-16ef89e0d5cb .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-28a6173b-e039-4349-ba2f-16ef89e0d5cb .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-28a6173b-e039-4349-ba2f-16ef89e0d5cb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-28a6173b-e039-4349-ba2f-16ef89e0d5cb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-28a6173b-e039-4349-ba2f-16ef89e0d5cb .shogun-image-content {
  
    justify-content: center;
  
}

.s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image {
  box-sizing: border-box;
}



.s-28a6173b-e039-4349-ba2f-16ef89e0d5cb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-28a6173b-e039-4349-ba2f-16ef89e0d5cb {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image-container {
      position: relative;
    }

    .s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-28a6173b-e039-4349-ba2f-16ef89e0d5cb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-28a6173b-e039-4349-ba2f-16ef89e0d5cb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee {
  margin: 0 !important;
  overflow: visible;
}

#s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee img.shogun-image {
  /* Add background color handling */
  
}

#s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee .shogun-image-content {
  
    justify-content: center;
  
}

.s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image {
  box-sizing: border-box;
}



.s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image-container {
      position: relative;
    }

    .s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee {
  margin: 0 !important;
  overflow: visible;
}

#s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee img.shogun-image {
  /* Add background color handling */
  
}

#s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee .shogun-image-content {
  
    justify-content: center;
  
}

.s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image {
  box-sizing: border-box;
}



.s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image-container {
      position: relative;
    }

    .s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee 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-74bcd781-d3c5-4c5e-9d15-9b8699f150ee {
  margin: 0 !important;
  overflow: visible;
}

#s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee img.shogun-image {
  /* Add background color handling */
  
}

#s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee .shogun-image-content {
  
    justify-content: center;
  
}

.s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image {
  box-sizing: border-box;
}



.s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image-container {
      position: relative;
    }

    .s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee 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-74bcd781-d3c5-4c5e-9d15-9b8699f150ee {
  margin: 0 !important;
  overflow: visible;
}

#s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee img.shogun-image {
  /* Add background color handling */
  
}

#s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee .shogun-image-content {
  
    justify-content: center;
  
}

.s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image {
  box-sizing: border-box;
}



.s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image-container {
      position: relative;
    }

    .s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee {
  margin: 0 !important;
  overflow: visible;
}

#s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee img.shogun-image {
  /* Add background color handling */
  
}

#s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee .shogun-image-content {
  
    justify-content: center;
  
}

.s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image {
  box-sizing: border-box;
}



.s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image-container {
      position: relative;
    }

    .s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-74bcd781-d3c5-4c5e-9d15-9b8699f150ee img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab {
  margin: 0 !important;
  overflow: visible;
}

#s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab img.shogun-image {
  /* Add background color handling */
  
}

#s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab .shogun-image-content {
  
    justify-content: center;
  
}

.s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image {
  box-sizing: border-box;
}



.s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image-container {
      position: relative;
    }

    .s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab {
  margin: 0 !important;
  overflow: visible;
}

#s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab img.shogun-image {
  /* Add background color handling */
  
}

#s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab .shogun-image-content {
  
    justify-content: center;
  
}

.s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image {
  box-sizing: border-box;
}



.s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image-container {
      position: relative;
    }

    .s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab 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-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab {
  margin: 0 !important;
  overflow: visible;
}

#s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab img.shogun-image {
  /* Add background color handling */
  
}

#s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab .shogun-image-content {
  
    justify-content: center;
  
}

.s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image {
  box-sizing: border-box;
}



.s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image-container {
      position: relative;
    }

    .s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab 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-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab {
  margin: 0 !important;
  overflow: visible;
}

#s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab img.shogun-image {
  /* Add background color handling */
  
}

#s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab .shogun-image-content {
  
    justify-content: center;
  
}

.s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image {
  box-sizing: border-box;
}



.s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image-container {
      position: relative;
    }

    .s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab {
  margin: 0 !important;
  overflow: visible;
}

#s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab img.shogun-image {
  /* Add background color handling */
  
}

#s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab .shogun-image-content {
  
    justify-content: center;
  
}

.s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image {
  box-sizing: border-box;
}



.s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image-container {
      position: relative;
    }

    .s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ea54a0dc-04e8-45f9-9e8a-f16863d6dbab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-bb8e4556-7970-45aa-8406-39f57aa5d29f {
  margin-top: -8px;
margin-bottom: -8px;
min-height: 50px;
}








#s-bb8e4556-7970-45aa-8406-39f57aa5d29f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bb8e4556-7970-45aa-8406-39f57aa5d29f.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-6d93ab04-d0c6-4e0d-a43d-4dbf7df1ad6d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6d93ab04-d0c6-4e0d-a43d-4dbf7df1ad6d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-6d93ab04-d0c6-4e0d-a43d-4dbf7df1ad6d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-6d93ab04-d0c6-4e0d-a43d-4dbf7df1ad6d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-d19b1de6-8d88-4014-897d-8b7e6ea87268 {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-d19b1de6-8d88-4014-897d-8b7e6ea87268 {
  margin: 0 !important;
  overflow: visible;
}

#s-d19b1de6-8d88-4014-897d-8b7e6ea87268-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d19b1de6-8d88-4014-897d-8b7e6ea87268 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d19b1de6-8d88-4014-897d-8b7e6ea87268 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d19b1de6-8d88-4014-897d-8b7e6ea87268 img.shogun-image {
  /* Add background color handling */
  
}

#s-d19b1de6-8d88-4014-897d-8b7e6ea87268 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d19b1de6-8d88-4014-897d-8b7e6ea87268 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-d19b1de6-8d88-4014-897d-8b7e6ea87268 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d19b1de6-8d88-4014-897d-8b7e6ea87268 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d19b1de6-8d88-4014-897d-8b7e6ea87268 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-d19b1de6-8d88-4014-897d-8b7e6ea87268 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image {
  box-sizing: border-box;
}



.s-d19b1de6-8d88-4014-897d-8b7e6ea87268 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d19b1de6-8d88-4014-897d-8b7e6ea87268 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image-container {
      position: relative;
    }

    .s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d19b1de6-8d88-4014-897d-8b7e6ea87268 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-d19b1de6-8d88-4014-897d-8b7e6ea87268 {
  margin: 0 !important;
  overflow: visible;
}

#s-d19b1de6-8d88-4014-897d-8b7e6ea87268-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d19b1de6-8d88-4014-897d-8b7e6ea87268 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d19b1de6-8d88-4014-897d-8b7e6ea87268 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d19b1de6-8d88-4014-897d-8b7e6ea87268 img.shogun-image {
  /* Add background color handling */
  
}

#s-d19b1de6-8d88-4014-897d-8b7e6ea87268 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d19b1de6-8d88-4014-897d-8b7e6ea87268 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-d19b1de6-8d88-4014-897d-8b7e6ea87268 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d19b1de6-8d88-4014-897d-8b7e6ea87268 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d19b1de6-8d88-4014-897d-8b7e6ea87268 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-d19b1de6-8d88-4014-897d-8b7e6ea87268 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image {
  box-sizing: border-box;
}



.s-d19b1de6-8d88-4014-897d-8b7e6ea87268 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d19b1de6-8d88-4014-897d-8b7e6ea87268 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image-container {
      position: relative;
    }

    .s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d19b1de6-8d88-4014-897d-8b7e6ea87268 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-d19b1de6-8d88-4014-897d-8b7e6ea87268 {
  margin: 0 !important;
  overflow: visible;
}

#s-d19b1de6-8d88-4014-897d-8b7e6ea87268-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d19b1de6-8d88-4014-897d-8b7e6ea87268 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d19b1de6-8d88-4014-897d-8b7e6ea87268 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d19b1de6-8d88-4014-897d-8b7e6ea87268 img.shogun-image {
  /* Add background color handling */
  
}

#s-d19b1de6-8d88-4014-897d-8b7e6ea87268 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d19b1de6-8d88-4014-897d-8b7e6ea87268 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-d19b1de6-8d88-4014-897d-8b7e6ea87268 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d19b1de6-8d88-4014-897d-8b7e6ea87268 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d19b1de6-8d88-4014-897d-8b7e6ea87268 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-d19b1de6-8d88-4014-897d-8b7e6ea87268 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image {
  box-sizing: border-box;
}



.s-d19b1de6-8d88-4014-897d-8b7e6ea87268 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d19b1de6-8d88-4014-897d-8b7e6ea87268 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image-container {
      position: relative;
    }

    .s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d19b1de6-8d88-4014-897d-8b7e6ea87268 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-d19b1de6-8d88-4014-897d-8b7e6ea87268 {
  margin: 0 !important;
  overflow: visible;
}

#s-d19b1de6-8d88-4014-897d-8b7e6ea87268-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d19b1de6-8d88-4014-897d-8b7e6ea87268 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d19b1de6-8d88-4014-897d-8b7e6ea87268 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d19b1de6-8d88-4014-897d-8b7e6ea87268 img.shogun-image {
  /* Add background color handling */
  
}

#s-d19b1de6-8d88-4014-897d-8b7e6ea87268 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d19b1de6-8d88-4014-897d-8b7e6ea87268 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-d19b1de6-8d88-4014-897d-8b7e6ea87268 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d19b1de6-8d88-4014-897d-8b7e6ea87268 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d19b1de6-8d88-4014-897d-8b7e6ea87268 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-d19b1de6-8d88-4014-897d-8b7e6ea87268 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image {
  box-sizing: border-box;
}



.s-d19b1de6-8d88-4014-897d-8b7e6ea87268 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d19b1de6-8d88-4014-897d-8b7e6ea87268 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image-container {
      position: relative;
    }

    .s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d19b1de6-8d88-4014-897d-8b7e6ea87268 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-d19b1de6-8d88-4014-897d-8b7e6ea87268 {
  margin: 0 !important;
  overflow: visible;
}

#s-d19b1de6-8d88-4014-897d-8b7e6ea87268-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d19b1de6-8d88-4014-897d-8b7e6ea87268 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d19b1de6-8d88-4014-897d-8b7e6ea87268 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d19b1de6-8d88-4014-897d-8b7e6ea87268 img.shogun-image {
  /* Add background color handling */
  
}

#s-d19b1de6-8d88-4014-897d-8b7e6ea87268 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d19b1de6-8d88-4014-897d-8b7e6ea87268 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-d19b1de6-8d88-4014-897d-8b7e6ea87268 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d19b1de6-8d88-4014-897d-8b7e6ea87268 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d19b1de6-8d88-4014-897d-8b7e6ea87268 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-d19b1de6-8d88-4014-897d-8b7e6ea87268 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image {
  box-sizing: border-box;
}



.s-d19b1de6-8d88-4014-897d-8b7e6ea87268 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d19b1de6-8d88-4014-897d-8b7e6ea87268 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image-container {
      position: relative;
    }

    .s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d19b1de6-8d88-4014-897d-8b7e6ea87268.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d19b1de6-8d88-4014-897d-8b7e6ea87268 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 {
  margin: 0 !important;
  overflow: visible;
}

#s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 img.shogun-image {
  /* Add background color handling */
  
}

#s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image {
  box-sizing: border-box;
}



.s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image-container {
      position: relative;
    }

    .s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 {
  margin: 0 !important;
  overflow: visible;
}

#s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 img.shogun-image {
  /* Add background color handling */
  
}

#s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image {
  box-sizing: border-box;
}



.s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image-container {
      position: relative;
    }

    .s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 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-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 {
  margin: 0 !important;
  overflow: visible;
}

#s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 img.shogun-image {
  /* Add background color handling */
  
}

#s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image {
  box-sizing: border-box;
}



.s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image-container {
      position: relative;
    }

    .s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 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-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 {
  margin: 0 !important;
  overflow: visible;
}

#s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 img.shogun-image {
  /* Add background color handling */
  
}

#s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image {
  box-sizing: border-box;
}



.s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image-container {
      position: relative;
    }

    .s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 {
  margin: 0 !important;
  overflow: visible;
}

#s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 img.shogun-image {
  /* Add background color handling */
  
}

#s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image {
  box-sizing: border-box;
}



.s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image-container {
      position: relative;
    }

    .s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2764bc0b-c7ec-4969-a017-cc0c0cdcc404 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
@media (min-width: 0px) {
[id="s-2c409413-61fd-4481-b1f4-36dc0684412c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-2c409413-61fd-4481-b1f4-36dc0684412c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-2c409413-61fd-4481-b1f4-36dc0684412c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-2c409413-61fd-4481-b1f4-36dc0684412c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-53b2375f-9656-42ba-8ef2-965768846ceb {
  max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-53b2375f-9656-42ba-8ef2-965768846ceb {
  margin: 0 !important;
  overflow: visible;
}

#s-53b2375f-9656-42ba-8ef2-965768846ceb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-53b2375f-9656-42ba-8ef2-965768846ceb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-53b2375f-9656-42ba-8ef2-965768846ceb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-53b2375f-9656-42ba-8ef2-965768846ceb img.shogun-image {
  /* Add background color handling */
  
}

#s-53b2375f-9656-42ba-8ef2-965768846ceb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-53b2375f-9656-42ba-8ef2-965768846ceb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-53b2375f-9656-42ba-8ef2-965768846ceb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-53b2375f-9656-42ba-8ef2-965768846ceb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-53b2375f-9656-42ba-8ef2-965768846ceb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-53b2375f-9656-42ba-8ef2-965768846ceb .shogun-image-content {
  
    justify-content: center;
  
}

.s-53b2375f-9656-42ba-8ef2-965768846ceb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image {
  box-sizing: border-box;
}



.s-53b2375f-9656-42ba-8ef2-965768846ceb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-53b2375f-9656-42ba-8ef2-965768846ceb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image-container {
      position: relative;
    }

    .s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-53b2375f-9656-42ba-8ef2-965768846ceb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-53b2375f-9656-42ba-8ef2-965768846ceb {
  margin: 0 !important;
  overflow: visible;
}

#s-53b2375f-9656-42ba-8ef2-965768846ceb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-53b2375f-9656-42ba-8ef2-965768846ceb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-53b2375f-9656-42ba-8ef2-965768846ceb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-53b2375f-9656-42ba-8ef2-965768846ceb img.shogun-image {
  /* Add background color handling */
  
}

#s-53b2375f-9656-42ba-8ef2-965768846ceb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-53b2375f-9656-42ba-8ef2-965768846ceb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-53b2375f-9656-42ba-8ef2-965768846ceb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-53b2375f-9656-42ba-8ef2-965768846ceb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-53b2375f-9656-42ba-8ef2-965768846ceb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-53b2375f-9656-42ba-8ef2-965768846ceb .shogun-image-content {
  
    justify-content: center;
  
}

.s-53b2375f-9656-42ba-8ef2-965768846ceb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image {
  box-sizing: border-box;
}



.s-53b2375f-9656-42ba-8ef2-965768846ceb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-53b2375f-9656-42ba-8ef2-965768846ceb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image-container {
      position: relative;
    }

    .s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-53b2375f-9656-42ba-8ef2-965768846ceb 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-53b2375f-9656-42ba-8ef2-965768846ceb {
  margin: 0 !important;
  overflow: visible;
}

#s-53b2375f-9656-42ba-8ef2-965768846ceb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-53b2375f-9656-42ba-8ef2-965768846ceb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-53b2375f-9656-42ba-8ef2-965768846ceb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-53b2375f-9656-42ba-8ef2-965768846ceb img.shogun-image {
  /* Add background color handling */
  
}

#s-53b2375f-9656-42ba-8ef2-965768846ceb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-53b2375f-9656-42ba-8ef2-965768846ceb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-53b2375f-9656-42ba-8ef2-965768846ceb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-53b2375f-9656-42ba-8ef2-965768846ceb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-53b2375f-9656-42ba-8ef2-965768846ceb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-53b2375f-9656-42ba-8ef2-965768846ceb .shogun-image-content {
  
    justify-content: center;
  
}

.s-53b2375f-9656-42ba-8ef2-965768846ceb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image {
  box-sizing: border-box;
}



.s-53b2375f-9656-42ba-8ef2-965768846ceb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-53b2375f-9656-42ba-8ef2-965768846ceb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image-container {
      position: relative;
    }

    .s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-53b2375f-9656-42ba-8ef2-965768846ceb 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-53b2375f-9656-42ba-8ef2-965768846ceb {
  margin: 0 !important;
  overflow: visible;
}

#s-53b2375f-9656-42ba-8ef2-965768846ceb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-53b2375f-9656-42ba-8ef2-965768846ceb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-53b2375f-9656-42ba-8ef2-965768846ceb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-53b2375f-9656-42ba-8ef2-965768846ceb img.shogun-image {
  /* Add background color handling */
  
}

#s-53b2375f-9656-42ba-8ef2-965768846ceb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-53b2375f-9656-42ba-8ef2-965768846ceb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-53b2375f-9656-42ba-8ef2-965768846ceb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-53b2375f-9656-42ba-8ef2-965768846ceb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-53b2375f-9656-42ba-8ef2-965768846ceb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-53b2375f-9656-42ba-8ef2-965768846ceb .shogun-image-content {
  
    justify-content: center;
  
}

.s-53b2375f-9656-42ba-8ef2-965768846ceb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image {
  box-sizing: border-box;
}



.s-53b2375f-9656-42ba-8ef2-965768846ceb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-53b2375f-9656-42ba-8ef2-965768846ceb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image-container {
      position: relative;
    }

    .s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-53b2375f-9656-42ba-8ef2-965768846ceb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-53b2375f-9656-42ba-8ef2-965768846ceb {
  margin: 0 !important;
  overflow: visible;
}

#s-53b2375f-9656-42ba-8ef2-965768846ceb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-53b2375f-9656-42ba-8ef2-965768846ceb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-53b2375f-9656-42ba-8ef2-965768846ceb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-53b2375f-9656-42ba-8ef2-965768846ceb img.shogun-image {
  /* Add background color handling */
  
}

#s-53b2375f-9656-42ba-8ef2-965768846ceb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-53b2375f-9656-42ba-8ef2-965768846ceb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-53b2375f-9656-42ba-8ef2-965768846ceb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-53b2375f-9656-42ba-8ef2-965768846ceb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-53b2375f-9656-42ba-8ef2-965768846ceb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-53b2375f-9656-42ba-8ef2-965768846ceb .shogun-image-content {
  
    justify-content: center;
  
}

.s-53b2375f-9656-42ba-8ef2-965768846ceb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image {
  box-sizing: border-box;
}



.s-53b2375f-9656-42ba-8ef2-965768846ceb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-53b2375f-9656-42ba-8ef2-965768846ceb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image-container {
      position: relative;
    }

    .s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-53b2375f-9656-42ba-8ef2-965768846ceb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-53b2375f-9656-42ba-8ef2-965768846ceb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 {
  max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 {
  margin: 0 !important;
  overflow: visible;
}

#s-b4ed60d4-717c-4df3-b28e-c36e506d91b8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 img.shogun-image {
  /* Add background color handling */
  
}

#s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image {
  box-sizing: border-box;
}



.s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image-container {
      position: relative;
    }

    .s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 {
  margin: 0 !important;
  overflow: visible;
}

#s-b4ed60d4-717c-4df3-b28e-c36e506d91b8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 img.shogun-image {
  /* Add background color handling */
  
}

#s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image {
  box-sizing: border-box;
}



.s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image-container {
      position: relative;
    }

    .s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 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-b4ed60d4-717c-4df3-b28e-c36e506d91b8 {
  margin: 0 !important;
  overflow: visible;
}

#s-b4ed60d4-717c-4df3-b28e-c36e506d91b8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 img.shogun-image {
  /* Add background color handling */
  
}

#s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image {
  box-sizing: border-box;
}



.s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image-container {
      position: relative;
    }

    .s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 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-b4ed60d4-717c-4df3-b28e-c36e506d91b8 {
  margin: 0 !important;
  overflow: visible;
}

#s-b4ed60d4-717c-4df3-b28e-c36e506d91b8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 img.shogun-image {
  /* Add background color handling */
  
}

#s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image {
  box-sizing: border-box;
}



.s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image-container {
      position: relative;
    }

    .s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 {
  margin: 0 !important;
  overflow: visible;
}

#s-b4ed60d4-717c-4df3-b28e-c36e506d91b8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 img.shogun-image {
  /* Add background color handling */
  
}

#s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image {
  box-sizing: border-box;
}



.s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image-container {
      position: relative;
    }

    .s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b4ed60d4-717c-4df3-b28e-c36e506d91b8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b4ed60d4-717c-4df3-b28e-c36e506d91b8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-d90fd070-3f50-4e1d-bd47-7564a3edeecc {
  max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-d90fd070-3f50-4e1d-bd47-7564a3edeecc {
  margin: 0 !important;
  overflow: visible;
}

#s-d90fd070-3f50-4e1d-bd47-7564a3edeecc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d90fd070-3f50-4e1d-bd47-7564a3edeecc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d90fd070-3f50-4e1d-bd47-7564a3edeecc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d90fd070-3f50-4e1d-bd47-7564a3edeecc img.shogun-image {
  /* Add background color handling */
  
}

#s-d90fd070-3f50-4e1d-bd47-7564a3edeecc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d90fd070-3f50-4e1d-bd47-7564a3edeecc .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d90fd070-3f50-4e1d-bd47-7564a3edeecc .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d90fd070-3f50-4e1d-bd47-7564a3edeecc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d90fd070-3f50-4e1d-bd47-7564a3edeecc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-d90fd070-3f50-4e1d-bd47-7564a3edeecc .shogun-image-content {
  
    justify-content: center;
  
}

.s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image {
  box-sizing: border-box;
}



.s-d90fd070-3f50-4e1d-bd47-7564a3edeecc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d90fd070-3f50-4e1d-bd47-7564a3edeecc {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image-container {
      position: relative;
    }

    .s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d90fd070-3f50-4e1d-bd47-7564a3edeecc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-d90fd070-3f50-4e1d-bd47-7564a3edeecc {
  margin: 0 !important;
  overflow: visible;
}

#s-d90fd070-3f50-4e1d-bd47-7564a3edeecc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d90fd070-3f50-4e1d-bd47-7564a3edeecc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d90fd070-3f50-4e1d-bd47-7564a3edeecc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d90fd070-3f50-4e1d-bd47-7564a3edeecc img.shogun-image {
  /* Add background color handling */
  
}

#s-d90fd070-3f50-4e1d-bd47-7564a3edeecc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d90fd070-3f50-4e1d-bd47-7564a3edeecc .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d90fd070-3f50-4e1d-bd47-7564a3edeecc .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d90fd070-3f50-4e1d-bd47-7564a3edeecc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d90fd070-3f50-4e1d-bd47-7564a3edeecc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-d90fd070-3f50-4e1d-bd47-7564a3edeecc .shogun-image-content {
  
    justify-content: center;
  
}

.s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image {
  box-sizing: border-box;
}



.s-d90fd070-3f50-4e1d-bd47-7564a3edeecc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d90fd070-3f50-4e1d-bd47-7564a3edeecc {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image-container {
      position: relative;
    }

    .s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d90fd070-3f50-4e1d-bd47-7564a3edeecc 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-d90fd070-3f50-4e1d-bd47-7564a3edeecc {
  margin: 0 !important;
  overflow: visible;
}

#s-d90fd070-3f50-4e1d-bd47-7564a3edeecc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d90fd070-3f50-4e1d-bd47-7564a3edeecc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d90fd070-3f50-4e1d-bd47-7564a3edeecc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d90fd070-3f50-4e1d-bd47-7564a3edeecc img.shogun-image {
  /* Add background color handling */
  
}

#s-d90fd070-3f50-4e1d-bd47-7564a3edeecc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d90fd070-3f50-4e1d-bd47-7564a3edeecc .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d90fd070-3f50-4e1d-bd47-7564a3edeecc .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d90fd070-3f50-4e1d-bd47-7564a3edeecc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d90fd070-3f50-4e1d-bd47-7564a3edeecc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-d90fd070-3f50-4e1d-bd47-7564a3edeecc .shogun-image-content {
  
    justify-content: center;
  
}

.s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image {
  box-sizing: border-box;
}



.s-d90fd070-3f50-4e1d-bd47-7564a3edeecc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d90fd070-3f50-4e1d-bd47-7564a3edeecc {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image-container {
      position: relative;
    }

    .s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d90fd070-3f50-4e1d-bd47-7564a3edeecc 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-d90fd070-3f50-4e1d-bd47-7564a3edeecc {
  margin: 0 !important;
  overflow: visible;
}

#s-d90fd070-3f50-4e1d-bd47-7564a3edeecc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d90fd070-3f50-4e1d-bd47-7564a3edeecc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d90fd070-3f50-4e1d-bd47-7564a3edeecc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d90fd070-3f50-4e1d-bd47-7564a3edeecc img.shogun-image {
  /* Add background color handling */
  
}

#s-d90fd070-3f50-4e1d-bd47-7564a3edeecc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d90fd070-3f50-4e1d-bd47-7564a3edeecc .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d90fd070-3f50-4e1d-bd47-7564a3edeecc .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d90fd070-3f50-4e1d-bd47-7564a3edeecc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d90fd070-3f50-4e1d-bd47-7564a3edeecc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-d90fd070-3f50-4e1d-bd47-7564a3edeecc .shogun-image-content {
  
    justify-content: center;
  
}

.s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image {
  box-sizing: border-box;
}



.s-d90fd070-3f50-4e1d-bd47-7564a3edeecc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d90fd070-3f50-4e1d-bd47-7564a3edeecc {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image-container {
      position: relative;
    }

    .s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d90fd070-3f50-4e1d-bd47-7564a3edeecc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-d90fd070-3f50-4e1d-bd47-7564a3edeecc {
  margin: 0 !important;
  overflow: visible;
}

#s-d90fd070-3f50-4e1d-bd47-7564a3edeecc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d90fd070-3f50-4e1d-bd47-7564a3edeecc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d90fd070-3f50-4e1d-bd47-7564a3edeecc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d90fd070-3f50-4e1d-bd47-7564a3edeecc img.shogun-image {
  /* Add background color handling */
  
}

#s-d90fd070-3f50-4e1d-bd47-7564a3edeecc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d90fd070-3f50-4e1d-bd47-7564a3edeecc .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d90fd070-3f50-4e1d-bd47-7564a3edeecc .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d90fd070-3f50-4e1d-bd47-7564a3edeecc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d90fd070-3f50-4e1d-bd47-7564a3edeecc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-d90fd070-3f50-4e1d-bd47-7564a3edeecc .shogun-image-content {
  
    justify-content: center;
  
}

.s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image {
  box-sizing: border-box;
}



.s-d90fd070-3f50-4e1d-bd47-7564a3edeecc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d90fd070-3f50-4e1d-bd47-7564a3edeecc {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image-container {
      position: relative;
    }

    .s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d90fd070-3f50-4e1d-bd47-7564a3edeecc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d90fd070-3f50-4e1d-bd47-7564a3edeecc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-a72ae86b-ec07-47a4-89ee-af27639236a8 {
  max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}

#s-a72ae86b-ec07-47a4-89ee-af27639236a8 {
  margin: 0 !important;
  overflow: visible;
}

#s-a72ae86b-ec07-47a4-89ee-af27639236a8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a72ae86b-ec07-47a4-89ee-af27639236a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a72ae86b-ec07-47a4-89ee-af27639236a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a72ae86b-ec07-47a4-89ee-af27639236a8 img.shogun-image {
  /* Add background color handling */
  
}

#s-a72ae86b-ec07-47a4-89ee-af27639236a8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a72ae86b-ec07-47a4-89ee-af27639236a8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a72ae86b-ec07-47a4-89ee-af27639236a8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a72ae86b-ec07-47a4-89ee-af27639236a8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a72ae86b-ec07-47a4-89ee-af27639236a8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-a72ae86b-ec07-47a4-89ee-af27639236a8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a72ae86b-ec07-47a4-89ee-af27639236a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image {
  box-sizing: border-box;
}



.s-a72ae86b-ec07-47a4-89ee-af27639236a8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a72ae86b-ec07-47a4-89ee-af27639236a8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image-container {
      position: relative;
    }

    .s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a72ae86b-ec07-47a4-89ee-af27639236a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

@media (min-width: 1200px){#s-a72ae86b-ec07-47a4-89ee-af27639236a8 {
  margin: 0 !important;
  overflow: visible;
}

#s-a72ae86b-ec07-47a4-89ee-af27639236a8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a72ae86b-ec07-47a4-89ee-af27639236a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a72ae86b-ec07-47a4-89ee-af27639236a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a72ae86b-ec07-47a4-89ee-af27639236a8 img.shogun-image {
  /* Add background color handling */
  
}

#s-a72ae86b-ec07-47a4-89ee-af27639236a8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a72ae86b-ec07-47a4-89ee-af27639236a8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a72ae86b-ec07-47a4-89ee-af27639236a8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a72ae86b-ec07-47a4-89ee-af27639236a8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a72ae86b-ec07-47a4-89ee-af27639236a8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-a72ae86b-ec07-47a4-89ee-af27639236a8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a72ae86b-ec07-47a4-89ee-af27639236a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image {
  box-sizing: border-box;
}



.s-a72ae86b-ec07-47a4-89ee-af27639236a8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a72ae86b-ec07-47a4-89ee-af27639236a8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image-container {
      position: relative;
    }

    .s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a72ae86b-ec07-47a4-89ee-af27639236a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-a72ae86b-ec07-47a4-89ee-af27639236a8 {
  margin: 0 !important;
  overflow: visible;
}

#s-a72ae86b-ec07-47a4-89ee-af27639236a8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a72ae86b-ec07-47a4-89ee-af27639236a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a72ae86b-ec07-47a4-89ee-af27639236a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a72ae86b-ec07-47a4-89ee-af27639236a8 img.shogun-image {
  /* Add background color handling */
  
}

#s-a72ae86b-ec07-47a4-89ee-af27639236a8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a72ae86b-ec07-47a4-89ee-af27639236a8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a72ae86b-ec07-47a4-89ee-af27639236a8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a72ae86b-ec07-47a4-89ee-af27639236a8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a72ae86b-ec07-47a4-89ee-af27639236a8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-a72ae86b-ec07-47a4-89ee-af27639236a8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a72ae86b-ec07-47a4-89ee-af27639236a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image {
  box-sizing: border-box;
}



.s-a72ae86b-ec07-47a4-89ee-af27639236a8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a72ae86b-ec07-47a4-89ee-af27639236a8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image-container {
      position: relative;
    }

    .s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a72ae86b-ec07-47a4-89ee-af27639236a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-a72ae86b-ec07-47a4-89ee-af27639236a8 {
  margin: 0 !important;
  overflow: visible;
}

#s-a72ae86b-ec07-47a4-89ee-af27639236a8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a72ae86b-ec07-47a4-89ee-af27639236a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a72ae86b-ec07-47a4-89ee-af27639236a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a72ae86b-ec07-47a4-89ee-af27639236a8 img.shogun-image {
  /* Add background color handling */
  
}

#s-a72ae86b-ec07-47a4-89ee-af27639236a8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a72ae86b-ec07-47a4-89ee-af27639236a8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a72ae86b-ec07-47a4-89ee-af27639236a8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a72ae86b-ec07-47a4-89ee-af27639236a8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a72ae86b-ec07-47a4-89ee-af27639236a8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-a72ae86b-ec07-47a4-89ee-af27639236a8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a72ae86b-ec07-47a4-89ee-af27639236a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image {
  box-sizing: border-box;
}



.s-a72ae86b-ec07-47a4-89ee-af27639236a8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a72ae86b-ec07-47a4-89ee-af27639236a8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image-container {
      position: relative;
    }

    .s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a72ae86b-ec07-47a4-89ee-af27639236a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (max-width: 767px){#s-a72ae86b-ec07-47a4-89ee-af27639236a8 {
  margin: 0 !important;
  overflow: visible;
}

#s-a72ae86b-ec07-47a4-89ee-af27639236a8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a72ae86b-ec07-47a4-89ee-af27639236a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a72ae86b-ec07-47a4-89ee-af27639236a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a72ae86b-ec07-47a4-89ee-af27639236a8 img.shogun-image {
  /* Add background color handling */
  
}

#s-a72ae86b-ec07-47a4-89ee-af27639236a8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a72ae86b-ec07-47a4-89ee-af27639236a8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a72ae86b-ec07-47a4-89ee-af27639236a8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a72ae86b-ec07-47a4-89ee-af27639236a8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a72ae86b-ec07-47a4-89ee-af27639236a8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-a72ae86b-ec07-47a4-89ee-af27639236a8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a72ae86b-ec07-47a4-89ee-af27639236a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image {
  box-sizing: border-box;
}



.s-a72ae86b-ec07-47a4-89ee-af27639236a8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a72ae86b-ec07-47a4-89ee-af27639236a8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image-container {
      position: relative;
    }

    .s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a72ae86b-ec07-47a4-89ee-af27639236a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a72ae86b-ec07-47a4-89ee-af27639236a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}
/*
  $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;
}
