.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-0ef119e5-bb58-4835-aaa8-29ca245ba6b4 {
  margin-top: -8px;
margin-bottom: -8px;
min-height: 50px;
}








#s-0ef119e5-bb58-4835-aaa8-29ca245ba6b4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0ef119e5-bb58-4835-aaa8-29ca245ba6b4.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-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd {
  margin: 0 !important;
  overflow: visible;
}

#s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd img.shogun-image {
  /* Add background color handling */
  
}

#s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd .shogun-image-content {
  
    justify-content: center;
  
}

.s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image {
  box-sizing: border-box;
}



.s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image-container {
      position: relative;
    }

    .s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd {
  margin: 0 !important;
  overflow: visible;
}

#s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd img.shogun-image {
  /* Add background color handling */
  
}

#s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd .shogun-image-content {
  
    justify-content: center;
  
}

.s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image {
  box-sizing: border-box;
}



.s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image-container {
      position: relative;
    }

    .s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd 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-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd {
  margin: 0 !important;
  overflow: visible;
}

#s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd img.shogun-image {
  /* Add background color handling */
  
}

#s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd .shogun-image-content {
  
    justify-content: center;
  
}

.s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image {
  box-sizing: border-box;
}



.s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image-container {
      position: relative;
    }

    .s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd 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-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd {
  margin: 0 !important;
  overflow: visible;
}

#s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd img.shogun-image {
  /* Add background color handling */
  
}

#s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd .shogun-image-content {
  
    justify-content: center;
  
}

.s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image {
  box-sizing: border-box;
}



.s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image-container {
      position: relative;
    }

    .s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd {
  margin: 0 !important;
  overflow: visible;
}

#s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd img.shogun-image {
  /* Add background color handling */
  
}

#s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd .shogun-image-content {
  
    justify-content: center;
  
}

.s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image {
  box-sizing: border-box;
}



.s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image-container {
      position: relative;
    }

    .s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-310ba314-4cf4-4bf6-bad1-b3fe6538c8bd 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-7db528ad-376a-488a-bcdb-846cc1ea9c32 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7db528ad-376a-488a-bcdb-846cc1ea9c32 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-616862d6-9b8c-48cf-9eac-7ef2f81d878f {
  min-height: 50px;
}








#s-616862d6-9b8c-48cf-9eac-7ef2f81d878f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-616862d6-9b8c-48cf-9eac-7ef2f81d878f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6be20370-a897-4e5c-aad9-463b6001a442 {
  min-height: 50px;
}








#s-6be20370-a897-4e5c-aad9-463b6001a442 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6be20370-a897-4e5c-aad9-463b6001a442.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d98025df-805e-4cc9-a8e0-02b0c21e7dd6 {
  min-height: 50px;
}








#s-d98025df-805e-4cc9-a8e0-02b0c21e7dd6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d98025df-805e-4cc9-a8e0-02b0c21e7dd6.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-e4ace485-810c-4172-a75a-54f48e9c485d {
  margin-top: -8px;
margin-bottom: -8px;
min-height: 50px;
}








#s-e4ace485-810c-4172-a75a-54f48e9c485d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e4ace485-810c-4172-a75a-54f48e9c485d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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








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

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

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

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

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

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

#s-bf556b6a-558a-4289-8fc2-c53e96c15c59 {
  margin-left: 2%;
margin-right: 2%;
}

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

}

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

}

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

}

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

}

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

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

#s-e29c769a-789b-4623-a701-b79677c2ae69-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e29c769a-789b-4623-a701-b79677c2ae69 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

#s-e29c769a-789b-4623-a701-b79677c2ae69-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e29c769a-789b-4623-a701-b79677c2ae69 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

#s-e29c769a-789b-4623-a701-b79677c2ae69-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e29c769a-789b-4623-a701-b79677c2ae69 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

#s-e29c769a-789b-4623-a701-b79677c2ae69-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e29c769a-789b-4623-a701-b79677c2ae69 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

#s-e29c769a-789b-4623-a701-b79677c2ae69-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e29c769a-789b-4623-a701-b79677c2ae69 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

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

#s-9ac3b114-4e19-47a3-892c-5f5117d84648-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9ac3b114-4e19-47a3-892c-5f5117d84648 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

#s-9ac3b114-4e19-47a3-892c-5f5117d84648-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9ac3b114-4e19-47a3-892c-5f5117d84648 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

#s-9ac3b114-4e19-47a3-892c-5f5117d84648-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9ac3b114-4e19-47a3-892c-5f5117d84648 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

#s-9ac3b114-4e19-47a3-892c-5f5117d84648-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9ac3b114-4e19-47a3-892c-5f5117d84648 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

#s-9ac3b114-4e19-47a3-892c-5f5117d84648-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9ac3b114-4e19-47a3-892c-5f5117d84648 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

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

#s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

#s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

#s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

#s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

#s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f895cb3c-5f91-4154-ac09-383ac8dcc0b0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

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

#s-826d1adf-2270-431b-9550-e9e53677f882-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-826d1adf-2270-431b-9550-e9e53677f882 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

#s-826d1adf-2270-431b-9550-e9e53677f882-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-826d1adf-2270-431b-9550-e9e53677f882 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

#s-826d1adf-2270-431b-9550-e9e53677f882-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-826d1adf-2270-431b-9550-e9e53677f882 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

#s-826d1adf-2270-431b-9550-e9e53677f882-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-826d1adf-2270-431b-9550-e9e53677f882 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

#s-826d1adf-2270-431b-9550-e9e53677f882-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-826d1adf-2270-431b-9550-e9e53677f882 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

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

#s-9719db8d-83f8-45da-a026-7bc13dd1bcdb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9719db8d-83f8-45da-a026-7bc13dd1bcdb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

#s-9719db8d-83f8-45da-a026-7bc13dd1bcdb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9719db8d-83f8-45da-a026-7bc13dd1bcdb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

#s-9719db8d-83f8-45da-a026-7bc13dd1bcdb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9719db8d-83f8-45da-a026-7bc13dd1bcdb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

#s-9719db8d-83f8-45da-a026-7bc13dd1bcdb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9719db8d-83f8-45da-a026-7bc13dd1bcdb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

#s-9719db8d-83f8-45da-a026-7bc13dd1bcdb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9719db8d-83f8-45da-a026-7bc13dd1bcdb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

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

#s-752a66e8-8b66-4458-ab98-54ef96e6c3a0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

#s-752a66e8-8b66-4458-ab98-54ef96e6c3a0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

#s-752a66e8-8b66-4458-ab98-54ef96e6c3a0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

#s-752a66e8-8b66-4458-ab98-54ef96e6c3a0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

#s-752a66e8-8b66-4458-ab98-54ef96e6c3a0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-752a66e8-8b66-4458-ab98-54ef96e6c3a0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

}
#s-8fdf2c92-3239-437c-b447-4e111fc6ff24 {
  margin-top: -10px;
margin-bottom: -10px;
}

#s-1e562f51-4737-465c-b8ad-5ebc611d71f3 {
  margin-top: -10px;
margin-bottom: -10px;
}

#s-c2fbafc8-9f46-45f4-a1e6-111f524493d5 {
  min-height: 50px;
}








#s-c2fbafc8-9f46-45f4-a1e6-111f524493d5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c2fbafc8-9f46-45f4-a1e6-111f524493d5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-26a63bf6-0e4e-4284-b47d-a7f0e05771c2 {
  min-height: 50px;
}








#s-26a63bf6-0e4e-4284-b47d-a7f0e05771c2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-26a63bf6-0e4e-4284-b47d-a7f0e05771c2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bb16ebc6-e846-4b10-b2d0-000baf7b8c43 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-bb16ebc6-e846-4b10-b2d0-000baf7b8c43 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bb16ebc6-e846-4b10-b2d0-000baf7b8c43.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: 0%;
margin-bottom: 0px;
margin-right: 0%;
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-0bc528aa-1b32-4666-b3bd-8ef82dc175fb {
  min-height: 50px;
}








#s-0bc528aa-1b32-4666-b3bd-8ef82dc175fb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0bc528aa-1b32-4666-b3bd-8ef82dc175fb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-eee9719d-1873-40e5-bed4-f703b8961f36 {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-eee9719d-1873-40e5-bed4-f703b8961f36 {
  margin: 0 !important;
  overflow: visible;
}

#s-eee9719d-1873-40e5-bed4-f703b8961f36-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-eee9719d-1873-40e5-bed4-f703b8961f36 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-eee9719d-1873-40e5-bed4-f703b8961f36 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eee9719d-1873-40e5-bed4-f703b8961f36 img.shogun-image {
  /* Add background color handling */
  
}

#s-eee9719d-1873-40e5-bed4-f703b8961f36 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-eee9719d-1873-40e5-bed4-f703b8961f36 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-eee9719d-1873-40e5-bed4-f703b8961f36 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eee9719d-1873-40e5-bed4-f703b8961f36 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-eee9719d-1873-40e5-bed4-f703b8961f36 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-eee9719d-1873-40e5-bed4-f703b8961f36 .shogun-image-content {
  
    justify-content: center;
  
}

.s-eee9719d-1873-40e5-bed4-f703b8961f36.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image {
  box-sizing: border-box;
}



.s-eee9719d-1873-40e5-bed4-f703b8961f36 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-eee9719d-1873-40e5-bed4-f703b8961f36 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image-container {
      position: relative;
    }

    .s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eee9719d-1873-40e5-bed4-f703b8961f36 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-eee9719d-1873-40e5-bed4-f703b8961f36 {
  margin: 0 !important;
  overflow: visible;
}

#s-eee9719d-1873-40e5-bed4-f703b8961f36-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-eee9719d-1873-40e5-bed4-f703b8961f36 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-eee9719d-1873-40e5-bed4-f703b8961f36 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eee9719d-1873-40e5-bed4-f703b8961f36 img.shogun-image {
  /* Add background color handling */
  
}

#s-eee9719d-1873-40e5-bed4-f703b8961f36 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-eee9719d-1873-40e5-bed4-f703b8961f36 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-eee9719d-1873-40e5-bed4-f703b8961f36 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eee9719d-1873-40e5-bed4-f703b8961f36 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-eee9719d-1873-40e5-bed4-f703b8961f36 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-eee9719d-1873-40e5-bed4-f703b8961f36 .shogun-image-content {
  
    justify-content: center;
  
}

.s-eee9719d-1873-40e5-bed4-f703b8961f36.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image {
  box-sizing: border-box;
}



.s-eee9719d-1873-40e5-bed4-f703b8961f36 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-eee9719d-1873-40e5-bed4-f703b8961f36 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image-container {
      position: relative;
    }

    .s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eee9719d-1873-40e5-bed4-f703b8961f36 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-eee9719d-1873-40e5-bed4-f703b8961f36 {
  margin: 0 !important;
  overflow: visible;
}

#s-eee9719d-1873-40e5-bed4-f703b8961f36-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-eee9719d-1873-40e5-bed4-f703b8961f36 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-eee9719d-1873-40e5-bed4-f703b8961f36 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eee9719d-1873-40e5-bed4-f703b8961f36 img.shogun-image {
  /* Add background color handling */
  
}

#s-eee9719d-1873-40e5-bed4-f703b8961f36 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-eee9719d-1873-40e5-bed4-f703b8961f36 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-eee9719d-1873-40e5-bed4-f703b8961f36 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eee9719d-1873-40e5-bed4-f703b8961f36 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-eee9719d-1873-40e5-bed4-f703b8961f36 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-eee9719d-1873-40e5-bed4-f703b8961f36 .shogun-image-content {
  
    justify-content: center;
  
}

.s-eee9719d-1873-40e5-bed4-f703b8961f36.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image {
  box-sizing: border-box;
}



.s-eee9719d-1873-40e5-bed4-f703b8961f36 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-eee9719d-1873-40e5-bed4-f703b8961f36 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image-container {
      position: relative;
    }

    .s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eee9719d-1873-40e5-bed4-f703b8961f36 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-eee9719d-1873-40e5-bed4-f703b8961f36 {
  margin: 0 !important;
  overflow: visible;
}

#s-eee9719d-1873-40e5-bed4-f703b8961f36-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-eee9719d-1873-40e5-bed4-f703b8961f36 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-eee9719d-1873-40e5-bed4-f703b8961f36 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eee9719d-1873-40e5-bed4-f703b8961f36 img.shogun-image {
  /* Add background color handling */
  
}

#s-eee9719d-1873-40e5-bed4-f703b8961f36 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-eee9719d-1873-40e5-bed4-f703b8961f36 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-eee9719d-1873-40e5-bed4-f703b8961f36 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eee9719d-1873-40e5-bed4-f703b8961f36 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-eee9719d-1873-40e5-bed4-f703b8961f36 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-eee9719d-1873-40e5-bed4-f703b8961f36 .shogun-image-content {
  
    justify-content: center;
  
}

.s-eee9719d-1873-40e5-bed4-f703b8961f36.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image {
  box-sizing: border-box;
}



.s-eee9719d-1873-40e5-bed4-f703b8961f36 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-eee9719d-1873-40e5-bed4-f703b8961f36 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image-container {
      position: relative;
    }

    .s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eee9719d-1873-40e5-bed4-f703b8961f36 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-eee9719d-1873-40e5-bed4-f703b8961f36 {
  margin: 0 !important;
  overflow: visible;
}

#s-eee9719d-1873-40e5-bed4-f703b8961f36-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-eee9719d-1873-40e5-bed4-f703b8961f36 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-eee9719d-1873-40e5-bed4-f703b8961f36 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eee9719d-1873-40e5-bed4-f703b8961f36 img.shogun-image {
  /* Add background color handling */
  
}

#s-eee9719d-1873-40e5-bed4-f703b8961f36 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-eee9719d-1873-40e5-bed4-f703b8961f36 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-eee9719d-1873-40e5-bed4-f703b8961f36 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eee9719d-1873-40e5-bed4-f703b8961f36 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-eee9719d-1873-40e5-bed4-f703b8961f36 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-eee9719d-1873-40e5-bed4-f703b8961f36 .shogun-image-content {
  
    justify-content: center;
  
}

.s-eee9719d-1873-40e5-bed4-f703b8961f36.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image {
  box-sizing: border-box;
}



.s-eee9719d-1873-40e5-bed4-f703b8961f36 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-eee9719d-1873-40e5-bed4-f703b8961f36 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image-container {
      position: relative;
    }

    .s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eee9719d-1873-40e5-bed4-f703b8961f36.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eee9719d-1873-40e5-bed4-f703b8961f36 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-c07a1502-f21a-427d-8e7f-381ee53c44c8 {
  min-height: 50px;
}








#s-c07a1502-f21a-427d-8e7f-381ee53c44c8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c07a1502-f21a-427d-8e7f-381ee53c44c8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc {
  max-width: 1500px;
aspect-ratio: 1500/563;
text-align: center;
}

#s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc {
  margin: 0 !important;
  overflow: visible;
}

#s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc img.shogun-image {
  /* Add background color handling */
  
}

#s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc .shogun-image-content {
  
    justify-content: center;
  
}

.s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image {
  box-sizing: border-box;
}



.s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image-container {
      position: relative;
    }

    .s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc {
  margin: 0 !important;
  overflow: visible;
}

#s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc img.shogun-image {
  /* Add background color handling */
  
}

#s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc .shogun-image-content {
  
    justify-content: center;
  
}

.s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image {
  box-sizing: border-box;
}



.s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image-container {
      position: relative;
    }

    .s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc 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-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc {
  margin: 0 !important;
  overflow: visible;
}

#s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc img.shogun-image {
  /* Add background color handling */
  
}

#s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc .shogun-image-content {
  
    justify-content: center;
  
}

.s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image {
  box-sizing: border-box;
}



.s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image-container {
      position: relative;
    }

    .s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc 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-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc {
  margin: 0 !important;
  overflow: visible;
}

#s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc img.shogun-image {
  /* Add background color handling */
  
}

#s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc .shogun-image-content {
  
    justify-content: center;
  
}

.s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image {
  box-sizing: border-box;
}



.s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image-container {
      position: relative;
    }

    .s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc {
  margin: 0 !important;
  overflow: visible;
}

#s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc img.shogun-image {
  /* Add background color handling */
  
}

#s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc .shogun-image-content {
  
    justify-content: center;
  
}

.s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image {
  box-sizing: border-box;
}



.s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image-container {
      position: relative;
    }

    .s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0cdfc8bd-ab7e-4ae6-858b-aed3f820e1bc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
@media (min-width: 0px) {
[id="s-cd5f6868-df3d-4590-b501-032500a596d3"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-cd5f6868-df3d-4590-b501-032500a596d3"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-cd5f6868-df3d-4590-b501-032500a596d3"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-cd5f6868-df3d-4590-b501-032500a596d3"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-35853c53-7172-4d34-8258-f2bb73a4c09d {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-35853c53-7172-4d34-8258-f2bb73a4c09d {
  margin: 0 !important;
  overflow: visible;
}

#s-35853c53-7172-4d34-8258-f2bb73a4c09d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-35853c53-7172-4d34-8258-f2bb73a4c09d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-35853c53-7172-4d34-8258-f2bb73a4c09d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-35853c53-7172-4d34-8258-f2bb73a4c09d img.shogun-image {
  /* Add background color handling */
  
}

#s-35853c53-7172-4d34-8258-f2bb73a4c09d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-35853c53-7172-4d34-8258-f2bb73a4c09d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-35853c53-7172-4d34-8258-f2bb73a4c09d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-35853c53-7172-4d34-8258-f2bb73a4c09d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-35853c53-7172-4d34-8258-f2bb73a4c09d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-35853c53-7172-4d34-8258-f2bb73a4c09d .shogun-image-content {
  
    justify-content: center;
  
}

.s-35853c53-7172-4d34-8258-f2bb73a4c09d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image {
  box-sizing: border-box;
}



.s-35853c53-7172-4d34-8258-f2bb73a4c09d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-35853c53-7172-4d34-8258-f2bb73a4c09d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image-container {
      position: relative;
    }

    .s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-35853c53-7172-4d34-8258-f2bb73a4c09d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-35853c53-7172-4d34-8258-f2bb73a4c09d {
  margin: 0 !important;
  overflow: visible;
}

#s-35853c53-7172-4d34-8258-f2bb73a4c09d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-35853c53-7172-4d34-8258-f2bb73a4c09d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-35853c53-7172-4d34-8258-f2bb73a4c09d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-35853c53-7172-4d34-8258-f2bb73a4c09d img.shogun-image {
  /* Add background color handling */
  
}

#s-35853c53-7172-4d34-8258-f2bb73a4c09d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-35853c53-7172-4d34-8258-f2bb73a4c09d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-35853c53-7172-4d34-8258-f2bb73a4c09d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-35853c53-7172-4d34-8258-f2bb73a4c09d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-35853c53-7172-4d34-8258-f2bb73a4c09d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-35853c53-7172-4d34-8258-f2bb73a4c09d .shogun-image-content {
  
    justify-content: center;
  
}

.s-35853c53-7172-4d34-8258-f2bb73a4c09d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image {
  box-sizing: border-box;
}



.s-35853c53-7172-4d34-8258-f2bb73a4c09d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-35853c53-7172-4d34-8258-f2bb73a4c09d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image-container {
      position: relative;
    }

    .s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-35853c53-7172-4d34-8258-f2bb73a4c09d 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-35853c53-7172-4d34-8258-f2bb73a4c09d {
  margin: 0 !important;
  overflow: visible;
}

#s-35853c53-7172-4d34-8258-f2bb73a4c09d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-35853c53-7172-4d34-8258-f2bb73a4c09d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-35853c53-7172-4d34-8258-f2bb73a4c09d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-35853c53-7172-4d34-8258-f2bb73a4c09d img.shogun-image {
  /* Add background color handling */
  
}

#s-35853c53-7172-4d34-8258-f2bb73a4c09d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-35853c53-7172-4d34-8258-f2bb73a4c09d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-35853c53-7172-4d34-8258-f2bb73a4c09d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-35853c53-7172-4d34-8258-f2bb73a4c09d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-35853c53-7172-4d34-8258-f2bb73a4c09d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-35853c53-7172-4d34-8258-f2bb73a4c09d .shogun-image-content {
  
    justify-content: center;
  
}

.s-35853c53-7172-4d34-8258-f2bb73a4c09d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image {
  box-sizing: border-box;
}



.s-35853c53-7172-4d34-8258-f2bb73a4c09d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-35853c53-7172-4d34-8258-f2bb73a4c09d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image-container {
      position: relative;
    }

    .s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-35853c53-7172-4d34-8258-f2bb73a4c09d 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-35853c53-7172-4d34-8258-f2bb73a4c09d {
  margin: 0 !important;
  overflow: visible;
}

#s-35853c53-7172-4d34-8258-f2bb73a4c09d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-35853c53-7172-4d34-8258-f2bb73a4c09d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-35853c53-7172-4d34-8258-f2bb73a4c09d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-35853c53-7172-4d34-8258-f2bb73a4c09d img.shogun-image {
  /* Add background color handling */
  
}

#s-35853c53-7172-4d34-8258-f2bb73a4c09d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-35853c53-7172-4d34-8258-f2bb73a4c09d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-35853c53-7172-4d34-8258-f2bb73a4c09d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-35853c53-7172-4d34-8258-f2bb73a4c09d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-35853c53-7172-4d34-8258-f2bb73a4c09d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-35853c53-7172-4d34-8258-f2bb73a4c09d .shogun-image-content {
  
    justify-content: center;
  
}

.s-35853c53-7172-4d34-8258-f2bb73a4c09d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image {
  box-sizing: border-box;
}



.s-35853c53-7172-4d34-8258-f2bb73a4c09d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-35853c53-7172-4d34-8258-f2bb73a4c09d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image-container {
      position: relative;
    }

    .s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-35853c53-7172-4d34-8258-f2bb73a4c09d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-35853c53-7172-4d34-8258-f2bb73a4c09d {
  margin: 0 !important;
  overflow: visible;
}

#s-35853c53-7172-4d34-8258-f2bb73a4c09d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-35853c53-7172-4d34-8258-f2bb73a4c09d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-35853c53-7172-4d34-8258-f2bb73a4c09d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-35853c53-7172-4d34-8258-f2bb73a4c09d img.shogun-image {
  /* Add background color handling */
  
}

#s-35853c53-7172-4d34-8258-f2bb73a4c09d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-35853c53-7172-4d34-8258-f2bb73a4c09d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-35853c53-7172-4d34-8258-f2bb73a4c09d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-35853c53-7172-4d34-8258-f2bb73a4c09d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-35853c53-7172-4d34-8258-f2bb73a4c09d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-35853c53-7172-4d34-8258-f2bb73a4c09d .shogun-image-content {
  
    justify-content: center;
  
}

.s-35853c53-7172-4d34-8258-f2bb73a4c09d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image {
  box-sizing: border-box;
}



.s-35853c53-7172-4d34-8258-f2bb73a4c09d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-35853c53-7172-4d34-8258-f2bb73a4c09d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image-container {
      position: relative;
    }

    .s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-35853c53-7172-4d34-8258-f2bb73a4c09d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-35853c53-7172-4d34-8258-f2bb73a4c09d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-3e58ef80-8830-405a-ad79-716ab7eae0ad {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-3e58ef80-8830-405a-ad79-716ab7eae0ad {
  margin: 0 !important;
  overflow: visible;
}

#s-3e58ef80-8830-405a-ad79-716ab7eae0ad-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e58ef80-8830-405a-ad79-716ab7eae0ad {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3e58ef80-8830-405a-ad79-716ab7eae0ad {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e58ef80-8830-405a-ad79-716ab7eae0ad img.shogun-image {
  /* Add background color handling */
  
}

#s-3e58ef80-8830-405a-ad79-716ab7eae0ad img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3e58ef80-8830-405a-ad79-716ab7eae0ad .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3e58ef80-8830-405a-ad79-716ab7eae0ad .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3e58ef80-8830-405a-ad79-716ab7eae0ad .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3e58ef80-8830-405a-ad79-716ab7eae0ad img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-3e58ef80-8830-405a-ad79-716ab7eae0ad .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image {
  box-sizing: border-box;
}



.s-3e58ef80-8830-405a-ad79-716ab7eae0ad img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3e58ef80-8830-405a-ad79-716ab7eae0ad {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image-container {
      position: relative;
    }

    .s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e58ef80-8830-405a-ad79-716ab7eae0ad img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-3e58ef80-8830-405a-ad79-716ab7eae0ad {
  margin: 0 !important;
  overflow: visible;
}

#s-3e58ef80-8830-405a-ad79-716ab7eae0ad-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e58ef80-8830-405a-ad79-716ab7eae0ad {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3e58ef80-8830-405a-ad79-716ab7eae0ad {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e58ef80-8830-405a-ad79-716ab7eae0ad img.shogun-image {
  /* Add background color handling */
  
}

#s-3e58ef80-8830-405a-ad79-716ab7eae0ad img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3e58ef80-8830-405a-ad79-716ab7eae0ad .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3e58ef80-8830-405a-ad79-716ab7eae0ad .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3e58ef80-8830-405a-ad79-716ab7eae0ad .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3e58ef80-8830-405a-ad79-716ab7eae0ad img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-3e58ef80-8830-405a-ad79-716ab7eae0ad .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image {
  box-sizing: border-box;
}



.s-3e58ef80-8830-405a-ad79-716ab7eae0ad img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3e58ef80-8830-405a-ad79-716ab7eae0ad {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image-container {
      position: relative;
    }

    .s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e58ef80-8830-405a-ad79-716ab7eae0ad 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-3e58ef80-8830-405a-ad79-716ab7eae0ad {
  margin: 0 !important;
  overflow: visible;
}

#s-3e58ef80-8830-405a-ad79-716ab7eae0ad-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e58ef80-8830-405a-ad79-716ab7eae0ad {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3e58ef80-8830-405a-ad79-716ab7eae0ad {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e58ef80-8830-405a-ad79-716ab7eae0ad img.shogun-image {
  /* Add background color handling */
  
}

#s-3e58ef80-8830-405a-ad79-716ab7eae0ad img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3e58ef80-8830-405a-ad79-716ab7eae0ad .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3e58ef80-8830-405a-ad79-716ab7eae0ad .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3e58ef80-8830-405a-ad79-716ab7eae0ad .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3e58ef80-8830-405a-ad79-716ab7eae0ad img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-3e58ef80-8830-405a-ad79-716ab7eae0ad .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image {
  box-sizing: border-box;
}



.s-3e58ef80-8830-405a-ad79-716ab7eae0ad img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3e58ef80-8830-405a-ad79-716ab7eae0ad {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image-container {
      position: relative;
    }

    .s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e58ef80-8830-405a-ad79-716ab7eae0ad 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-3e58ef80-8830-405a-ad79-716ab7eae0ad {
  margin: 0 !important;
  overflow: visible;
}

#s-3e58ef80-8830-405a-ad79-716ab7eae0ad-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e58ef80-8830-405a-ad79-716ab7eae0ad {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3e58ef80-8830-405a-ad79-716ab7eae0ad {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e58ef80-8830-405a-ad79-716ab7eae0ad img.shogun-image {
  /* Add background color handling */
  
}

#s-3e58ef80-8830-405a-ad79-716ab7eae0ad img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3e58ef80-8830-405a-ad79-716ab7eae0ad .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3e58ef80-8830-405a-ad79-716ab7eae0ad .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3e58ef80-8830-405a-ad79-716ab7eae0ad .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3e58ef80-8830-405a-ad79-716ab7eae0ad img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-3e58ef80-8830-405a-ad79-716ab7eae0ad .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image {
  box-sizing: border-box;
}



.s-3e58ef80-8830-405a-ad79-716ab7eae0ad img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3e58ef80-8830-405a-ad79-716ab7eae0ad {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image-container {
      position: relative;
    }

    .s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e58ef80-8830-405a-ad79-716ab7eae0ad img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-3e58ef80-8830-405a-ad79-716ab7eae0ad {
  margin: 0 !important;
  overflow: visible;
}

#s-3e58ef80-8830-405a-ad79-716ab7eae0ad-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e58ef80-8830-405a-ad79-716ab7eae0ad {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3e58ef80-8830-405a-ad79-716ab7eae0ad {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e58ef80-8830-405a-ad79-716ab7eae0ad img.shogun-image {
  /* Add background color handling */
  
}

#s-3e58ef80-8830-405a-ad79-716ab7eae0ad img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3e58ef80-8830-405a-ad79-716ab7eae0ad .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3e58ef80-8830-405a-ad79-716ab7eae0ad .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3e58ef80-8830-405a-ad79-716ab7eae0ad .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3e58ef80-8830-405a-ad79-716ab7eae0ad img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-3e58ef80-8830-405a-ad79-716ab7eae0ad .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image {
  box-sizing: border-box;
}



.s-3e58ef80-8830-405a-ad79-716ab7eae0ad img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3e58ef80-8830-405a-ad79-716ab7eae0ad {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image-container {
      position: relative;
    }

    .s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e58ef80-8830-405a-ad79-716ab7eae0ad.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e58ef80-8830-405a-ad79-716ab7eae0ad img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-8283a9ad-27fb-458b-86a3-22449ba4ac2c {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-8283a9ad-27fb-458b-86a3-22449ba4ac2c {
  margin: 0 !important;
  overflow: visible;
}

#s-8283a9ad-27fb-458b-86a3-22449ba4ac2c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8283a9ad-27fb-458b-86a3-22449ba4ac2c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8283a9ad-27fb-458b-86a3-22449ba4ac2c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8283a9ad-27fb-458b-86a3-22449ba4ac2c img.shogun-image {
  /* Add background color handling */
  
}

#s-8283a9ad-27fb-458b-86a3-22449ba4ac2c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8283a9ad-27fb-458b-86a3-22449ba4ac2c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8283a9ad-27fb-458b-86a3-22449ba4ac2c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8283a9ad-27fb-458b-86a3-22449ba4ac2c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8283a9ad-27fb-458b-86a3-22449ba4ac2c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-8283a9ad-27fb-458b-86a3-22449ba4ac2c .shogun-image-content {
  
    justify-content: center;
  
}

.s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image {
  box-sizing: border-box;
}



.s-8283a9ad-27fb-458b-86a3-22449ba4ac2c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8283a9ad-27fb-458b-86a3-22449ba4ac2c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image-container {
      position: relative;
    }

    .s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8283a9ad-27fb-458b-86a3-22449ba4ac2c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-8283a9ad-27fb-458b-86a3-22449ba4ac2c {
  margin: 0 !important;
  overflow: visible;
}

#s-8283a9ad-27fb-458b-86a3-22449ba4ac2c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8283a9ad-27fb-458b-86a3-22449ba4ac2c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8283a9ad-27fb-458b-86a3-22449ba4ac2c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8283a9ad-27fb-458b-86a3-22449ba4ac2c img.shogun-image {
  /* Add background color handling */
  
}

#s-8283a9ad-27fb-458b-86a3-22449ba4ac2c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8283a9ad-27fb-458b-86a3-22449ba4ac2c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8283a9ad-27fb-458b-86a3-22449ba4ac2c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8283a9ad-27fb-458b-86a3-22449ba4ac2c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8283a9ad-27fb-458b-86a3-22449ba4ac2c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-8283a9ad-27fb-458b-86a3-22449ba4ac2c .shogun-image-content {
  
    justify-content: center;
  
}

.s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image {
  box-sizing: border-box;
}



.s-8283a9ad-27fb-458b-86a3-22449ba4ac2c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8283a9ad-27fb-458b-86a3-22449ba4ac2c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image-container {
      position: relative;
    }

    .s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8283a9ad-27fb-458b-86a3-22449ba4ac2c 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-8283a9ad-27fb-458b-86a3-22449ba4ac2c {
  margin: 0 !important;
  overflow: visible;
}

#s-8283a9ad-27fb-458b-86a3-22449ba4ac2c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8283a9ad-27fb-458b-86a3-22449ba4ac2c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8283a9ad-27fb-458b-86a3-22449ba4ac2c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8283a9ad-27fb-458b-86a3-22449ba4ac2c img.shogun-image {
  /* Add background color handling */
  
}

#s-8283a9ad-27fb-458b-86a3-22449ba4ac2c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8283a9ad-27fb-458b-86a3-22449ba4ac2c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8283a9ad-27fb-458b-86a3-22449ba4ac2c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8283a9ad-27fb-458b-86a3-22449ba4ac2c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8283a9ad-27fb-458b-86a3-22449ba4ac2c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-8283a9ad-27fb-458b-86a3-22449ba4ac2c .shogun-image-content {
  
    justify-content: center;
  
}

.s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image {
  box-sizing: border-box;
}



.s-8283a9ad-27fb-458b-86a3-22449ba4ac2c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8283a9ad-27fb-458b-86a3-22449ba4ac2c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image-container {
      position: relative;
    }

    .s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8283a9ad-27fb-458b-86a3-22449ba4ac2c 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-8283a9ad-27fb-458b-86a3-22449ba4ac2c {
  margin: 0 !important;
  overflow: visible;
}

#s-8283a9ad-27fb-458b-86a3-22449ba4ac2c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8283a9ad-27fb-458b-86a3-22449ba4ac2c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8283a9ad-27fb-458b-86a3-22449ba4ac2c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8283a9ad-27fb-458b-86a3-22449ba4ac2c img.shogun-image {
  /* Add background color handling */
  
}

#s-8283a9ad-27fb-458b-86a3-22449ba4ac2c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8283a9ad-27fb-458b-86a3-22449ba4ac2c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8283a9ad-27fb-458b-86a3-22449ba4ac2c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8283a9ad-27fb-458b-86a3-22449ba4ac2c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8283a9ad-27fb-458b-86a3-22449ba4ac2c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-8283a9ad-27fb-458b-86a3-22449ba4ac2c .shogun-image-content {
  
    justify-content: center;
  
}

.s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image {
  box-sizing: border-box;
}



.s-8283a9ad-27fb-458b-86a3-22449ba4ac2c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8283a9ad-27fb-458b-86a3-22449ba4ac2c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image-container {
      position: relative;
    }

    .s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8283a9ad-27fb-458b-86a3-22449ba4ac2c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-8283a9ad-27fb-458b-86a3-22449ba4ac2c {
  margin: 0 !important;
  overflow: visible;
}

#s-8283a9ad-27fb-458b-86a3-22449ba4ac2c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8283a9ad-27fb-458b-86a3-22449ba4ac2c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8283a9ad-27fb-458b-86a3-22449ba4ac2c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8283a9ad-27fb-458b-86a3-22449ba4ac2c img.shogun-image {
  /* Add background color handling */
  
}

#s-8283a9ad-27fb-458b-86a3-22449ba4ac2c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8283a9ad-27fb-458b-86a3-22449ba4ac2c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8283a9ad-27fb-458b-86a3-22449ba4ac2c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8283a9ad-27fb-458b-86a3-22449ba4ac2c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8283a9ad-27fb-458b-86a3-22449ba4ac2c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-8283a9ad-27fb-458b-86a3-22449ba4ac2c .shogun-image-content {
  
    justify-content: center;
  
}

.s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image {
  box-sizing: border-box;
}



.s-8283a9ad-27fb-458b-86a3-22449ba4ac2c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8283a9ad-27fb-458b-86a3-22449ba4ac2c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image-container {
      position: relative;
    }

    .s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8283a9ad-27fb-458b-86a3-22449ba4ac2c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8283a9ad-27fb-458b-86a3-22449ba4ac2c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 {
  margin: 0 !important;
  overflow: visible;
}

#s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 img.shogun-image {
  /* Add background color handling */
  
}

#s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image {
  box-sizing: border-box;
}



.s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image-container {
      position: relative;
    }

    .s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 {
  margin: 0 !important;
  overflow: visible;
}

#s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 img.shogun-image {
  /* Add background color handling */
  
}

#s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image {
  box-sizing: border-box;
}



.s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image-container {
      position: relative;
    }

    .s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 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-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 {
  margin: 0 !important;
  overflow: visible;
}

#s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 img.shogun-image {
  /* Add background color handling */
  
}

#s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image {
  box-sizing: border-box;
}



.s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image-container {
      position: relative;
    }

    .s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 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-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 {
  margin: 0 !important;
  overflow: visible;
}

#s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 img.shogun-image {
  /* Add background color handling */
  
}

#s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image {
  box-sizing: border-box;
}



.s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image-container {
      position: relative;
    }

    .s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 {
  margin: 0 !important;
  overflow: visible;
}

#s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 img.shogun-image {
  /* Add background color handling */
  
}

#s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image {
  box-sizing: border-box;
}



.s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image-container {
      position: relative;
    }

    .s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75b785e6-6b45-420f-9b7e-5ef00dfbc2e8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
@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-752ef781-89f0-407c-b4a2-3c4e83f52279 {
  max-width: 1920px;
text-align: center;
}

#s-752ef781-89f0-407c-b4a2-3c4e83f52279 {
  margin: 0 !important;
  overflow: visible;
}

#s-752ef781-89f0-407c-b4a2-3c4e83f52279-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-752ef781-89f0-407c-b4a2-3c4e83f52279 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-752ef781-89f0-407c-b4a2-3c4e83f52279 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-752ef781-89f0-407c-b4a2-3c4e83f52279 img.shogun-image {
  /* Add background color handling */
  
}

#s-752ef781-89f0-407c-b4a2-3c4e83f52279 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-752ef781-89f0-407c-b4a2-3c4e83f52279 .shogun-image-content {
  
    justify-content: center;
  
}

.s-752ef781-89f0-407c-b4a2-3c4e83f52279.shg-align-container {
  display: flex;
  justify-content: center
}

.s-752ef781-89f0-407c-b4a2-3c4e83f52279.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-752ef781-89f0-407c-b4a2-3c4e83f52279.shogun-image {
  box-sizing: border-box;
}



.s-752ef781-89f0-407c-b4a2-3c4e83f52279 img.shogun-image {
  
}


@media (min-width: 1200px){#s-752ef781-89f0-407c-b4a2-3c4e83f52279 {
  margin: 0 !important;
  overflow: visible;
}

#s-752ef781-89f0-407c-b4a2-3c4e83f52279-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-752ef781-89f0-407c-b4a2-3c4e83f52279 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-752ef781-89f0-407c-b4a2-3c4e83f52279 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-752ef781-89f0-407c-b4a2-3c4e83f52279 img.shogun-image {
  /* Add background color handling */
  
}

#s-752ef781-89f0-407c-b4a2-3c4e83f52279 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-752ef781-89f0-407c-b4a2-3c4e83f52279 .shogun-image-content {
  
    justify-content: center;
  
}

.s-752ef781-89f0-407c-b4a2-3c4e83f52279.shg-align-container {
  display: flex;
  justify-content: center
}

.s-752ef781-89f0-407c-b4a2-3c4e83f52279.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-752ef781-89f0-407c-b4a2-3c4e83f52279.shogun-image {
  box-sizing: border-box;
}



.s-752ef781-89f0-407c-b4a2-3c4e83f52279 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-752ef781-89f0-407c-b4a2-3c4e83f52279 {
  margin: 0 !important;
  overflow: visible;
}

#s-752ef781-89f0-407c-b4a2-3c4e83f52279-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-752ef781-89f0-407c-b4a2-3c4e83f52279 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-752ef781-89f0-407c-b4a2-3c4e83f52279 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-752ef781-89f0-407c-b4a2-3c4e83f52279 img.shogun-image {
  /* Add background color handling */
  
}

#s-752ef781-89f0-407c-b4a2-3c4e83f52279 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-752ef781-89f0-407c-b4a2-3c4e83f52279 .shogun-image-content {
  
    justify-content: center;
  
}

.s-752ef781-89f0-407c-b4a2-3c4e83f52279.shg-align-container {
  display: flex;
  justify-content: center
}

.s-752ef781-89f0-407c-b4a2-3c4e83f52279.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-752ef781-89f0-407c-b4a2-3c4e83f52279.shogun-image {
  box-sizing: border-box;
}



.s-752ef781-89f0-407c-b4a2-3c4e83f52279 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-752ef781-89f0-407c-b4a2-3c4e83f52279 {
  margin: 0 !important;
  overflow: visible;
}

#s-752ef781-89f0-407c-b4a2-3c4e83f52279-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-752ef781-89f0-407c-b4a2-3c4e83f52279 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-752ef781-89f0-407c-b4a2-3c4e83f52279 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-752ef781-89f0-407c-b4a2-3c4e83f52279 img.shogun-image {
  /* Add background color handling */
  
}

#s-752ef781-89f0-407c-b4a2-3c4e83f52279 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-752ef781-89f0-407c-b4a2-3c4e83f52279 .shogun-image-content {
  
    justify-content: center;
  
}

.s-752ef781-89f0-407c-b4a2-3c4e83f52279.shg-align-container {
  display: flex;
  justify-content: center
}

.s-752ef781-89f0-407c-b4a2-3c4e83f52279.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-752ef781-89f0-407c-b4a2-3c4e83f52279.shogun-image {
  box-sizing: border-box;
}



.s-752ef781-89f0-407c-b4a2-3c4e83f52279 img.shogun-image {
  
}


}@media (max-width: 767px){#s-752ef781-89f0-407c-b4a2-3c4e83f52279 {
  margin: 0 !important;
  overflow: visible;
}

#s-752ef781-89f0-407c-b4a2-3c4e83f52279-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-752ef781-89f0-407c-b4a2-3c4e83f52279 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-752ef781-89f0-407c-b4a2-3c4e83f52279 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-752ef781-89f0-407c-b4a2-3c4e83f52279 img.shogun-image {
  /* Add background color handling */
  
}

#s-752ef781-89f0-407c-b4a2-3c4e83f52279 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-752ef781-89f0-407c-b4a2-3c4e83f52279 .shogun-image-content {
  
    justify-content: center;
  
}

.s-752ef781-89f0-407c-b4a2-3c4e83f52279.shg-align-container {
  display: flex;
  justify-content: center
}

.s-752ef781-89f0-407c-b4a2-3c4e83f52279.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-752ef781-89f0-407c-b4a2-3c4e83f52279.shogun-image {
  box-sizing: border-box;
}



.s-752ef781-89f0-407c-b4a2-3c4e83f52279 img.shogun-image {
  
}


}
#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-5f8480b1-c27d-4cd5-8977-92f8779e786d {
  min-height: 50px;
}








#s-5f8480b1-c27d-4cd5-8977-92f8779e786d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5f8480b1-c27d-4cd5-8977-92f8779e786d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ca44036d-ca17-4b1b-889d-35a713429880 {
  max-width: 1500px;
aspect-ratio: 1500/563;
text-align: center;
}

#s-ca44036d-ca17-4b1b-889d-35a713429880 {
  margin: 0 !important;
  overflow: visible;
}

#s-ca44036d-ca17-4b1b-889d-35a713429880-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ca44036d-ca17-4b1b-889d-35a713429880 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ca44036d-ca17-4b1b-889d-35a713429880 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ca44036d-ca17-4b1b-889d-35a713429880 img.shogun-image {
  /* Add background color handling */
  
}

#s-ca44036d-ca17-4b1b-889d-35a713429880 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ca44036d-ca17-4b1b-889d-35a713429880 .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-ca44036d-ca17-4b1b-889d-35a713429880 .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ca44036d-ca17-4b1b-889d-35a713429880 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ca44036d-ca17-4b1b-889d-35a713429880 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-ca44036d-ca17-4b1b-889d-35a713429880 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ca44036d-ca17-4b1b-889d-35a713429880.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image {
  box-sizing: border-box;
}



.s-ca44036d-ca17-4b1b-889d-35a713429880 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ca44036d-ca17-4b1b-889d-35a713429880 {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image-container {
      position: relative;
    }

    .s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ca44036d-ca17-4b1b-889d-35a713429880 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-ca44036d-ca17-4b1b-889d-35a713429880 {
  margin: 0 !important;
  overflow: visible;
}

#s-ca44036d-ca17-4b1b-889d-35a713429880-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ca44036d-ca17-4b1b-889d-35a713429880 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ca44036d-ca17-4b1b-889d-35a713429880 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ca44036d-ca17-4b1b-889d-35a713429880 img.shogun-image {
  /* Add background color handling */
  
}

#s-ca44036d-ca17-4b1b-889d-35a713429880 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ca44036d-ca17-4b1b-889d-35a713429880 .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-ca44036d-ca17-4b1b-889d-35a713429880 .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ca44036d-ca17-4b1b-889d-35a713429880 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ca44036d-ca17-4b1b-889d-35a713429880 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-ca44036d-ca17-4b1b-889d-35a713429880 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ca44036d-ca17-4b1b-889d-35a713429880.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image {
  box-sizing: border-box;
}



.s-ca44036d-ca17-4b1b-889d-35a713429880 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ca44036d-ca17-4b1b-889d-35a713429880 {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image-container {
      position: relative;
    }

    .s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ca44036d-ca17-4b1b-889d-35a713429880 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-ca44036d-ca17-4b1b-889d-35a713429880 {
  margin: 0 !important;
  overflow: visible;
}

#s-ca44036d-ca17-4b1b-889d-35a713429880-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ca44036d-ca17-4b1b-889d-35a713429880 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ca44036d-ca17-4b1b-889d-35a713429880 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ca44036d-ca17-4b1b-889d-35a713429880 img.shogun-image {
  /* Add background color handling */
  
}

#s-ca44036d-ca17-4b1b-889d-35a713429880 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ca44036d-ca17-4b1b-889d-35a713429880 .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-ca44036d-ca17-4b1b-889d-35a713429880 .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ca44036d-ca17-4b1b-889d-35a713429880 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ca44036d-ca17-4b1b-889d-35a713429880 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-ca44036d-ca17-4b1b-889d-35a713429880 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ca44036d-ca17-4b1b-889d-35a713429880.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image {
  box-sizing: border-box;
}



.s-ca44036d-ca17-4b1b-889d-35a713429880 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ca44036d-ca17-4b1b-889d-35a713429880 {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image-container {
      position: relative;
    }

    .s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ca44036d-ca17-4b1b-889d-35a713429880 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-ca44036d-ca17-4b1b-889d-35a713429880 {
  margin: 0 !important;
  overflow: visible;
}

#s-ca44036d-ca17-4b1b-889d-35a713429880-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ca44036d-ca17-4b1b-889d-35a713429880 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ca44036d-ca17-4b1b-889d-35a713429880 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ca44036d-ca17-4b1b-889d-35a713429880 img.shogun-image {
  /* Add background color handling */
  
}

#s-ca44036d-ca17-4b1b-889d-35a713429880 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ca44036d-ca17-4b1b-889d-35a713429880 .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-ca44036d-ca17-4b1b-889d-35a713429880 .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ca44036d-ca17-4b1b-889d-35a713429880 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ca44036d-ca17-4b1b-889d-35a713429880 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-ca44036d-ca17-4b1b-889d-35a713429880 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ca44036d-ca17-4b1b-889d-35a713429880.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image {
  box-sizing: border-box;
}



.s-ca44036d-ca17-4b1b-889d-35a713429880 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ca44036d-ca17-4b1b-889d-35a713429880 {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image-container {
      position: relative;
    }

    .s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ca44036d-ca17-4b1b-889d-35a713429880 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-ca44036d-ca17-4b1b-889d-35a713429880 {
  margin: 0 !important;
  overflow: visible;
}

#s-ca44036d-ca17-4b1b-889d-35a713429880-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ca44036d-ca17-4b1b-889d-35a713429880 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ca44036d-ca17-4b1b-889d-35a713429880 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ca44036d-ca17-4b1b-889d-35a713429880 img.shogun-image {
  /* Add background color handling */
  
}

#s-ca44036d-ca17-4b1b-889d-35a713429880 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ca44036d-ca17-4b1b-889d-35a713429880 .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-ca44036d-ca17-4b1b-889d-35a713429880 .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ca44036d-ca17-4b1b-889d-35a713429880 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ca44036d-ca17-4b1b-889d-35a713429880 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-ca44036d-ca17-4b1b-889d-35a713429880 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ca44036d-ca17-4b1b-889d-35a713429880.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image {
  box-sizing: border-box;
}



.s-ca44036d-ca17-4b1b-889d-35a713429880 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ca44036d-ca17-4b1b-889d-35a713429880 {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image-container {
      position: relative;
    }

    .s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ca44036d-ca17-4b1b-889d-35a713429880.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ca44036d-ca17-4b1b-889d-35a713429880 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
.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-91cbf21d-a09a-4cec-b1c6-ce1ff1d8f85e {
  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-91cbf21d-a09a-4cec-b1c6-ce1ff1d8f85e:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-91cbf21d-a09a-4cec-b1c6-ce1ff1d8f85e:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-91cbf21d-a09a-4cec-b1c6-ce1ff1d8f85e {
  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-91cbf21d-a09a-4cec-b1c6-ce1ff1d8f85e-root {
    text-align: center;
  }


#s-91cbf21d-a09a-4cec-b1c6-ce1ff1d8f85e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-91cbf21d-a09a-4cec-b1c6-ce1ff1d8f85e-root {
    text-align: left;
  }


#s-91cbf21d-a09a-4cec-b1c6-ce1ff1d8f85e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-91cbf21d-a09a-4cec-b1c6-ce1ff1d8f85e-root {
    text-align: center;
  }


#s-91cbf21d-a09a-4cec-b1c6-ce1ff1d8f85e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-91cbf21d-a09a-4cec-b1c6-ce1ff1d8f85e-root {
    text-align: center;
  }


#s-91cbf21d-a09a-4cec-b1c6-ce1ff1d8f85e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-91cbf21d-a09a-4cec-b1c6-ce1ff1d8f85e-root {
    text-align: center;
  }


#s-91cbf21d-a09a-4cec-b1c6-ce1ff1d8f85e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
@media (min-width: 0px) {
[id="s-e88062d7-2656-4ff2-bbb7-31c4c5e0bf8a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e88062d7-2656-4ff2-bbb7-31c4c5e0bf8a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e88062d7-2656-4ff2-bbb7-31c4c5e0bf8a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e88062d7-2656-4ff2-bbb7-31c4c5e0bf8a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-8ae125a0-efc6-4957-90e7-2dbd25873b8b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8ae125a0-efc6-4957-90e7-2dbd25873b8b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8ae125a0-efc6-4957-90e7-2dbd25873b8b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8ae125a0-efc6-4957-90e7-2dbd25873b8b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8ae125a0-efc6-4957-90e7-2dbd25873b8b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8ae125a0-efc6-4957-90e7-2dbd25873b8b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8ae125a0-efc6-4957-90e7-2dbd25873b8b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-6d810107-7d7d-4b80-b605-47f201f96013 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-ca16ce17-0adc-4482-aca0-f2699719607c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ca16ce17-0adc-4482-aca0-f2699719607c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ca16ce17-0adc-4482-aca0-f2699719607c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ca16ce17-0adc-4482-aca0-f2699719607c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ca16ce17-0adc-4482-aca0-f2699719607c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ca16ce17-0adc-4482-aca0-f2699719607c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ca16ce17-0adc-4482-aca0-f2699719607c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-e23b437b-56dd-4c16-a430-9127049a7cc6 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-af765a70-5648-457a-ae3b-1b2d7a9e9cdb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-af765a70-5648-457a-ae3b-1b2d7a9e9cdb"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-af765a70-5648-457a-ae3b-1b2d7a9e9cdb"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-af765a70-5648-457a-ae3b-1b2d7a9e9cdb"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-e614eda3-7d11-4d94-af80-a1f1a41076f6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e614eda3-7d11-4d94-af80-a1f1a41076f6"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e614eda3-7d11-4d94-af80-a1f1a41076f6"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e614eda3-7d11-4d94-af80-a1f1a41076f6"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e614eda3-7d11-4d94-af80-a1f1a41076f6"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e614eda3-7d11-4d94-af80-a1f1a41076f6"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e614eda3-7d11-4d94-af80-a1f1a41076f6"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-d0487a05-1872-4dbf-9bf2-4a63ed5c05f6 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-a5e9ee9c-3bd8-4d32-ad60-f1942fb612d3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a5e9ee9c-3bd8-4d32-ad60-f1942fb612d3"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a5e9ee9c-3bd8-4d32-ad60-f1942fb612d3"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a5e9ee9c-3bd8-4d32-ad60-f1942fb612d3"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a5e9ee9c-3bd8-4d32-ad60-f1942fb612d3"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a5e9ee9c-3bd8-4d32-ad60-f1942fb612d3"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a5e9ee9c-3bd8-4d32-ad60-f1942fb612d3"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-d57ff9de-0679-49f5-9307-0828c657cad6 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-9f9ba789-74a1-4fce-b08c-eea204563c43"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9f9ba789-74a1-4fce-b08c-eea204563c43"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9f9ba789-74a1-4fce-b08c-eea204563c43"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9f9ba789-74a1-4fce-b08c-eea204563c43"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-4a7c4b26-6640-4b3f-8b80-2ae9f23e6601"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4a7c4b26-6640-4b3f-8b80-2ae9f23e6601"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4a7c4b26-6640-4b3f-8b80-2ae9f23e6601"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4a7c4b26-6640-4b3f-8b80-2ae9f23e6601"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4a7c4b26-6640-4b3f-8b80-2ae9f23e6601"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4a7c4b26-6640-4b3f-8b80-2ae9f23e6601"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4a7c4b26-6640-4b3f-8b80-2ae9f23e6601"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-09de46fa-c8cf-47f3-b92d-a77df479fbc0 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-42d42821-5ecf-4028-a892-a1a35595c165"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-42d42821-5ecf-4028-a892-a1a35595c165"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-42d42821-5ecf-4028-a892-a1a35595c165"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-42d42821-5ecf-4028-a892-a1a35595c165"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-42d42821-5ecf-4028-a892-a1a35595c165"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-42d42821-5ecf-4028-a892-a1a35595c165"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-42d42821-5ecf-4028-a892-a1a35595c165"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-75b9365a-df7f-481b-9cbf-ddb980811923 {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-44a3baba-6781-4d35-ba56-71fcd62a16db {
  min-height: 50px;
}








#s-44a3baba-6781-4d35-ba56-71fcd62a16db > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-44a3baba-6781-4d35-ba56-71fcd62a16db.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

#s-54dcc743-abb1-4420-9e22-e4d9973acbb0 {
  text-align: left;
}


  #s-54dcc743-abb1-4420-9e22-e4d9973acbb0 .shogun-tabs > li > .shogun-tab-box {
    background: #fff;
    border: 1px solid #DDDDDD;
  }
  #s-54dcc743-abb1-4420-9e22-e4d9973acbb0 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: #F4F4F4;
    border: 1px solid #ddd;
  }
#s-54dcc743-abb1-4420-9e22-e4d9973acbb0 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: #50b3da;
  font-family: Inter;
  font-weight: ;
  font-style: ;
  font-size: 18px;
}

#s-54dcc743-abb1-4420-9e22-e4d9973acbb0 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: #555;
}

#s-54dcc743-abb1-4420-9e22-e4d9973acbb0 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: #F4F4F4;
}

#s-54dcc743-abb1-4420-9e22-e4d9973acbb0 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid #ddd;
}

.shogun-video {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.shogun-video-16x9 {
  padding-bottom: 56.25%;
}

.shogun-video-4x3 {
  padding-bottom: 75%;
}

.shogun-video-embed {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#s-7990b9a7-0ca1-4312-88d7-0c44e565cbd7 {
  margin-left: 2%;
margin-right: 2%;
}

#s-94aebe11-e058-436a-9e24-146fd68fe996 {
  margin-left: 2%;
margin-right: 2%;
padding-top: 20px;
padding-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-7885d3ed-3c4c-4ded-b0ef-cf56885f0328"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7885d3ed-3c4c-4ded-b0ef-cf56885f0328"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7885d3ed-3c4c-4ded-b0ef-cf56885f0328"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7885d3ed-3c4c-4ded-b0ef-cf56885f0328"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-550f97ad-2e06-43b1-9fea-364abaf20358"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-550f97ad-2e06-43b1-9fea-364abaf20358"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-550f97ad-2e06-43b1-9fea-364abaf20358"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-550f97ad-2e06-43b1-9fea-364abaf20358"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-550f97ad-2e06-43b1-9fea-364abaf20358"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-550f97ad-2e06-43b1-9fea-364abaf20358"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-550f97ad-2e06-43b1-9fea-364abaf20358"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-5cc84750-df43-4699-a995-782f7f46700a {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-9e66feeb-1696-44bf-8e1f-e58f9a92cd3b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9e66feeb-1696-44bf-8e1f-e58f9a92cd3b"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-9e66feeb-1696-44bf-8e1f-e58f9a92cd3b"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9e66feeb-1696-44bf-8e1f-e58f9a92cd3b"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-9e66feeb-1696-44bf-8e1f-e58f9a92cd3b"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9e66feeb-1696-44bf-8e1f-e58f9a92cd3b"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-9e66feeb-1696-44bf-8e1f-e58f9a92cd3b"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-d839a5f0-6fe2-4a00-9e50-dc1a109a9bb3 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-9f6a87bf-8006-4fde-beb6-34b431b070a6"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-9f6a87bf-8006-4fde-beb6-34b431b070a6"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-9f6a87bf-8006-4fde-beb6-34b431b070a6"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-9f6a87bf-8006-4fde-beb6-34b431b070a6"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-b83a367d-8606-4322-bef4-4f44f0afef08 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-b83a367d-8606-4322-bef4-4f44f0afef08 {
  margin: 0 !important;
  overflow: visible;
}

#s-b83a367d-8606-4322-bef4-4f44f0afef08-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b83a367d-8606-4322-bef4-4f44f0afef08 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b83a367d-8606-4322-bef4-4f44f0afef08 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b83a367d-8606-4322-bef4-4f44f0afef08 img.shogun-image {
  /* Add background color handling */
  
}

#s-b83a367d-8606-4322-bef4-4f44f0afef08 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b83a367d-8606-4322-bef4-4f44f0afef08 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b83a367d-8606-4322-bef4-4f44f0afef08 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b83a367d-8606-4322-bef4-4f44f0afef08 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b83a367d-8606-4322-bef4-4f44f0afef08 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-b83a367d-8606-4322-bef4-4f44f0afef08 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b83a367d-8606-4322-bef4-4f44f0afef08.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image {
  box-sizing: border-box;
}



.s-b83a367d-8606-4322-bef4-4f44f0afef08 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b83a367d-8606-4322-bef4-4f44f0afef08 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image-container {
      position: relative;
    }

    .s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b83a367d-8606-4322-bef4-4f44f0afef08 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-b83a367d-8606-4322-bef4-4f44f0afef08 {
  margin: 0 !important;
  overflow: visible;
}

#s-b83a367d-8606-4322-bef4-4f44f0afef08-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b83a367d-8606-4322-bef4-4f44f0afef08 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b83a367d-8606-4322-bef4-4f44f0afef08 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b83a367d-8606-4322-bef4-4f44f0afef08 img.shogun-image {
  /* Add background color handling */
  
}

#s-b83a367d-8606-4322-bef4-4f44f0afef08 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b83a367d-8606-4322-bef4-4f44f0afef08 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b83a367d-8606-4322-bef4-4f44f0afef08 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b83a367d-8606-4322-bef4-4f44f0afef08 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b83a367d-8606-4322-bef4-4f44f0afef08 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-b83a367d-8606-4322-bef4-4f44f0afef08 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b83a367d-8606-4322-bef4-4f44f0afef08.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image {
  box-sizing: border-box;
}



.s-b83a367d-8606-4322-bef4-4f44f0afef08 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b83a367d-8606-4322-bef4-4f44f0afef08 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image-container {
      position: relative;
    }

    .s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b83a367d-8606-4322-bef4-4f44f0afef08 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-b83a367d-8606-4322-bef4-4f44f0afef08 {
  margin: 0 !important;
  overflow: visible;
}

#s-b83a367d-8606-4322-bef4-4f44f0afef08-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b83a367d-8606-4322-bef4-4f44f0afef08 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b83a367d-8606-4322-bef4-4f44f0afef08 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b83a367d-8606-4322-bef4-4f44f0afef08 img.shogun-image {
  /* Add background color handling */
  
}

#s-b83a367d-8606-4322-bef4-4f44f0afef08 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b83a367d-8606-4322-bef4-4f44f0afef08 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b83a367d-8606-4322-bef4-4f44f0afef08 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b83a367d-8606-4322-bef4-4f44f0afef08 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b83a367d-8606-4322-bef4-4f44f0afef08 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-b83a367d-8606-4322-bef4-4f44f0afef08 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b83a367d-8606-4322-bef4-4f44f0afef08.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image {
  box-sizing: border-box;
}



.s-b83a367d-8606-4322-bef4-4f44f0afef08 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b83a367d-8606-4322-bef4-4f44f0afef08 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image-container {
      position: relative;
    }

    .s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b83a367d-8606-4322-bef4-4f44f0afef08 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-b83a367d-8606-4322-bef4-4f44f0afef08 {
  margin: 0 !important;
  overflow: visible;
}

#s-b83a367d-8606-4322-bef4-4f44f0afef08-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b83a367d-8606-4322-bef4-4f44f0afef08 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b83a367d-8606-4322-bef4-4f44f0afef08 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b83a367d-8606-4322-bef4-4f44f0afef08 img.shogun-image {
  /* Add background color handling */
  
}

#s-b83a367d-8606-4322-bef4-4f44f0afef08 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b83a367d-8606-4322-bef4-4f44f0afef08 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b83a367d-8606-4322-bef4-4f44f0afef08 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b83a367d-8606-4322-bef4-4f44f0afef08 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b83a367d-8606-4322-bef4-4f44f0afef08 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-b83a367d-8606-4322-bef4-4f44f0afef08 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b83a367d-8606-4322-bef4-4f44f0afef08.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image {
  box-sizing: border-box;
}



.s-b83a367d-8606-4322-bef4-4f44f0afef08 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b83a367d-8606-4322-bef4-4f44f0afef08 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image-container {
      position: relative;
    }

    .s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b83a367d-8606-4322-bef4-4f44f0afef08 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-b83a367d-8606-4322-bef4-4f44f0afef08 {
  margin: 0 !important;
  overflow: visible;
}

#s-b83a367d-8606-4322-bef4-4f44f0afef08-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b83a367d-8606-4322-bef4-4f44f0afef08 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b83a367d-8606-4322-bef4-4f44f0afef08 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b83a367d-8606-4322-bef4-4f44f0afef08 img.shogun-image {
  /* Add background color handling */
  
}

#s-b83a367d-8606-4322-bef4-4f44f0afef08 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b83a367d-8606-4322-bef4-4f44f0afef08 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b83a367d-8606-4322-bef4-4f44f0afef08 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b83a367d-8606-4322-bef4-4f44f0afef08 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b83a367d-8606-4322-bef4-4f44f0afef08 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-b83a367d-8606-4322-bef4-4f44f0afef08 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b83a367d-8606-4322-bef4-4f44f0afef08.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image {
  box-sizing: border-box;
}



.s-b83a367d-8606-4322-bef4-4f44f0afef08 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b83a367d-8606-4322-bef4-4f44f0afef08 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image-container {
      position: relative;
    }

    .s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b83a367d-8606-4322-bef4-4f44f0afef08.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b83a367d-8606-4322-bef4-4f44f0afef08 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-b73bb7af-13f3-4f07-8dfd-2f279979135b {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-b73bb7af-13f3-4f07-8dfd-2f279979135b {
  margin: 0 !important;
  overflow: visible;
}

#s-b73bb7af-13f3-4f07-8dfd-2f279979135b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b73bb7af-13f3-4f07-8dfd-2f279979135b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b73bb7af-13f3-4f07-8dfd-2f279979135b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b73bb7af-13f3-4f07-8dfd-2f279979135b img.shogun-image {
  /* Add background color handling */
  
}

#s-b73bb7af-13f3-4f07-8dfd-2f279979135b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b73bb7af-13f3-4f07-8dfd-2f279979135b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b73bb7af-13f3-4f07-8dfd-2f279979135b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b73bb7af-13f3-4f07-8dfd-2f279979135b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b73bb7af-13f3-4f07-8dfd-2f279979135b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-b73bb7af-13f3-4f07-8dfd-2f279979135b .shogun-image-content {
  
    justify-content: center;
  
}

.s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image {
  box-sizing: border-box;
}



.s-b73bb7af-13f3-4f07-8dfd-2f279979135b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b73bb7af-13f3-4f07-8dfd-2f279979135b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image-container {
      position: relative;
    }

    .s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b73bb7af-13f3-4f07-8dfd-2f279979135b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-b73bb7af-13f3-4f07-8dfd-2f279979135b {
  margin: 0 !important;
  overflow: visible;
}

#s-b73bb7af-13f3-4f07-8dfd-2f279979135b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b73bb7af-13f3-4f07-8dfd-2f279979135b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b73bb7af-13f3-4f07-8dfd-2f279979135b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b73bb7af-13f3-4f07-8dfd-2f279979135b img.shogun-image {
  /* Add background color handling */
  
}

#s-b73bb7af-13f3-4f07-8dfd-2f279979135b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b73bb7af-13f3-4f07-8dfd-2f279979135b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b73bb7af-13f3-4f07-8dfd-2f279979135b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b73bb7af-13f3-4f07-8dfd-2f279979135b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b73bb7af-13f3-4f07-8dfd-2f279979135b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-b73bb7af-13f3-4f07-8dfd-2f279979135b .shogun-image-content {
  
    justify-content: center;
  
}

.s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image {
  box-sizing: border-box;
}



.s-b73bb7af-13f3-4f07-8dfd-2f279979135b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b73bb7af-13f3-4f07-8dfd-2f279979135b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image-container {
      position: relative;
    }

    .s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b73bb7af-13f3-4f07-8dfd-2f279979135b 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-b73bb7af-13f3-4f07-8dfd-2f279979135b {
  margin: 0 !important;
  overflow: visible;
}

#s-b73bb7af-13f3-4f07-8dfd-2f279979135b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b73bb7af-13f3-4f07-8dfd-2f279979135b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b73bb7af-13f3-4f07-8dfd-2f279979135b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b73bb7af-13f3-4f07-8dfd-2f279979135b img.shogun-image {
  /* Add background color handling */
  
}

#s-b73bb7af-13f3-4f07-8dfd-2f279979135b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b73bb7af-13f3-4f07-8dfd-2f279979135b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b73bb7af-13f3-4f07-8dfd-2f279979135b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b73bb7af-13f3-4f07-8dfd-2f279979135b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b73bb7af-13f3-4f07-8dfd-2f279979135b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-b73bb7af-13f3-4f07-8dfd-2f279979135b .shogun-image-content {
  
    justify-content: center;
  
}

.s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image {
  box-sizing: border-box;
}



.s-b73bb7af-13f3-4f07-8dfd-2f279979135b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b73bb7af-13f3-4f07-8dfd-2f279979135b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image-container {
      position: relative;
    }

    .s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b73bb7af-13f3-4f07-8dfd-2f279979135b 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-b73bb7af-13f3-4f07-8dfd-2f279979135b {
  margin: 0 !important;
  overflow: visible;
}

#s-b73bb7af-13f3-4f07-8dfd-2f279979135b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b73bb7af-13f3-4f07-8dfd-2f279979135b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b73bb7af-13f3-4f07-8dfd-2f279979135b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b73bb7af-13f3-4f07-8dfd-2f279979135b img.shogun-image {
  /* Add background color handling */
  
}

#s-b73bb7af-13f3-4f07-8dfd-2f279979135b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b73bb7af-13f3-4f07-8dfd-2f279979135b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b73bb7af-13f3-4f07-8dfd-2f279979135b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b73bb7af-13f3-4f07-8dfd-2f279979135b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b73bb7af-13f3-4f07-8dfd-2f279979135b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-b73bb7af-13f3-4f07-8dfd-2f279979135b .shogun-image-content {
  
    justify-content: center;
  
}

.s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image {
  box-sizing: border-box;
}



.s-b73bb7af-13f3-4f07-8dfd-2f279979135b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b73bb7af-13f3-4f07-8dfd-2f279979135b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image-container {
      position: relative;
    }

    .s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b73bb7af-13f3-4f07-8dfd-2f279979135b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-b73bb7af-13f3-4f07-8dfd-2f279979135b {
  margin: 0 !important;
  overflow: visible;
}

#s-b73bb7af-13f3-4f07-8dfd-2f279979135b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b73bb7af-13f3-4f07-8dfd-2f279979135b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b73bb7af-13f3-4f07-8dfd-2f279979135b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b73bb7af-13f3-4f07-8dfd-2f279979135b img.shogun-image {
  /* Add background color handling */
  
}

#s-b73bb7af-13f3-4f07-8dfd-2f279979135b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b73bb7af-13f3-4f07-8dfd-2f279979135b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b73bb7af-13f3-4f07-8dfd-2f279979135b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b73bb7af-13f3-4f07-8dfd-2f279979135b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b73bb7af-13f3-4f07-8dfd-2f279979135b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-b73bb7af-13f3-4f07-8dfd-2f279979135b .shogun-image-content {
  
    justify-content: center;
  
}

.s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image {
  box-sizing: border-box;
}



.s-b73bb7af-13f3-4f07-8dfd-2f279979135b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b73bb7af-13f3-4f07-8dfd-2f279979135b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image-container {
      position: relative;
    }

    .s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b73bb7af-13f3-4f07-8dfd-2f279979135b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b73bb7af-13f3-4f07-8dfd-2f279979135b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-a23f8147-13d3-4934-9486-e18e1f0dccfb {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-a23f8147-13d3-4934-9486-e18e1f0dccfb {
  margin: 0 !important;
  overflow: visible;
}

#s-a23f8147-13d3-4934-9486-e18e1f0dccfb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a23f8147-13d3-4934-9486-e18e1f0dccfb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a23f8147-13d3-4934-9486-e18e1f0dccfb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a23f8147-13d3-4934-9486-e18e1f0dccfb img.shogun-image {
  /* Add background color handling */
  
}

#s-a23f8147-13d3-4934-9486-e18e1f0dccfb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a23f8147-13d3-4934-9486-e18e1f0dccfb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a23f8147-13d3-4934-9486-e18e1f0dccfb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a23f8147-13d3-4934-9486-e18e1f0dccfb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a23f8147-13d3-4934-9486-e18e1f0dccfb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-a23f8147-13d3-4934-9486-e18e1f0dccfb .shogun-image-content {
  
    justify-content: center;
  
}

.s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image {
  box-sizing: border-box;
}



.s-a23f8147-13d3-4934-9486-e18e1f0dccfb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a23f8147-13d3-4934-9486-e18e1f0dccfb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image-container {
      position: relative;
    }

    .s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a23f8147-13d3-4934-9486-e18e1f0dccfb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-a23f8147-13d3-4934-9486-e18e1f0dccfb {
  margin: 0 !important;
  overflow: visible;
}

#s-a23f8147-13d3-4934-9486-e18e1f0dccfb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a23f8147-13d3-4934-9486-e18e1f0dccfb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a23f8147-13d3-4934-9486-e18e1f0dccfb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a23f8147-13d3-4934-9486-e18e1f0dccfb img.shogun-image {
  /* Add background color handling */
  
}

#s-a23f8147-13d3-4934-9486-e18e1f0dccfb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a23f8147-13d3-4934-9486-e18e1f0dccfb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a23f8147-13d3-4934-9486-e18e1f0dccfb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a23f8147-13d3-4934-9486-e18e1f0dccfb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a23f8147-13d3-4934-9486-e18e1f0dccfb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-a23f8147-13d3-4934-9486-e18e1f0dccfb .shogun-image-content {
  
    justify-content: center;
  
}

.s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image {
  box-sizing: border-box;
}



.s-a23f8147-13d3-4934-9486-e18e1f0dccfb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a23f8147-13d3-4934-9486-e18e1f0dccfb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image-container {
      position: relative;
    }

    .s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a23f8147-13d3-4934-9486-e18e1f0dccfb 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-a23f8147-13d3-4934-9486-e18e1f0dccfb {
  margin: 0 !important;
  overflow: visible;
}

#s-a23f8147-13d3-4934-9486-e18e1f0dccfb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a23f8147-13d3-4934-9486-e18e1f0dccfb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a23f8147-13d3-4934-9486-e18e1f0dccfb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a23f8147-13d3-4934-9486-e18e1f0dccfb img.shogun-image {
  /* Add background color handling */
  
}

#s-a23f8147-13d3-4934-9486-e18e1f0dccfb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a23f8147-13d3-4934-9486-e18e1f0dccfb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a23f8147-13d3-4934-9486-e18e1f0dccfb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a23f8147-13d3-4934-9486-e18e1f0dccfb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a23f8147-13d3-4934-9486-e18e1f0dccfb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-a23f8147-13d3-4934-9486-e18e1f0dccfb .shogun-image-content {
  
    justify-content: center;
  
}

.s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image {
  box-sizing: border-box;
}



.s-a23f8147-13d3-4934-9486-e18e1f0dccfb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a23f8147-13d3-4934-9486-e18e1f0dccfb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image-container {
      position: relative;
    }

    .s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a23f8147-13d3-4934-9486-e18e1f0dccfb 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-a23f8147-13d3-4934-9486-e18e1f0dccfb {
  margin: 0 !important;
  overflow: visible;
}

#s-a23f8147-13d3-4934-9486-e18e1f0dccfb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a23f8147-13d3-4934-9486-e18e1f0dccfb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a23f8147-13d3-4934-9486-e18e1f0dccfb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a23f8147-13d3-4934-9486-e18e1f0dccfb img.shogun-image {
  /* Add background color handling */
  
}

#s-a23f8147-13d3-4934-9486-e18e1f0dccfb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a23f8147-13d3-4934-9486-e18e1f0dccfb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a23f8147-13d3-4934-9486-e18e1f0dccfb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a23f8147-13d3-4934-9486-e18e1f0dccfb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a23f8147-13d3-4934-9486-e18e1f0dccfb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-a23f8147-13d3-4934-9486-e18e1f0dccfb .shogun-image-content {
  
    justify-content: center;
  
}

.s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image {
  box-sizing: border-box;
}



.s-a23f8147-13d3-4934-9486-e18e1f0dccfb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a23f8147-13d3-4934-9486-e18e1f0dccfb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image-container {
      position: relative;
    }

    .s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a23f8147-13d3-4934-9486-e18e1f0dccfb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-a23f8147-13d3-4934-9486-e18e1f0dccfb {
  margin: 0 !important;
  overflow: visible;
}

#s-a23f8147-13d3-4934-9486-e18e1f0dccfb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a23f8147-13d3-4934-9486-e18e1f0dccfb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a23f8147-13d3-4934-9486-e18e1f0dccfb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a23f8147-13d3-4934-9486-e18e1f0dccfb img.shogun-image {
  /* Add background color handling */
  
}

#s-a23f8147-13d3-4934-9486-e18e1f0dccfb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a23f8147-13d3-4934-9486-e18e1f0dccfb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a23f8147-13d3-4934-9486-e18e1f0dccfb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a23f8147-13d3-4934-9486-e18e1f0dccfb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a23f8147-13d3-4934-9486-e18e1f0dccfb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-a23f8147-13d3-4934-9486-e18e1f0dccfb .shogun-image-content {
  
    justify-content: center;
  
}

.s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image {
  box-sizing: border-box;
}



.s-a23f8147-13d3-4934-9486-e18e1f0dccfb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a23f8147-13d3-4934-9486-e18e1f0dccfb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image-container {
      position: relative;
    }

    .s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a23f8147-13d3-4934-9486-e18e1f0dccfb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a23f8147-13d3-4934-9486-e18e1f0dccfb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 {
  margin: 0 !important;
  overflow: visible;
}

#s-e3c39d7a-952c-4d45-8338-bb26bafa5c18-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 img.shogun-image {
  /* Add background color handling */
  
}

#s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image {
  box-sizing: border-box;
}



.s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image-container {
      position: relative;
    }

    .s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 {
  margin: 0 !important;
  overflow: visible;
}

#s-e3c39d7a-952c-4d45-8338-bb26bafa5c18-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 img.shogun-image {
  /* Add background color handling */
  
}

#s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image {
  box-sizing: border-box;
}



.s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image-container {
      position: relative;
    }

    .s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 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-e3c39d7a-952c-4d45-8338-bb26bafa5c18 {
  margin: 0 !important;
  overflow: visible;
}

#s-e3c39d7a-952c-4d45-8338-bb26bafa5c18-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 img.shogun-image {
  /* Add background color handling */
  
}

#s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image {
  box-sizing: border-box;
}



.s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image-container {
      position: relative;
    }

    .s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 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-e3c39d7a-952c-4d45-8338-bb26bafa5c18 {
  margin: 0 !important;
  overflow: visible;
}

#s-e3c39d7a-952c-4d45-8338-bb26bafa5c18-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 img.shogun-image {
  /* Add background color handling */
  
}

#s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image {
  box-sizing: border-box;
}



.s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image-container {
      position: relative;
    }

    .s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 {
  margin: 0 !important;
  overflow: visible;
}

#s-e3c39d7a-952c-4d45-8338-bb26bafa5c18-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 img.shogun-image {
  /* Add background color handling */
  
}

#s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image {
  box-sizing: border-box;
}



.s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image-container {
      position: relative;
    }

    .s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e3c39d7a-952c-4d45-8338-bb26bafa5c18.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e3c39d7a-952c-4d45-8338-bb26bafa5c18 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
.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-9c3c26c7-acf4-42a5-902f-490b9881acdb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9c3c26c7-acf4-42a5-902f-490b9881acdb"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9c3c26c7-acf4-42a5-902f-490b9881acdb"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9c3c26c7-acf4-42a5-902f-490b9881acdb"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-e203e7bf-0927-4155-ba1a-1935e5d5f857"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e203e7bf-0927-4155-ba1a-1935e5d5f857"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e203e7bf-0927-4155-ba1a-1935e5d5f857"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e203e7bf-0927-4155-ba1a-1935e5d5f857"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e203e7bf-0927-4155-ba1a-1935e5d5f857"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e203e7bf-0927-4155-ba1a-1935e5d5f857"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e203e7bf-0927-4155-ba1a-1935e5d5f857"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-46109a6c-1f64-4f17-b8e7-ccf026a13834 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-5b158f40-24ec-4c1d-bd7e-6c552fc026a8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5b158f40-24ec-4c1d-bd7e-6c552fc026a8"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5b158f40-24ec-4c1d-bd7e-6c552fc026a8"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5b158f40-24ec-4c1d-bd7e-6c552fc026a8"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5b158f40-24ec-4c1d-bd7e-6c552fc026a8"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5b158f40-24ec-4c1d-bd7e-6c552fc026a8"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5b158f40-24ec-4c1d-bd7e-6c552fc026a8"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-526d63a3-9dac-4abd-8512-07cb4499bcc6 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-5160f8e7-2d12-46d1-bfc3-af32810e4e06"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5160f8e7-2d12-46d1-bfc3-af32810e4e06"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5160f8e7-2d12-46d1-bfc3-af32810e4e06"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5160f8e7-2d12-46d1-bfc3-af32810e4e06"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-97dfddea-9aea-4cbf-81e7-0f7a0d659895"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-97dfddea-9aea-4cbf-81e7-0f7a0d659895"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-97dfddea-9aea-4cbf-81e7-0f7a0d659895"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-97dfddea-9aea-4cbf-81e7-0f7a0d659895"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-97dfddea-9aea-4cbf-81e7-0f7a0d659895"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-97dfddea-9aea-4cbf-81e7-0f7a0d659895"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-97dfddea-9aea-4cbf-81e7-0f7a0d659895"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-4caf16ae-04aa-495a-812c-00d9c69e8483 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-50894440-2b83-4c19-9d18-35bc15f5ccbb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-50894440-2b83-4c19-9d18-35bc15f5ccbb"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-50894440-2b83-4c19-9d18-35bc15f5ccbb"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-50894440-2b83-4c19-9d18-35bc15f5ccbb"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-50894440-2b83-4c19-9d18-35bc15f5ccbb"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-50894440-2b83-4c19-9d18-35bc15f5ccbb"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-50894440-2b83-4c19-9d18-35bc15f5ccbb"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-63abc451-cff1-4589-8de6-d7fca0d083ab {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-87b3ecd2-fef8-43c0-96ed-96b7e41b82e0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-87b3ecd2-fef8-43c0-96ed-96b7e41b82e0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-87b3ecd2-fef8-43c0-96ed-96b7e41b82e0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-87b3ecd2-fef8-43c0-96ed-96b7e41b82e0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-d002d2a5-ecbb-433f-844e-a0535baab2da"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d002d2a5-ecbb-433f-844e-a0535baab2da"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d002d2a5-ecbb-433f-844e-a0535baab2da"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d002d2a5-ecbb-433f-844e-a0535baab2da"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d002d2a5-ecbb-433f-844e-a0535baab2da"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d002d2a5-ecbb-433f-844e-a0535baab2da"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d002d2a5-ecbb-433f-844e-a0535baab2da"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-2dad5dc6-6c2f-468a-82ae-496adc8db558 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-d4836631-4092-4e77-a528-e35dd87b5fe8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d4836631-4092-4e77-a528-e35dd87b5fe8"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d4836631-4092-4e77-a528-e35dd87b5fe8"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d4836631-4092-4e77-a528-e35dd87b5fe8"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d4836631-4092-4e77-a528-e35dd87b5fe8"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d4836631-4092-4e77-a528-e35dd87b5fe8"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d4836631-4092-4e77-a528-e35dd87b5fe8"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-e2ed2d14-5363-4d11-bc0a-e9041ffab2d6 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-ab9650ba-ed1d-40e9-afb4-0a99573cb3d9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ab9650ba-ed1d-40e9-afb4-0a99573cb3d9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ab9650ba-ed1d-40e9-afb4-0a99573cb3d9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ab9650ba-ed1d-40e9-afb4-0a99573cb3d9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-7ba96a20-deb5-4ac5-b3e6-eb8cd7269e38"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7ba96a20-deb5-4ac5-b3e6-eb8cd7269e38"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-7ba96a20-deb5-4ac5-b3e6-eb8cd7269e38"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7ba96a20-deb5-4ac5-b3e6-eb8cd7269e38"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-7ba96a20-deb5-4ac5-b3e6-eb8cd7269e38"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7ba96a20-deb5-4ac5-b3e6-eb8cd7269e38"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-7ba96a20-deb5-4ac5-b3e6-eb8cd7269e38"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-6d19f018-96e0-4980-b9b5-9ded35268973 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-8e7cbff3-edd5-488f-9de4-6866c2489fd0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8e7cbff3-edd5-488f-9de4-6866c2489fd0"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8e7cbff3-edd5-488f-9de4-6866c2489fd0"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8e7cbff3-edd5-488f-9de4-6866c2489fd0"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8e7cbff3-edd5-488f-9de4-6866c2489fd0"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8e7cbff3-edd5-488f-9de4-6866c2489fd0"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8e7cbff3-edd5-488f-9de4-6866c2489fd0"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-a7cf0516-1cd8-4bbd-98ee-7e5d073738d4 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-77529620-667f-4e2d-8b42-cd632fc0874f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-77529620-667f-4e2d-8b42-cd632fc0874f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-77529620-667f-4e2d-8b42-cd632fc0874f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-77529620-667f-4e2d-8b42-cd632fc0874f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-77529620-667f-4e2d-8b42-cd632fc0874f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-77529620-667f-4e2d-8b42-cd632fc0874f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-77529620-667f-4e2d-8b42-cd632fc0874f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

#s-f6d74f76-2ff2-4645-9f25-3a427e529c9b {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 0%;
padding-right: 0%;
}

#s-b5dcbd14-c684-4870-ad1a-39c52240302c {
  margin-left: 4%;
margin-right: 4%;
padding-top: 20px;
padding-left: 1%;
padding-bottom: 20px;
padding-right: 1%;
}

#s-0ca7b95a-3066-4fc0-9749-9a74ec76297d {
  max-width: 1920px;
text-align: center;
}

#s-0ca7b95a-3066-4fc0-9749-9a74ec76297d {
  margin: 0 !important;
  overflow: visible;
}

#s-0ca7b95a-3066-4fc0-9749-9a74ec76297d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0ca7b95a-3066-4fc0-9749-9a74ec76297d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0ca7b95a-3066-4fc0-9749-9a74ec76297d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0ca7b95a-3066-4fc0-9749-9a74ec76297d img.shogun-image {
  /* Add background color handling */
  
}

#s-0ca7b95a-3066-4fc0-9749-9a74ec76297d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-0ca7b95a-3066-4fc0-9749-9a74ec76297d .shogun-image-content {
  
    justify-content: center;
  
}

.s-0ca7b95a-3066-4fc0-9749-9a74ec76297d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0ca7b95a-3066-4fc0-9749-9a74ec76297d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0ca7b95a-3066-4fc0-9749-9a74ec76297d.shogun-image {
  box-sizing: border-box;
}



.s-0ca7b95a-3066-4fc0-9749-9a74ec76297d img.shogun-image {
  
}


@media (min-width: 1200px){#s-0ca7b95a-3066-4fc0-9749-9a74ec76297d {
  margin: 0 !important;
  overflow: visible;
}

#s-0ca7b95a-3066-4fc0-9749-9a74ec76297d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0ca7b95a-3066-4fc0-9749-9a74ec76297d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0ca7b95a-3066-4fc0-9749-9a74ec76297d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0ca7b95a-3066-4fc0-9749-9a74ec76297d img.shogun-image {
  /* Add background color handling */
  
}

#s-0ca7b95a-3066-4fc0-9749-9a74ec76297d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-0ca7b95a-3066-4fc0-9749-9a74ec76297d .shogun-image-content {
  
    justify-content: center;
  
}

.s-0ca7b95a-3066-4fc0-9749-9a74ec76297d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0ca7b95a-3066-4fc0-9749-9a74ec76297d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0ca7b95a-3066-4fc0-9749-9a74ec76297d.shogun-image {
  box-sizing: border-box;
}



.s-0ca7b95a-3066-4fc0-9749-9a74ec76297d img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-0ca7b95a-3066-4fc0-9749-9a74ec76297d {
  margin: 0 !important;
  overflow: visible;
}

#s-0ca7b95a-3066-4fc0-9749-9a74ec76297d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0ca7b95a-3066-4fc0-9749-9a74ec76297d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0ca7b95a-3066-4fc0-9749-9a74ec76297d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0ca7b95a-3066-4fc0-9749-9a74ec76297d img.shogun-image {
  /* Add background color handling */
  
}

#s-0ca7b95a-3066-4fc0-9749-9a74ec76297d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-0ca7b95a-3066-4fc0-9749-9a74ec76297d .shogun-image-content {
  
    justify-content: center;
  
}

.s-0ca7b95a-3066-4fc0-9749-9a74ec76297d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0ca7b95a-3066-4fc0-9749-9a74ec76297d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0ca7b95a-3066-4fc0-9749-9a74ec76297d.shogun-image {
  box-sizing: border-box;
}



.s-0ca7b95a-3066-4fc0-9749-9a74ec76297d img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-0ca7b95a-3066-4fc0-9749-9a74ec76297d {
  margin: 0 !important;
  overflow: visible;
}

#s-0ca7b95a-3066-4fc0-9749-9a74ec76297d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0ca7b95a-3066-4fc0-9749-9a74ec76297d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0ca7b95a-3066-4fc0-9749-9a74ec76297d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0ca7b95a-3066-4fc0-9749-9a74ec76297d img.shogun-image {
  /* Add background color handling */
  
}

#s-0ca7b95a-3066-4fc0-9749-9a74ec76297d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-0ca7b95a-3066-4fc0-9749-9a74ec76297d .shogun-image-content {
  
    justify-content: center;
  
}

.s-0ca7b95a-3066-4fc0-9749-9a74ec76297d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0ca7b95a-3066-4fc0-9749-9a74ec76297d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0ca7b95a-3066-4fc0-9749-9a74ec76297d.shogun-image {
  box-sizing: border-box;
}



.s-0ca7b95a-3066-4fc0-9749-9a74ec76297d img.shogun-image {
  
}


}@media (max-width: 767px){#s-0ca7b95a-3066-4fc0-9749-9a74ec76297d {
  margin: 0 !important;
  overflow: visible;
}

#s-0ca7b95a-3066-4fc0-9749-9a74ec76297d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0ca7b95a-3066-4fc0-9749-9a74ec76297d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0ca7b95a-3066-4fc0-9749-9a74ec76297d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0ca7b95a-3066-4fc0-9749-9a74ec76297d img.shogun-image {
  /* Add background color handling */
  
}

#s-0ca7b95a-3066-4fc0-9749-9a74ec76297d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-0ca7b95a-3066-4fc0-9749-9a74ec76297d .shogun-image-content {
  
    justify-content: center;
  
}

.s-0ca7b95a-3066-4fc0-9749-9a74ec76297d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0ca7b95a-3066-4fc0-9749-9a74ec76297d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0ca7b95a-3066-4fc0-9749-9a74ec76297d.shogun-image {
  box-sizing: border-box;
}



.s-0ca7b95a-3066-4fc0-9749-9a74ec76297d img.shogun-image {
  
}


}
@media (min-width: 0px) {
[id="s-e793a348-4246-4019-93ec-ff2c1de908cd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e793a348-4246-4019-93ec-ff2c1de908cd"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e793a348-4246-4019-93ec-ff2c1de908cd"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e793a348-4246-4019-93ec-ff2c1de908cd"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-6dc4c14b-fe64-48f1-a368-de05abc82d0f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6dc4c14b-fe64-48f1-a368-de05abc82d0f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6dc4c14b-fe64-48f1-a368-de05abc82d0f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6dc4c14b-fe64-48f1-a368-de05abc82d0f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6dc4c14b-fe64-48f1-a368-de05abc82d0f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6dc4c14b-fe64-48f1-a368-de05abc82d0f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6dc4c14b-fe64-48f1-a368-de05abc82d0f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-8ed2d7a6-d0c4-41ac-ad70-4c536422b4fb {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-e4ed4445-f1cb-436c-9cd8-ba87aa68242d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e4ed4445-f1cb-436c-9cd8-ba87aa68242d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e4ed4445-f1cb-436c-9cd8-ba87aa68242d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e4ed4445-f1cb-436c-9cd8-ba87aa68242d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e4ed4445-f1cb-436c-9cd8-ba87aa68242d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e4ed4445-f1cb-436c-9cd8-ba87aa68242d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e4ed4445-f1cb-436c-9cd8-ba87aa68242d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-5ce0611a-49ad-4134-b78c-fab088452eb8 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-d2edeb63-fe79-49c3-9878-ef467428a343"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d2edeb63-fe79-49c3-9878-ef467428a343"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d2edeb63-fe79-49c3-9878-ef467428a343"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d2edeb63-fe79-49c3-9878-ef467428a343"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-ee02218a-33b1-4a86-9da4-6c4ffe7f60c8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ee02218a-33b1-4a86-9da4-6c4ffe7f60c8"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ee02218a-33b1-4a86-9da4-6c4ffe7f60c8"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ee02218a-33b1-4a86-9da4-6c4ffe7f60c8"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ee02218a-33b1-4a86-9da4-6c4ffe7f60c8"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ee02218a-33b1-4a86-9da4-6c4ffe7f60c8"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ee02218a-33b1-4a86-9da4-6c4ffe7f60c8"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-ff85187c-19b6-48b6-8c33-6db54bd5a6da {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-4687e126-9712-45ec-a90a-317c03f219c0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4687e126-9712-45ec-a90a-317c03f219c0"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4687e126-9712-45ec-a90a-317c03f219c0"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4687e126-9712-45ec-a90a-317c03f219c0"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4687e126-9712-45ec-a90a-317c03f219c0"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4687e126-9712-45ec-a90a-317c03f219c0"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4687e126-9712-45ec-a90a-317c03f219c0"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-9634fc0d-b343-4c45-ab2a-f855dfc83cc8 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-3cbd2bc0-3652-438c-be31-402afab6ec58"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3cbd2bc0-3652-438c-be31-402afab6ec58"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3cbd2bc0-3652-438c-be31-402afab6ec58"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3cbd2bc0-3652-438c-be31-402afab6ec58"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-ca9b057d-5cea-47c2-a48a-0dc09a657c16"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ca9b057d-5cea-47c2-a48a-0dc09a657c16"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ca9b057d-5cea-47c2-a48a-0dc09a657c16"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ca9b057d-5cea-47c2-a48a-0dc09a657c16"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ca9b057d-5cea-47c2-a48a-0dc09a657c16"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ca9b057d-5cea-47c2-a48a-0dc09a657c16"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ca9b057d-5cea-47c2-a48a-0dc09a657c16"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-5e4d2904-752a-4c19-8184-aea41b59205a {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-76c218db-2a94-4f52-9a3e-b20e73b93550"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-76c218db-2a94-4f52-9a3e-b20e73b93550"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-76c218db-2a94-4f52-9a3e-b20e73b93550"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-76c218db-2a94-4f52-9a3e-b20e73b93550"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-76c218db-2a94-4f52-9a3e-b20e73b93550"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-76c218db-2a94-4f52-9a3e-b20e73b93550"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-76c218db-2a94-4f52-9a3e-b20e73b93550"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-3dbe8bf5-43ae-4036-8af2-3021501a21cd {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-17c12a24-3ca5-47b2-84ce-18625ce627af"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-17c12a24-3ca5-47b2-84ce-18625ce627af"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-17c12a24-3ca5-47b2-84ce-18625ce627af"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-17c12a24-3ca5-47b2-84ce-18625ce627af"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-b57b4de9-6808-49a9-be89-fff0929838f1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b57b4de9-6808-49a9-be89-fff0929838f1"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-b57b4de9-6808-49a9-be89-fff0929838f1"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b57b4de9-6808-49a9-be89-fff0929838f1"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-b57b4de9-6808-49a9-be89-fff0929838f1"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b57b4de9-6808-49a9-be89-fff0929838f1"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-b57b4de9-6808-49a9-be89-fff0929838f1"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-ba3126d8-75a1-494d-896b-0f0fce3fdd12 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-c5f30546-4add-4c42-bf57-d963863f0436"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c5f30546-4add-4c42-bf57-d963863f0436"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c5f30546-4add-4c42-bf57-d963863f0436"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c5f30546-4add-4c42-bf57-d963863f0436"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c5f30546-4add-4c42-bf57-d963863f0436"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c5f30546-4add-4c42-bf57-d963863f0436"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c5f30546-4add-4c42-bf57-d963863f0436"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-9eb4bc5a-1ccf-4a4a-aaad-2aaf9c292fd9 {
  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-ccf5540f-c2a2-4053-ae55-8b7a3f769138"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ccf5540f-c2a2-4053-ae55-8b7a3f769138"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ccf5540f-c2a2-4053-ae55-8b7a3f769138"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ccf5540f-c2a2-4053-ae55-8b7a3f769138"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-7588211b-6c11-401e-bc8e-3eaffb840394"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7588211b-6c11-401e-bc8e-3eaffb840394"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7588211b-6c11-401e-bc8e-3eaffb840394"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7588211b-6c11-401e-bc8e-3eaffb840394"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7588211b-6c11-401e-bc8e-3eaffb840394"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7588211b-6c11-401e-bc8e-3eaffb840394"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7588211b-6c11-401e-bc8e-3eaffb840394"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-8563af64-cfd9-4182-ac1d-975821fe096f {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-209b560d-69aa-4aee-9651-25957314d146"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-209b560d-69aa-4aee-9651-25957314d146"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-209b560d-69aa-4aee-9651-25957314d146"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-209b560d-69aa-4aee-9651-25957314d146"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-209b560d-69aa-4aee-9651-25957314d146"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-209b560d-69aa-4aee-9651-25957314d146"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-209b560d-69aa-4aee-9651-25957314d146"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-c80bd1b8-5f5a-4530-9f7b-7f4947b9fcb8 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-1ba670c1-52d6-4761-8dd9-e66519745e80"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1ba670c1-52d6-4761-8dd9-e66519745e80"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1ba670c1-52d6-4761-8dd9-e66519745e80"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1ba670c1-52d6-4761-8dd9-e66519745e80"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-137a0390-c580-450e-8749-22ff67c043f6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-137a0390-c580-450e-8749-22ff67c043f6"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-137a0390-c580-450e-8749-22ff67c043f6"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-137a0390-c580-450e-8749-22ff67c043f6"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-137a0390-c580-450e-8749-22ff67c043f6"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-137a0390-c580-450e-8749-22ff67c043f6"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-137a0390-c580-450e-8749-22ff67c043f6"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-11ad1481-2cb8-458f-bd55-84c274319495 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-d76a60ad-fafb-4893-ada9-e994f27b7d5a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d76a60ad-fafb-4893-ada9-e994f27b7d5a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d76a60ad-fafb-4893-ada9-e994f27b7d5a"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d76a60ad-fafb-4893-ada9-e994f27b7d5a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d76a60ad-fafb-4893-ada9-e994f27b7d5a"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d76a60ad-fafb-4893-ada9-e994f27b7d5a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d76a60ad-fafb-4893-ada9-e994f27b7d5a"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-a87db742-05e2-4f64-b7f6-71ac4813d05a {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-773a3c11-76fd-421c-9543-bff1d9e06ab4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-773a3c11-76fd-421c-9543-bff1d9e06ab4"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-773a3c11-76fd-421c-9543-bff1d9e06ab4"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-773a3c11-76fd-421c-9543-bff1d9e06ab4"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-91720482-69fe-4e8c-b97e-d32c94514e41"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-91720482-69fe-4e8c-b97e-d32c94514e41"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-91720482-69fe-4e8c-b97e-d32c94514e41"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-91720482-69fe-4e8c-b97e-d32c94514e41"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-91720482-69fe-4e8c-b97e-d32c94514e41"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-91720482-69fe-4e8c-b97e-d32c94514e41"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-91720482-69fe-4e8c-b97e-d32c94514e41"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-85364e69-d31b-4214-8496-d99ca57d4e2e {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-57150c29-d118-4cd4-ba2f-6a157c6fe043"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-57150c29-d118-4cd4-ba2f-6a157c6fe043"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-57150c29-d118-4cd4-ba2f-6a157c6fe043"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-57150c29-d118-4cd4-ba2f-6a157c6fe043"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-57150c29-d118-4cd4-ba2f-6a157c6fe043"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-57150c29-d118-4cd4-ba2f-6a157c6fe043"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-57150c29-d118-4cd4-ba2f-6a157c6fe043"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-3da0c34f-1503-448d-aa64-0411f89cf72b {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-24a895e7-0772-4893-9145-e1be9eb414be"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-24a895e7-0772-4893-9145-e1be9eb414be"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-24a895e7-0772-4893-9145-e1be9eb414be"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-24a895e7-0772-4893-9145-e1be9eb414be"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-7ee84946-419b-4db4-a415-d0e083b3729d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7ee84946-419b-4db4-a415-d0e083b3729d"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-7ee84946-419b-4db4-a415-d0e083b3729d"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7ee84946-419b-4db4-a415-d0e083b3729d"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-7ee84946-419b-4db4-a415-d0e083b3729d"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7ee84946-419b-4db4-a415-d0e083b3729d"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-7ee84946-419b-4db4-a415-d0e083b3729d"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-ff0df931-df54-4161-8abe-bc03a2268ff9 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-808fd0d2-a665-47ce-8ae3-ceeea6b079ed"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-808fd0d2-a665-47ce-8ae3-ceeea6b079ed"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-808fd0d2-a665-47ce-8ae3-ceeea6b079ed"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-808fd0d2-a665-47ce-8ae3-ceeea6b079ed"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-808fd0d2-a665-47ce-8ae3-ceeea6b079ed"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-808fd0d2-a665-47ce-8ae3-ceeea6b079ed"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-808fd0d2-a665-47ce-8ae3-ceeea6b079ed"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-28f1febe-a9cb-47bf-9ebf-b5186661b7ac {
  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-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb {
  max-width: 1920px;
text-align: center;
}

#s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb {
  margin: 0 !important;
  overflow: visible;
}

#s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb img.shogun-image {
  /* Add background color handling */
  
}

#s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb .shogun-image-content {
  
    justify-content: center;
  
}

.s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb.shogun-image {
  box-sizing: border-box;
}



.s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb img.shogun-image {
  
}


@media (min-width: 1200px){#s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb {
  margin: 0 !important;
  overflow: visible;
}

#s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb img.shogun-image {
  /* Add background color handling */
  
}

#s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb .shogun-image-content {
  
    justify-content: center;
  
}

.s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb.shogun-image {
  box-sizing: border-box;
}



.s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb {
  margin: 0 !important;
  overflow: visible;
}

#s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb img.shogun-image {
  /* Add background color handling */
  
}

#s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb .shogun-image-content {
  
    justify-content: center;
  
}

.s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb.shogun-image {
  box-sizing: border-box;
}



.s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb {
  margin: 0 !important;
  overflow: visible;
}

#s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb img.shogun-image {
  /* Add background color handling */
  
}

#s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb .shogun-image-content {
  
    justify-content: center;
  
}

.s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb.shogun-image {
  box-sizing: border-box;
}



.s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb img.shogun-image {
  
}


}@media (max-width: 767px){#s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb {
  margin: 0 !important;
  overflow: visible;
}

#s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb img.shogun-image {
  /* Add background color handling */
  
}

#s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb .shogun-image-content {
  
    justify-content: center;
  
}

.s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb.shogun-image {
  box-sizing: border-box;
}



.s-80c7e1eb-8e9a-4425-ae1e-abe8d32ac8eb img.shogun-image {
  
}


}
#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-16c76828-1141-4731-b341-56e41c7b4711"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-16c76828-1141-4731-b341-56e41c7b4711"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-16c76828-1141-4731-b341-56e41c7b4711"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-16c76828-1141-4731-b341-56e41c7b4711"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-0c418648-5445-4199-a9e4-27cd937bbd72"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0c418648-5445-4199-a9e4-27cd937bbd72"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0c418648-5445-4199-a9e4-27cd937bbd72"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0c418648-5445-4199-a9e4-27cd937bbd72"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0c418648-5445-4199-a9e4-27cd937bbd72"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0c418648-5445-4199-a9e4-27cd937bbd72"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0c418648-5445-4199-a9e4-27cd937bbd72"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-49229b1f-7130-4785-8c60-7117d1a29d25 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-43e37158-6b07-47d2-80b7-6573e96ef2ab"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-43e37158-6b07-47d2-80b7-6573e96ef2ab"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-43e37158-6b07-47d2-80b7-6573e96ef2ab"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-43e37158-6b07-47d2-80b7-6573e96ef2ab"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-43e37158-6b07-47d2-80b7-6573e96ef2ab"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-43e37158-6b07-47d2-80b7-6573e96ef2ab"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-43e37158-6b07-47d2-80b7-6573e96ef2ab"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-93854c01-3858-490e-8ca1-c7d0e9deab83 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-1f4e9ea9-29f6-4445-bca6-2dbb6bd52562"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1f4e9ea9-29f6-4445-bca6-2dbb6bd52562"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1f4e9ea9-29f6-4445-bca6-2dbb6bd52562"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1f4e9ea9-29f6-4445-bca6-2dbb6bd52562"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-e663d88b-c52d-4c29-acc9-2ea3dfb14282"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e663d88b-c52d-4c29-acc9-2ea3dfb14282"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e663d88b-c52d-4c29-acc9-2ea3dfb14282"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e663d88b-c52d-4c29-acc9-2ea3dfb14282"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e663d88b-c52d-4c29-acc9-2ea3dfb14282"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e663d88b-c52d-4c29-acc9-2ea3dfb14282"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e663d88b-c52d-4c29-acc9-2ea3dfb14282"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-bf34bc29-b6e1-436d-8a90-78ea311dac51 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-00d8c2af-e14b-4dbb-83e2-098374e2beb8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-00d8c2af-e14b-4dbb-83e2-098374e2beb8"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-00d8c2af-e14b-4dbb-83e2-098374e2beb8"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-00d8c2af-e14b-4dbb-83e2-098374e2beb8"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-00d8c2af-e14b-4dbb-83e2-098374e2beb8"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-00d8c2af-e14b-4dbb-83e2-098374e2beb8"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-00d8c2af-e14b-4dbb-83e2-098374e2beb8"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-9d900ae9-b4bf-449b-9871-d52076075953 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-e466ffbe-dd17-4bf5-a04b-0ecf57ec89b8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e466ffbe-dd17-4bf5-a04b-0ecf57ec89b8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e466ffbe-dd17-4bf5-a04b-0ecf57ec89b8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e466ffbe-dd17-4bf5-a04b-0ecf57ec89b8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-51859acf-60ef-415a-86c0-87c2b3502f5a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-51859acf-60ef-415a-86c0-87c2b3502f5a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-51859acf-60ef-415a-86c0-87c2b3502f5a"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-51859acf-60ef-415a-86c0-87c2b3502f5a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-51859acf-60ef-415a-86c0-87c2b3502f5a"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-51859acf-60ef-415a-86c0-87c2b3502f5a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-51859acf-60ef-415a-86c0-87c2b3502f5a"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-4ccff506-2e4c-45fe-94f2-f0dc8ef7b194 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-01bc87a5-19dc-4e0f-a68b-e16c82cd0389"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-01bc87a5-19dc-4e0f-a68b-e16c82cd0389"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-01bc87a5-19dc-4e0f-a68b-e16c82cd0389"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-01bc87a5-19dc-4e0f-a68b-e16c82cd0389"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-01bc87a5-19dc-4e0f-a68b-e16c82cd0389"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-01bc87a5-19dc-4e0f-a68b-e16c82cd0389"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-01bc87a5-19dc-4e0f-a68b-e16c82cd0389"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-d89bdc21-1c9f-4d4d-a321-e5cd0b11a161 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-2fee1917-e279-4af1-9489-daf06388eee2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2fee1917-e279-4af1-9489-daf06388eee2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2fee1917-e279-4af1-9489-daf06388eee2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2fee1917-e279-4af1-9489-daf06388eee2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-c0c693e7-0325-4d22-be99-44dbda8d7117"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c0c693e7-0325-4d22-be99-44dbda8d7117"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c0c693e7-0325-4d22-be99-44dbda8d7117"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c0c693e7-0325-4d22-be99-44dbda8d7117"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c0c693e7-0325-4d22-be99-44dbda8d7117"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c0c693e7-0325-4d22-be99-44dbda8d7117"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c0c693e7-0325-4d22-be99-44dbda8d7117"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-60555ca1-b945-41e5-8f55-3d44e943bf24 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-d10ae1af-51b0-4c8a-9d2c-fb915eeeaf58"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d10ae1af-51b0-4c8a-9d2c-fb915eeeaf58"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d10ae1af-51b0-4c8a-9d2c-fb915eeeaf58"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d10ae1af-51b0-4c8a-9d2c-fb915eeeaf58"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d10ae1af-51b0-4c8a-9d2c-fb915eeeaf58"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d10ae1af-51b0-4c8a-9d2c-fb915eeeaf58"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d10ae1af-51b0-4c8a-9d2c-fb915eeeaf58"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-8dd5d74c-dfcb-4ae7-b0fe-d45f57df71b8 {
  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-66a74c69-b7bf-44a4-ba0e-ca45e90b30f9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-66a74c69-b7bf-44a4-ba0e-ca45e90b30f9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-66a74c69-b7bf-44a4-ba0e-ca45e90b30f9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-66a74c69-b7bf-44a4-ba0e-ca45e90b30f9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-3dce9338-609f-4f59-9066-a34eb661d12b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3dce9338-609f-4f59-9066-a34eb661d12b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3dce9338-609f-4f59-9066-a34eb661d12b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3dce9338-609f-4f59-9066-a34eb661d12b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3dce9338-609f-4f59-9066-a34eb661d12b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3dce9338-609f-4f59-9066-a34eb661d12b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3dce9338-609f-4f59-9066-a34eb661d12b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-cadcdc44-393a-4ac5-b44f-e0804f5adf97 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-e73895bd-4262-4898-b335-69b6365f1cd4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e73895bd-4262-4898-b335-69b6365f1cd4"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e73895bd-4262-4898-b335-69b6365f1cd4"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e73895bd-4262-4898-b335-69b6365f1cd4"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e73895bd-4262-4898-b335-69b6365f1cd4"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e73895bd-4262-4898-b335-69b6365f1cd4"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e73895bd-4262-4898-b335-69b6365f1cd4"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-c6ddf5b8-43d0-438c-a098-3e74edd1a8e7 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-5091aa15-2837-48ac-841e-5a9a5dfd885a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5091aa15-2837-48ac-841e-5a9a5dfd885a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5091aa15-2837-48ac-841e-5a9a5dfd885a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5091aa15-2837-48ac-841e-5a9a5dfd885a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-7178f6ae-e4c9-4aaf-ba37-a190e38a9a88"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7178f6ae-e4c9-4aaf-ba37-a190e38a9a88"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7178f6ae-e4c9-4aaf-ba37-a190e38a9a88"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7178f6ae-e4c9-4aaf-ba37-a190e38a9a88"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7178f6ae-e4c9-4aaf-ba37-a190e38a9a88"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7178f6ae-e4c9-4aaf-ba37-a190e38a9a88"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7178f6ae-e4c9-4aaf-ba37-a190e38a9a88"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-066f7a77-a10e-4647-bbb7-f6070568de7d {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-f804774e-e36c-4614-ac6a-7005acfb5d32"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f804774e-e36c-4614-ac6a-7005acfb5d32"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f804774e-e36c-4614-ac6a-7005acfb5d32"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f804774e-e36c-4614-ac6a-7005acfb5d32"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f804774e-e36c-4614-ac6a-7005acfb5d32"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f804774e-e36c-4614-ac6a-7005acfb5d32"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f804774e-e36c-4614-ac6a-7005acfb5d32"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-7e9ad0de-c083-4a53-b4ca-a58e31baee3d {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-4d9dbee6-446b-428d-afff-36b4e9f5ff5b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4d9dbee6-446b-428d-afff-36b4e9f5ff5b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4d9dbee6-446b-428d-afff-36b4e9f5ff5b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4d9dbee6-446b-428d-afff-36b4e9f5ff5b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-f35852c1-8bb9-4729-aabe-c03a04723c4c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f35852c1-8bb9-4729-aabe-c03a04723c4c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f35852c1-8bb9-4729-aabe-c03a04723c4c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f35852c1-8bb9-4729-aabe-c03a04723c4c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f35852c1-8bb9-4729-aabe-c03a04723c4c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f35852c1-8bb9-4729-aabe-c03a04723c4c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f35852c1-8bb9-4729-aabe-c03a04723c4c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-0c12667d-9763-4df3-a231-d1f330145a24 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-3b1902f7-e6e6-4fd8-8450-29002e3c24a4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3b1902f7-e6e6-4fd8-8450-29002e3c24a4"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3b1902f7-e6e6-4fd8-8450-29002e3c24a4"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3b1902f7-e6e6-4fd8-8450-29002e3c24a4"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3b1902f7-e6e6-4fd8-8450-29002e3c24a4"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3b1902f7-e6e6-4fd8-8450-29002e3c24a4"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3b1902f7-e6e6-4fd8-8450-29002e3c24a4"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-011892c5-8d22-4787-9a0f-ed9722a492c8 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-cff1e1de-62d7-45b9-8b37-b7e146b28e19"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cff1e1de-62d7-45b9-8b37-b7e146b28e19"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-cff1e1de-62d7-45b9-8b37-b7e146b28e19"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-cff1e1de-62d7-45b9-8b37-b7e146b28e19"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-b8b1cff8-84db-46f7-aef5-c2ac7971124a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b8b1cff8-84db-46f7-aef5-c2ac7971124a"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-b8b1cff8-84db-46f7-aef5-c2ac7971124a"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b8b1cff8-84db-46f7-aef5-c2ac7971124a"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-b8b1cff8-84db-46f7-aef5-c2ac7971124a"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b8b1cff8-84db-46f7-aef5-c2ac7971124a"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-b8b1cff8-84db-46f7-aef5-c2ac7971124a"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-b59f4dc2-806b-4793-8cab-5c0bb8b8ab70 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-3a9d3688-3d37-44df-baac-ba1fe7dce4f6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3a9d3688-3d37-44df-baac-ba1fe7dce4f6"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-3a9d3688-3d37-44df-baac-ba1fe7dce4f6"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3a9d3688-3d37-44df-baac-ba1fe7dce4f6"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-3a9d3688-3d37-44df-baac-ba1fe7dce4f6"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3a9d3688-3d37-44df-baac-ba1fe7dce4f6"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-3a9d3688-3d37-44df-baac-ba1fe7dce4f6"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-b2d0ed53-eb34-4848-ab50-3b9d25ecbe92 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-20e434c8-402c-4446-83f7-5e6a503f0cbc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-20e434c8-402c-4446-83f7-5e6a503f0cbc"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-20e434c8-402c-4446-83f7-5e6a503f0cbc"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-20e434c8-402c-4446-83f7-5e6a503f0cbc"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-20e434c8-402c-4446-83f7-5e6a503f0cbc"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-20e434c8-402c-4446-83f7-5e6a503f0cbc"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-20e434c8-402c-4446-83f7-5e6a503f0cbc"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

#s-098f04cf-899c-4ad1-b740-bf586a405639 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 1%;
padding-right: 1%;
}

#s-93ae3a76-2a75-45d3-96a1-bd9561f95e4b {
  margin-left: 4%;
margin-right: 4%;
padding-top: 20px;
padding-left: 1%;
padding-bottom: 20px;
padding-right: 1%;
}

#s-891f832e-8ece-491d-b7fd-208f75984e13 {
  max-width: 1920px;
aspect-ratio: 1920/1095;
text-align: center;
}

#s-891f832e-8ece-491d-b7fd-208f75984e13 {
  margin: 0 !important;
  overflow: visible;
}

#s-891f832e-8ece-491d-b7fd-208f75984e13-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-891f832e-8ece-491d-b7fd-208f75984e13 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-891f832e-8ece-491d-b7fd-208f75984e13 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-891f832e-8ece-491d-b7fd-208f75984e13 img.shogun-image {
  /* Add background color handling */
  
}

#s-891f832e-8ece-491d-b7fd-208f75984e13 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-891f832e-8ece-491d-b7fd-208f75984e13 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-891f832e-8ece-491d-b7fd-208f75984e13 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-891f832e-8ece-491d-b7fd-208f75984e13 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-891f832e-8ece-491d-b7fd-208f75984e13 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-891f832e-8ece-491d-b7fd-208f75984e13 .shogun-image-content {
  
    justify-content: center;
  
}

.s-891f832e-8ece-491d-b7fd-208f75984e13.shg-align-container {
  display: flex;
  justify-content: center
}

.s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image {
  box-sizing: border-box;
}



.s-891f832e-8ece-491d-b7fd-208f75984e13 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-891f832e-8ece-491d-b7fd-208f75984e13 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image-container {
      position: relative;
    }

    .s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-891f832e-8ece-491d-b7fd-208f75984e13 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

@media (min-width: 1200px){#s-891f832e-8ece-491d-b7fd-208f75984e13 {
  margin: 0 !important;
  overflow: visible;
}

#s-891f832e-8ece-491d-b7fd-208f75984e13-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-891f832e-8ece-491d-b7fd-208f75984e13 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-891f832e-8ece-491d-b7fd-208f75984e13 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-891f832e-8ece-491d-b7fd-208f75984e13 img.shogun-image {
  /* Add background color handling */
  
}

#s-891f832e-8ece-491d-b7fd-208f75984e13 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-891f832e-8ece-491d-b7fd-208f75984e13 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-891f832e-8ece-491d-b7fd-208f75984e13 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-891f832e-8ece-491d-b7fd-208f75984e13 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-891f832e-8ece-491d-b7fd-208f75984e13 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-891f832e-8ece-491d-b7fd-208f75984e13 .shogun-image-content {
  
    justify-content: center;
  
}

.s-891f832e-8ece-491d-b7fd-208f75984e13.shg-align-container {
  display: flex;
  justify-content: center
}

.s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image {
  box-sizing: border-box;
}



.s-891f832e-8ece-491d-b7fd-208f75984e13 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-891f832e-8ece-491d-b7fd-208f75984e13 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image-container {
      position: relative;
    }

    .s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-891f832e-8ece-491d-b7fd-208f75984e13 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-891f832e-8ece-491d-b7fd-208f75984e13 {
  margin: 0 !important;
  overflow: visible;
}

#s-891f832e-8ece-491d-b7fd-208f75984e13-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-891f832e-8ece-491d-b7fd-208f75984e13 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-891f832e-8ece-491d-b7fd-208f75984e13 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-891f832e-8ece-491d-b7fd-208f75984e13 img.shogun-image {
  /* Add background color handling */
  
}

#s-891f832e-8ece-491d-b7fd-208f75984e13 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-891f832e-8ece-491d-b7fd-208f75984e13 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-891f832e-8ece-491d-b7fd-208f75984e13 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-891f832e-8ece-491d-b7fd-208f75984e13 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-891f832e-8ece-491d-b7fd-208f75984e13 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-891f832e-8ece-491d-b7fd-208f75984e13 .shogun-image-content {
  
    justify-content: center;
  
}

.s-891f832e-8ece-491d-b7fd-208f75984e13.shg-align-container {
  display: flex;
  justify-content: center
}

.s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image {
  box-sizing: border-box;
}



.s-891f832e-8ece-491d-b7fd-208f75984e13 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-891f832e-8ece-491d-b7fd-208f75984e13 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image-container {
      position: relative;
    }

    .s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-891f832e-8ece-491d-b7fd-208f75984e13 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-891f832e-8ece-491d-b7fd-208f75984e13 {
  margin: 0 !important;
  overflow: visible;
}

#s-891f832e-8ece-491d-b7fd-208f75984e13-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-891f832e-8ece-491d-b7fd-208f75984e13 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-891f832e-8ece-491d-b7fd-208f75984e13 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-891f832e-8ece-491d-b7fd-208f75984e13 img.shogun-image {
  /* Add background color handling */
  
}

#s-891f832e-8ece-491d-b7fd-208f75984e13 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-891f832e-8ece-491d-b7fd-208f75984e13 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-891f832e-8ece-491d-b7fd-208f75984e13 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-891f832e-8ece-491d-b7fd-208f75984e13 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-891f832e-8ece-491d-b7fd-208f75984e13 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-891f832e-8ece-491d-b7fd-208f75984e13 .shogun-image-content {
  
    justify-content: center;
  
}

.s-891f832e-8ece-491d-b7fd-208f75984e13.shg-align-container {
  display: flex;
  justify-content: center
}

.s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image {
  box-sizing: border-box;
}



.s-891f832e-8ece-491d-b7fd-208f75984e13 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-891f832e-8ece-491d-b7fd-208f75984e13 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image-container {
      position: relative;
    }

    .s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-891f832e-8ece-491d-b7fd-208f75984e13 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (max-width: 767px){#s-891f832e-8ece-491d-b7fd-208f75984e13 {
  margin: 0 !important;
  overflow: visible;
}

#s-891f832e-8ece-491d-b7fd-208f75984e13-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-891f832e-8ece-491d-b7fd-208f75984e13 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-891f832e-8ece-491d-b7fd-208f75984e13 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-891f832e-8ece-491d-b7fd-208f75984e13 img.shogun-image {
  /* Add background color handling */
  
}

#s-891f832e-8ece-491d-b7fd-208f75984e13 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-891f832e-8ece-491d-b7fd-208f75984e13 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-891f832e-8ece-491d-b7fd-208f75984e13 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-891f832e-8ece-491d-b7fd-208f75984e13 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-891f832e-8ece-491d-b7fd-208f75984e13 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-891f832e-8ece-491d-b7fd-208f75984e13 .shogun-image-content {
  
    justify-content: center;
  
}

.s-891f832e-8ece-491d-b7fd-208f75984e13.shg-align-container {
  display: flex;
  justify-content: center
}

.s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image {
  box-sizing: border-box;
}



.s-891f832e-8ece-491d-b7fd-208f75984e13 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-891f832e-8ece-491d-b7fd-208f75984e13 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image-container {
      position: relative;
    }

    .s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-891f832e-8ece-491d-b7fd-208f75984e13.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-891f832e-8ece-491d-b7fd-208f75984e13 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}
@media (min-width: 0px) {
[id="s-f1b5c2d0-54e0-4d38-82dd-e400f400c038"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f1b5c2d0-54e0-4d38-82dd-e400f400c038"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f1b5c2d0-54e0-4d38-82dd-e400f400c038"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f1b5c2d0-54e0-4d38-82dd-e400f400c038"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-538e8c30-b7cb-4602-bae2-0eea2f9cd118"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-538e8c30-b7cb-4602-bae2-0eea2f9cd118"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-538e8c30-b7cb-4602-bae2-0eea2f9cd118"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-538e8c30-b7cb-4602-bae2-0eea2f9cd118"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-538e8c30-b7cb-4602-bae2-0eea2f9cd118"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-538e8c30-b7cb-4602-bae2-0eea2f9cd118"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-538e8c30-b7cb-4602-bae2-0eea2f9cd118"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-4c1a9e20-a691-4e6b-b174-211500411a64 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-3e26fa55-1bf4-4880-b5be-17d6dd02826f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3e26fa55-1bf4-4880-b5be-17d6dd02826f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3e26fa55-1bf4-4880-b5be-17d6dd02826f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3e26fa55-1bf4-4880-b5be-17d6dd02826f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3e26fa55-1bf4-4880-b5be-17d6dd02826f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3e26fa55-1bf4-4880-b5be-17d6dd02826f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3e26fa55-1bf4-4880-b5be-17d6dd02826f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-c2a8d91d-e9e6-4c7c-a94b-a294ea7c166e {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-b52dc8ac-16c2-48ff-9452-fae23ad13bed"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b52dc8ac-16c2-48ff-9452-fae23ad13bed"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b52dc8ac-16c2-48ff-9452-fae23ad13bed"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b52dc8ac-16c2-48ff-9452-fae23ad13bed"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-921b2b02-415d-4607-ad99-eb463b10ba8d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-921b2b02-415d-4607-ad99-eb463b10ba8d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-921b2b02-415d-4607-ad99-eb463b10ba8d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-921b2b02-415d-4607-ad99-eb463b10ba8d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-921b2b02-415d-4607-ad99-eb463b10ba8d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-921b2b02-415d-4607-ad99-eb463b10ba8d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-921b2b02-415d-4607-ad99-eb463b10ba8d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-08d565af-893b-497e-acee-de3249d93d1b {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-aafdae45-1b54-4ec2-9817-ba767bb40d68"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-aafdae45-1b54-4ec2-9817-ba767bb40d68"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-aafdae45-1b54-4ec2-9817-ba767bb40d68"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-aafdae45-1b54-4ec2-9817-ba767bb40d68"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-aafdae45-1b54-4ec2-9817-ba767bb40d68"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-aafdae45-1b54-4ec2-9817-ba767bb40d68"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-aafdae45-1b54-4ec2-9817-ba767bb40d68"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-095d0aed-8257-4803-9e81-a2ac81938431 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-c479de3a-a192-4dc8-93f6-30e38d615e15"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c479de3a-a192-4dc8-93f6-30e38d615e15"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c479de3a-a192-4dc8-93f6-30e38d615e15"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c479de3a-a192-4dc8-93f6-30e38d615e15"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-54cdd2d7-b11e-43b0-bb79-feb013772853"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-54cdd2d7-b11e-43b0-bb79-feb013772853"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-54cdd2d7-b11e-43b0-bb79-feb013772853"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-54cdd2d7-b11e-43b0-bb79-feb013772853"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-54cdd2d7-b11e-43b0-bb79-feb013772853"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-54cdd2d7-b11e-43b0-bb79-feb013772853"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-54cdd2d7-b11e-43b0-bb79-feb013772853"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-a4609e25-0c56-45ae-b5b4-717536cbaed0 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-fc5c5838-c0c7-4632-8176-74b2415710b4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fc5c5838-c0c7-4632-8176-74b2415710b4"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-fc5c5838-c0c7-4632-8176-74b2415710b4"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-fc5c5838-c0c7-4632-8176-74b2415710b4"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-fc5c5838-c0c7-4632-8176-74b2415710b4"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-fc5c5838-c0c7-4632-8176-74b2415710b4"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-fc5c5838-c0c7-4632-8176-74b2415710b4"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-1b68eabc-62c3-499c-b979-61fb154335da {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-82630c1f-0233-45a0-abd2-1deb293eabc7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-82630c1f-0233-45a0-abd2-1deb293eabc7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-82630c1f-0233-45a0-abd2-1deb293eabc7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-82630c1f-0233-45a0-abd2-1deb293eabc7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-ebac85f2-ced0-48df-b074-9cad8d781924"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ebac85f2-ced0-48df-b074-9cad8d781924"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ebac85f2-ced0-48df-b074-9cad8d781924"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ebac85f2-ced0-48df-b074-9cad8d781924"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ebac85f2-ced0-48df-b074-9cad8d781924"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ebac85f2-ced0-48df-b074-9cad8d781924"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ebac85f2-ced0-48df-b074-9cad8d781924"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-145f242c-584e-4658-9df9-50b7fce68ca4 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-1bf125bc-4e0a-494d-9558-7152d8477fee"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1bf125bc-4e0a-494d-9558-7152d8477fee"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-1bf125bc-4e0a-494d-9558-7152d8477fee"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1bf125bc-4e0a-494d-9558-7152d8477fee"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-1bf125bc-4e0a-494d-9558-7152d8477fee"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1bf125bc-4e0a-494d-9558-7152d8477fee"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-1bf125bc-4e0a-494d-9558-7152d8477fee"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-ec90e5cc-f4c1-496b-b0a2-08606c7aace4 {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-e17c5fd9-2f8f-409e-8bba-8c03dd337603 {
  margin-top: -10px;
margin-bottom: -10px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-e17c5fd9-2f8f-409e-8bba-8c03dd337603 hr {
  border-top: 1px solid #ddd;
}

@media (min-width: 0px) {
[id="s-953c12ea-965d-4e92-9766-0266d4ab0f55"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-953c12ea-965d-4e92-9766-0266d4ab0f55"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-953c12ea-965d-4e92-9766-0266d4ab0f55"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-953c12ea-965d-4e92-9766-0266d4ab0f55"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-d92e09ee-1239-457a-985f-262c0affce17"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d92e09ee-1239-457a-985f-262c0affce17"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d92e09ee-1239-457a-985f-262c0affce17"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d92e09ee-1239-457a-985f-262c0affce17"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d92e09ee-1239-457a-985f-262c0affce17"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d92e09ee-1239-457a-985f-262c0affce17"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d92e09ee-1239-457a-985f-262c0affce17"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-e15195d2-d505-419b-b72b-7fae70cc587a {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-18ce6643-650b-4840-9768-7e023851294e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-18ce6643-650b-4840-9768-7e023851294e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-18ce6643-650b-4840-9768-7e023851294e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-18ce6643-650b-4840-9768-7e023851294e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-18ce6643-650b-4840-9768-7e023851294e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-18ce6643-650b-4840-9768-7e023851294e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-18ce6643-650b-4840-9768-7e023851294e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-2996a86e-6caa-443e-81ef-7c3104c7a7ec {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-ff506231-a632-45ee-a0bf-5da9978b6346"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ff506231-a632-45ee-a0bf-5da9978b6346"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ff506231-a632-45ee-a0bf-5da9978b6346"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ff506231-a632-45ee-a0bf-5da9978b6346"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-f93689d3-1f50-4ca1-859b-616f35e4e387"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f93689d3-1f50-4ca1-859b-616f35e4e387"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f93689d3-1f50-4ca1-859b-616f35e4e387"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f93689d3-1f50-4ca1-859b-616f35e4e387"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f93689d3-1f50-4ca1-859b-616f35e4e387"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f93689d3-1f50-4ca1-859b-616f35e4e387"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f93689d3-1f50-4ca1-859b-616f35e4e387"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-8b1f5990-d75a-432a-9dd4-05f43158de1e {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-55125c6d-1218-4bb8-b7ba-838d39a37eac"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-55125c6d-1218-4bb8-b7ba-838d39a37eac"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-55125c6d-1218-4bb8-b7ba-838d39a37eac"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-55125c6d-1218-4bb8-b7ba-838d39a37eac"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-55125c6d-1218-4bb8-b7ba-838d39a37eac"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-55125c6d-1218-4bb8-b7ba-838d39a37eac"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-55125c6d-1218-4bb8-b7ba-838d39a37eac"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-accc07b8-fa32-4708-b208-a6170f57abf5 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-adbb40aa-886e-404b-9c4c-0cf726da0785"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-adbb40aa-886e-404b-9c4c-0cf726da0785"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-adbb40aa-886e-404b-9c4c-0cf726da0785"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-adbb40aa-886e-404b-9c4c-0cf726da0785"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-d351a183-5312-4c22-8141-355b86a717c6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d351a183-5312-4c22-8141-355b86a717c6"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d351a183-5312-4c22-8141-355b86a717c6"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d351a183-5312-4c22-8141-355b86a717c6"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d351a183-5312-4c22-8141-355b86a717c6"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d351a183-5312-4c22-8141-355b86a717c6"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d351a183-5312-4c22-8141-355b86a717c6"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-f79a3a94-1acc-4d94-b20d-db728425b9d2 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-90da9bc7-713d-434f-9f69-e3c2dcb87546"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-90da9bc7-713d-434f-9f69-e3c2dcb87546"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-90da9bc7-713d-434f-9f69-e3c2dcb87546"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-90da9bc7-713d-434f-9f69-e3c2dcb87546"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-90da9bc7-713d-434f-9f69-e3c2dcb87546"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-90da9bc7-713d-434f-9f69-e3c2dcb87546"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-90da9bc7-713d-434f-9f69-e3c2dcb87546"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-4d775579-9bdc-4cf3-a870-e21127efce69 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-e0b355b8-aa5f-4cc3-8a37-508984977eec"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e0b355b8-aa5f-4cc3-8a37-508984977eec"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-e0b355b8-aa5f-4cc3-8a37-508984977eec"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e0b355b8-aa5f-4cc3-8a37-508984977eec"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-e0b355b8-aa5f-4cc3-8a37-508984977eec"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e0b355b8-aa5f-4cc3-8a37-508984977eec"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-e0b355b8-aa5f-4cc3-8a37-508984977eec"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

#s-86f9ca5d-05c0-42be-b740-051626612638 {
  max-width: 1920px;
aspect-ratio: 1920/1095;
text-align: center;
}

#s-86f9ca5d-05c0-42be-b740-051626612638 {
  margin: 0 !important;
  overflow: visible;
}

#s-86f9ca5d-05c0-42be-b740-051626612638-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-86f9ca5d-05c0-42be-b740-051626612638 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-86f9ca5d-05c0-42be-b740-051626612638 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-86f9ca5d-05c0-42be-b740-051626612638 img.shogun-image {
  /* Add background color handling */
  
}

#s-86f9ca5d-05c0-42be-b740-051626612638 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-86f9ca5d-05c0-42be-b740-051626612638 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-86f9ca5d-05c0-42be-b740-051626612638 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-86f9ca5d-05c0-42be-b740-051626612638 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-86f9ca5d-05c0-42be-b740-051626612638 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-86f9ca5d-05c0-42be-b740-051626612638 .shogun-image-content {
  
    justify-content: center;
  
}

.s-86f9ca5d-05c0-42be-b740-051626612638.shg-align-container {
  display: flex;
  justify-content: center
}

.s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image {
  box-sizing: border-box;
}



.s-86f9ca5d-05c0-42be-b740-051626612638 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-86f9ca5d-05c0-42be-b740-051626612638 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image-container {
      position: relative;
    }

    .s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-86f9ca5d-05c0-42be-b740-051626612638 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

@media (min-width: 1200px){#s-86f9ca5d-05c0-42be-b740-051626612638 {
  margin: 0 !important;
  overflow: visible;
}

#s-86f9ca5d-05c0-42be-b740-051626612638-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-86f9ca5d-05c0-42be-b740-051626612638 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-86f9ca5d-05c0-42be-b740-051626612638 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-86f9ca5d-05c0-42be-b740-051626612638 img.shogun-image {
  /* Add background color handling */
  
}

#s-86f9ca5d-05c0-42be-b740-051626612638 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-86f9ca5d-05c0-42be-b740-051626612638 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-86f9ca5d-05c0-42be-b740-051626612638 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-86f9ca5d-05c0-42be-b740-051626612638 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-86f9ca5d-05c0-42be-b740-051626612638 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-86f9ca5d-05c0-42be-b740-051626612638 .shogun-image-content {
  
    justify-content: center;
  
}

.s-86f9ca5d-05c0-42be-b740-051626612638.shg-align-container {
  display: flex;
  justify-content: center
}

.s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image {
  box-sizing: border-box;
}



.s-86f9ca5d-05c0-42be-b740-051626612638 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-86f9ca5d-05c0-42be-b740-051626612638 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image-container {
      position: relative;
    }

    .s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-86f9ca5d-05c0-42be-b740-051626612638 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-86f9ca5d-05c0-42be-b740-051626612638 {
  margin: 0 !important;
  overflow: visible;
}

#s-86f9ca5d-05c0-42be-b740-051626612638-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-86f9ca5d-05c0-42be-b740-051626612638 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-86f9ca5d-05c0-42be-b740-051626612638 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-86f9ca5d-05c0-42be-b740-051626612638 img.shogun-image {
  /* Add background color handling */
  
}

#s-86f9ca5d-05c0-42be-b740-051626612638 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-86f9ca5d-05c0-42be-b740-051626612638 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-86f9ca5d-05c0-42be-b740-051626612638 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-86f9ca5d-05c0-42be-b740-051626612638 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-86f9ca5d-05c0-42be-b740-051626612638 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-86f9ca5d-05c0-42be-b740-051626612638 .shogun-image-content {
  
    justify-content: center;
  
}

.s-86f9ca5d-05c0-42be-b740-051626612638.shg-align-container {
  display: flex;
  justify-content: center
}

.s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image {
  box-sizing: border-box;
}



.s-86f9ca5d-05c0-42be-b740-051626612638 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-86f9ca5d-05c0-42be-b740-051626612638 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image-container {
      position: relative;
    }

    .s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-86f9ca5d-05c0-42be-b740-051626612638 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-86f9ca5d-05c0-42be-b740-051626612638 {
  margin: 0 !important;
  overflow: visible;
}

#s-86f9ca5d-05c0-42be-b740-051626612638-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-86f9ca5d-05c0-42be-b740-051626612638 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-86f9ca5d-05c0-42be-b740-051626612638 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-86f9ca5d-05c0-42be-b740-051626612638 img.shogun-image {
  /* Add background color handling */
  
}

#s-86f9ca5d-05c0-42be-b740-051626612638 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-86f9ca5d-05c0-42be-b740-051626612638 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-86f9ca5d-05c0-42be-b740-051626612638 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-86f9ca5d-05c0-42be-b740-051626612638 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-86f9ca5d-05c0-42be-b740-051626612638 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-86f9ca5d-05c0-42be-b740-051626612638 .shogun-image-content {
  
    justify-content: center;
  
}

.s-86f9ca5d-05c0-42be-b740-051626612638.shg-align-container {
  display: flex;
  justify-content: center
}

.s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image {
  box-sizing: border-box;
}



.s-86f9ca5d-05c0-42be-b740-051626612638 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-86f9ca5d-05c0-42be-b740-051626612638 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image-container {
      position: relative;
    }

    .s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-86f9ca5d-05c0-42be-b740-051626612638 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (max-width: 767px){#s-86f9ca5d-05c0-42be-b740-051626612638 {
  margin: 0 !important;
  overflow: visible;
}

#s-86f9ca5d-05c0-42be-b740-051626612638-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-86f9ca5d-05c0-42be-b740-051626612638 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-86f9ca5d-05c0-42be-b740-051626612638 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-86f9ca5d-05c0-42be-b740-051626612638 img.shogun-image {
  /* Add background color handling */
  
}

#s-86f9ca5d-05c0-42be-b740-051626612638 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-86f9ca5d-05c0-42be-b740-051626612638 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-86f9ca5d-05c0-42be-b740-051626612638 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-86f9ca5d-05c0-42be-b740-051626612638 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-86f9ca5d-05c0-42be-b740-051626612638 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-86f9ca5d-05c0-42be-b740-051626612638 .shogun-image-content {
  
    justify-content: center;
  
}

.s-86f9ca5d-05c0-42be-b740-051626612638.shg-align-container {
  display: flex;
  justify-content: center
}

.s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image {
  box-sizing: border-box;
}



.s-86f9ca5d-05c0-42be-b740-051626612638 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-86f9ca5d-05c0-42be-b740-051626612638 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image-container {
      position: relative;
    }

    .s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-86f9ca5d-05c0-42be-b740-051626612638.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-86f9ca5d-05c0-42be-b740-051626612638 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}
#s-46f462c3-a0cb-430c-9b51-afa88cae3496 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 1%;
padding-right: 1%;
}

#s-8e9e3a0f-3dc5-4c76-b654-29e0dffd23f0 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 20px;
padding-left: 1%;
padding-bottom: 20px;
padding-right: 1%;
}

@media (min-width: 0px) {
[id="s-4601a2ed-f8eb-4005-8106-1b2a1d60abbf"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4601a2ed-f8eb-4005-8106-1b2a1d60abbf"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4601a2ed-f8eb-4005-8106-1b2a1d60abbf"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4601a2ed-f8eb-4005-8106-1b2a1d60abbf"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-2f5ed6f5-0903-41c2-b2e4-cc8a521113c1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2f5ed6f5-0903-41c2-b2e4-cc8a521113c1"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2f5ed6f5-0903-41c2-b2e4-cc8a521113c1"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2f5ed6f5-0903-41c2-b2e4-cc8a521113c1"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2f5ed6f5-0903-41c2-b2e4-cc8a521113c1"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2f5ed6f5-0903-41c2-b2e4-cc8a521113c1"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2f5ed6f5-0903-41c2-b2e4-cc8a521113c1"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-9e5892d9-2c86-4858-8249-ba9036318b72 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-c86e65ed-5c42-44c5-b3d2-f8afbb9f28ae"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c86e65ed-5c42-44c5-b3d2-f8afbb9f28ae"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c86e65ed-5c42-44c5-b3d2-f8afbb9f28ae"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c86e65ed-5c42-44c5-b3d2-f8afbb9f28ae"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c86e65ed-5c42-44c5-b3d2-f8afbb9f28ae"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c86e65ed-5c42-44c5-b3d2-f8afbb9f28ae"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c86e65ed-5c42-44c5-b3d2-f8afbb9f28ae"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-d2ac8241-f046-453e-9179-9bd29b8af8e5 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-8c420ec6-6953-472e-800e-eef434aa5c19"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8c420ec6-6953-472e-800e-eef434aa5c19"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8c420ec6-6953-472e-800e-eef434aa5c19"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8c420ec6-6953-472e-800e-eef434aa5c19"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-9fb8b352-709e-4e0d-9691-e98fc38a19dd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9fb8b352-709e-4e0d-9691-e98fc38a19dd"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-9fb8b352-709e-4e0d-9691-e98fc38a19dd"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9fb8b352-709e-4e0d-9691-e98fc38a19dd"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-9fb8b352-709e-4e0d-9691-e98fc38a19dd"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9fb8b352-709e-4e0d-9691-e98fc38a19dd"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-9fb8b352-709e-4e0d-9691-e98fc38a19dd"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-875a1f53-da3a-41cf-8547-da976ccaf04b {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-c9d3f7d8-10ac-4124-b3cc-189c71b63d61"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c9d3f7d8-10ac-4124-b3cc-189c71b63d61"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c9d3f7d8-10ac-4124-b3cc-189c71b63d61"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c9d3f7d8-10ac-4124-b3cc-189c71b63d61"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c9d3f7d8-10ac-4124-b3cc-189c71b63d61"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c9d3f7d8-10ac-4124-b3cc-189c71b63d61"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c9d3f7d8-10ac-4124-b3cc-189c71b63d61"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-663fa74a-a85e-4bc5-8aba-beffa6c80092 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-aac8a32c-9c86-480a-82d8-776700596fbb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-aac8a32c-9c86-480a-82d8-776700596fbb"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-aac8a32c-9c86-480a-82d8-776700596fbb"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-aac8a32c-9c86-480a-82d8-776700596fbb"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-f1ab99af-5687-44c2-ae9b-b24b15babafe"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f1ab99af-5687-44c2-ae9b-b24b15babafe"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f1ab99af-5687-44c2-ae9b-b24b15babafe"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f1ab99af-5687-44c2-ae9b-b24b15babafe"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f1ab99af-5687-44c2-ae9b-b24b15babafe"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f1ab99af-5687-44c2-ae9b-b24b15babafe"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f1ab99af-5687-44c2-ae9b-b24b15babafe"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-e2bbe5de-4d2d-45f4-a3d2-77b6902f75e3 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-002f4228-6d00-438f-ba9b-8b9af1db6777"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-002f4228-6d00-438f-ba9b-8b9af1db6777"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-002f4228-6d00-438f-ba9b-8b9af1db6777"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-002f4228-6d00-438f-ba9b-8b9af1db6777"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-002f4228-6d00-438f-ba9b-8b9af1db6777"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-002f4228-6d00-438f-ba9b-8b9af1db6777"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-002f4228-6d00-438f-ba9b-8b9af1db6777"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-598ec938-2bc7-4286-a090-bc4c12a84c7c {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-0edbec68-2dc6-4784-ad37-356c9bee234f {
  margin-top: -10px;
margin-bottom: -10px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-0edbec68-2dc6-4784-ad37-356c9bee234f hr {
  border-top: 1px solid #ddd;
}

@media (min-width: 0px) {
[id="s-fdedde7f-0cb0-4987-9101-6caf8673f844"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fdedde7f-0cb0-4987-9101-6caf8673f844"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-fdedde7f-0cb0-4987-9101-6caf8673f844"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-fdedde7f-0cb0-4987-9101-6caf8673f844"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-a7eb276a-b644-4502-aff7-92a23fee1180"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a7eb276a-b644-4502-aff7-92a23fee1180"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a7eb276a-b644-4502-aff7-92a23fee1180"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a7eb276a-b644-4502-aff7-92a23fee1180"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a7eb276a-b644-4502-aff7-92a23fee1180"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a7eb276a-b644-4502-aff7-92a23fee1180"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a7eb276a-b644-4502-aff7-92a23fee1180"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-43f5ebf5-da6b-4ab5-a119-85037d92c053 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-2f9731b0-caed-4bee-ba84-921101b368fe"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2f9731b0-caed-4bee-ba84-921101b368fe"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2f9731b0-caed-4bee-ba84-921101b368fe"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2f9731b0-caed-4bee-ba84-921101b368fe"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2f9731b0-caed-4bee-ba84-921101b368fe"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2f9731b0-caed-4bee-ba84-921101b368fe"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2f9731b0-caed-4bee-ba84-921101b368fe"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-7b34cecc-b316-4c5e-8f68-dc0543fffb85 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-83856606-89bd-4a5c-9674-37150285da92"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-83856606-89bd-4a5c-9674-37150285da92"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-83856606-89bd-4a5c-9674-37150285da92"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-83856606-89bd-4a5c-9674-37150285da92"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-d82c66fc-92b5-458a-b7b3-6585d8d5b600"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d82c66fc-92b5-458a-b7b3-6585d8d5b600"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d82c66fc-92b5-458a-b7b3-6585d8d5b600"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d82c66fc-92b5-458a-b7b3-6585d8d5b600"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d82c66fc-92b5-458a-b7b3-6585d8d5b600"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d82c66fc-92b5-458a-b7b3-6585d8d5b600"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d82c66fc-92b5-458a-b7b3-6585d8d5b600"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-fefa045c-1f5c-4ef2-aee5-41cf4010ac48 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-60b4045e-12b8-4656-8873-8f8056229e19"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-60b4045e-12b8-4656-8873-8f8056229e19"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-60b4045e-12b8-4656-8873-8f8056229e19"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-60b4045e-12b8-4656-8873-8f8056229e19"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-60b4045e-12b8-4656-8873-8f8056229e19"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-60b4045e-12b8-4656-8873-8f8056229e19"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-60b4045e-12b8-4656-8873-8f8056229e19"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-43f59456-54af-42fa-8894-58830832c2e9 {
  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-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
}

#s-25a13f82-cef6-488b-a792-0f73c901d434 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 20px;
padding-left: 1%;
padding-bottom: 20px;
padding-right: 1%;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  max-width: 1920px;
aspect-ratio: 1920/1095;
text-align: center;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  margin: 0 !important;
  overflow: visible;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  /* Add background color handling */
  
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image {
  box-sizing: border-box;
}



.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
      position: relative;
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

@media (min-width: 1200px){#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  margin: 0 !important;
  overflow: visible;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  /* Add background color handling */
  
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image {
  box-sizing: border-box;
}



.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
      position: relative;
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  margin: 0 !important;
  overflow: visible;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  /* Add background color handling */
  
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image {
  box-sizing: border-box;
}



.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
      position: relative;
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  margin: 0 !important;
  overflow: visible;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  /* Add background color handling */
  
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image {
  box-sizing: border-box;
}



.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
      position: relative;
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (max-width: 767px){#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  margin: 0 !important;
  overflow: visible;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  /* Add background color handling */
  
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image {
  box-sizing: border-box;
}



.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
      position: relative;
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}
@media (min-width: 0px) {
[id="s-7bf0ee51-701e-4828-9230-804ebe2f6611"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7bf0ee51-701e-4828-9230-804ebe2f6611"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7bf0ee51-701e-4828-9230-804ebe2f6611"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7bf0ee51-701e-4828-9230-804ebe2f6611"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-aa321261-eb13-4521-8302-dffe1143b333"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-aa321261-eb13-4521-8302-dffe1143b333"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-aa321261-eb13-4521-8302-dffe1143b333"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-aa321261-eb13-4521-8302-dffe1143b333"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-aa321261-eb13-4521-8302-dffe1143b333"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-aa321261-eb13-4521-8302-dffe1143b333"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-aa321261-eb13-4521-8302-dffe1143b333"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-25a5732b-7d55-4e31-99c9-f8cac206932c {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-a1045752-867a-49f1-b6a4-0779c1b7e361"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a1045752-867a-49f1-b6a4-0779c1b7e361"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a1045752-867a-49f1-b6a4-0779c1b7e361"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a1045752-867a-49f1-b6a4-0779c1b7e361"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a1045752-867a-49f1-b6a4-0779c1b7e361"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a1045752-867a-49f1-b6a4-0779c1b7e361"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a1045752-867a-49f1-b6a4-0779c1b7e361"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-14c5740c-1b22-497c-84ec-935ac8b78dc4 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-c17560c6-b519-489a-9596-3a157ccfe9d8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c17560c6-b519-489a-9596-3a157ccfe9d8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c17560c6-b519-489a-9596-3a157ccfe9d8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c17560c6-b519-489a-9596-3a157ccfe9d8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-b41bd178-b296-43f7-b3b0-c40f67fb2ce9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b41bd178-b296-43f7-b3b0-c40f67fb2ce9"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b41bd178-b296-43f7-b3b0-c40f67fb2ce9"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b41bd178-b296-43f7-b3b0-c40f67fb2ce9"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b41bd178-b296-43f7-b3b0-c40f67fb2ce9"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b41bd178-b296-43f7-b3b0-c40f67fb2ce9"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b41bd178-b296-43f7-b3b0-c40f67fb2ce9"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-fc3ee0db-efd3-4c6a-9523-ad2ed1dafae2 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-e0a641f0-2f16-4b26-8f56-a0d9c041b1dc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e0a641f0-2f16-4b26-8f56-a0d9c041b1dc"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e0a641f0-2f16-4b26-8f56-a0d9c041b1dc"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e0a641f0-2f16-4b26-8f56-a0d9c041b1dc"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e0a641f0-2f16-4b26-8f56-a0d9c041b1dc"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e0a641f0-2f16-4b26-8f56-a0d9c041b1dc"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e0a641f0-2f16-4b26-8f56-a0d9c041b1dc"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-3c0001ee-2d0b-41cf-88ab-35b767b1613d {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-4709521e-9c6a-47c7-b0db-cd4deadea7ef"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4709521e-9c6a-47c7-b0db-cd4deadea7ef"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4709521e-9c6a-47c7-b0db-cd4deadea7ef"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4709521e-9c6a-47c7-b0db-cd4deadea7ef"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-542caff5-1521-4ecb-812b-6e7b87de564b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-542caff5-1521-4ecb-812b-6e7b87de564b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-542caff5-1521-4ecb-812b-6e7b87de564b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-542caff5-1521-4ecb-812b-6e7b87de564b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-542caff5-1521-4ecb-812b-6e7b87de564b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-542caff5-1521-4ecb-812b-6e7b87de564b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-542caff5-1521-4ecb-812b-6e7b87de564b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-47a1f852-e28d-4ef2-8177-fd13ac0e332c {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-d1a683c8-0c6a-4cd1-981f-b70a77f99739"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d1a683c8-0c6a-4cd1-981f-b70a77f99739"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d1a683c8-0c6a-4cd1-981f-b70a77f99739"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d1a683c8-0c6a-4cd1-981f-b70a77f99739"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d1a683c8-0c6a-4cd1-981f-b70a77f99739"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d1a683c8-0c6a-4cd1-981f-b70a77f99739"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d1a683c8-0c6a-4cd1-981f-b70a77f99739"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-bf739faa-5d2f-48ce-96ea-d63ec7a659fb {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-01bea0b8-03a3-4f28-98f7-c2b8b4aa2726"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-01bea0b8-03a3-4f28-98f7-c2b8b4aa2726"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-01bea0b8-03a3-4f28-98f7-c2b8b4aa2726"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-01bea0b8-03a3-4f28-98f7-c2b8b4aa2726"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-f5ff82c1-3e8c-4d86-aec5-6c7b321f1d93"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f5ff82c1-3e8c-4d86-aec5-6c7b321f1d93"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f5ff82c1-3e8c-4d86-aec5-6c7b321f1d93"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f5ff82c1-3e8c-4d86-aec5-6c7b321f1d93"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f5ff82c1-3e8c-4d86-aec5-6c7b321f1d93"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f5ff82c1-3e8c-4d86-aec5-6c7b321f1d93"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f5ff82c1-3e8c-4d86-aec5-6c7b321f1d93"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-b1c7391d-01a5-4113-a864-e49b43a1acee {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-b89feb99-e917-44e5-9a6d-f108e9f0be38"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b89feb99-e917-44e5-9a6d-f108e9f0be38"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b89feb99-e917-44e5-9a6d-f108e9f0be38"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b89feb99-e917-44e5-9a6d-f108e9f0be38"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b89feb99-e917-44e5-9a6d-f108e9f0be38"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b89feb99-e917-44e5-9a6d-f108e9f0be38"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b89feb99-e917-44e5-9a6d-f108e9f0be38"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-abcc57f8-3672-42da-8a34-af50ff0c2b94 {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-b2199261-e3a9-4cae-b08b-aef858f0de80 {
  margin-top: -8px;
margin-bottom: -8px;
min-height: 50px;
}








#s-b2199261-e3a9-4cae-b08b-aef858f0de80 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b2199261-e3a9-4cae-b08b-aef858f0de80.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9b175bec-4979-4332-9171-c0b625ef232d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9b175bec-4979-4332-9171-c0b625ef232d .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-56bea8e0-bfde-405d-af15-638e3b037467 {
  margin-top: -8px;
margin-bottom: -8px;
min-height: 50px;
}








#s-56bea8e0-bfde-405d-af15-638e3b037467 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-56bea8e0-bfde-405d-af15-638e3b037467.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-1249c3d5-1efe-46b6-8785-f9c29b5208f3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1249c3d5-1efe-46b6-8785-f9c29b5208f3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1249c3d5-1efe-46b6-8785-f9c29b5208f3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1249c3d5-1efe-46b6-8785-f9c29b5208f3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-729d6810-6f77-498f-90b3-cb378d15aca8 {
  max-width: 610px;
aspect-ratio: 610/208;
text-align: center;
}
@media (min-width: 1200px){#s-729d6810-6f77-498f-90b3-cb378d15aca8 {
  max-width: 200px;
}
}
#s-729d6810-6f77-498f-90b3-cb378d15aca8 {
  margin: 0 !important;
  overflow: visible;
}

#s-729d6810-6f77-498f-90b3-cb378d15aca8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-729d6810-6f77-498f-90b3-cb378d15aca8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-729d6810-6f77-498f-90b3-cb378d15aca8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-729d6810-6f77-498f-90b3-cb378d15aca8 img.shogun-image {
  /* Add background color handling */
  
}

#s-729d6810-6f77-498f-90b3-cb378d15aca8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-729d6810-6f77-498f-90b3-cb378d15aca8 .shg-image-content-wrapper {
      aspect-ratio: 610/208;
      min-width: 100%;
      height: auto;
    }

    #s-729d6810-6f77-498f-90b3-cb378d15aca8 .shogun-image-link {
      aspect-ratio: 610/208;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-729d6810-6f77-498f-90b3-cb378d15aca8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-729d6810-6f77-498f-90b3-cb378d15aca8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 610px;
  }



  img.s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image {
    
    
    
    max-height: 610px;
  }


.s-729d6810-6f77-498f-90b3-cb378d15aca8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-729d6810-6f77-498f-90b3-cb378d15aca8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image {
  box-sizing: border-box;
}



.s-729d6810-6f77-498f-90b3-cb378d15aca8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-729d6810-6f77-498f-90b3-cb378d15aca8 {
      --shg-aspect-ratio: calc(610/208); 
    }

    .s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image-container {
      position: relative;
    }

    .s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-729d6810-6f77-498f-90b3-cb378d15aca8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 610px;
    }
  }

@media (min-width: 1200px){#s-729d6810-6f77-498f-90b3-cb378d15aca8 {
  margin: 0 !important;
  overflow: visible;
}

#s-729d6810-6f77-498f-90b3-cb378d15aca8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-729d6810-6f77-498f-90b3-cb378d15aca8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-729d6810-6f77-498f-90b3-cb378d15aca8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-729d6810-6f77-498f-90b3-cb378d15aca8 img.shogun-image {
  /* Add background color handling */
  
}

#s-729d6810-6f77-498f-90b3-cb378d15aca8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-729d6810-6f77-498f-90b3-cb378d15aca8 .shg-image-content-wrapper {
      aspect-ratio: 610/208;
      min-width: 100%;
      height: auto;
    }

    #s-729d6810-6f77-498f-90b3-cb378d15aca8 .shogun-image-link {
      aspect-ratio: 610/208;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-729d6810-6f77-498f-90b3-cb378d15aca8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-729d6810-6f77-498f-90b3-cb378d15aca8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 610px;
  }



  img.s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image {
    
    
    
    max-height: 610px;
  }


.s-729d6810-6f77-498f-90b3-cb378d15aca8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-729d6810-6f77-498f-90b3-cb378d15aca8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image {
  box-sizing: border-box;
}



.s-729d6810-6f77-498f-90b3-cb378d15aca8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-729d6810-6f77-498f-90b3-cb378d15aca8 {
      --shg-aspect-ratio: calc(610/208); 
    }

    .s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image-container {
      position: relative;
    }

    .s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-729d6810-6f77-498f-90b3-cb378d15aca8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 610px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-729d6810-6f77-498f-90b3-cb378d15aca8 {
  margin: 0 !important;
  overflow: visible;
}

#s-729d6810-6f77-498f-90b3-cb378d15aca8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-729d6810-6f77-498f-90b3-cb378d15aca8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-729d6810-6f77-498f-90b3-cb378d15aca8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-729d6810-6f77-498f-90b3-cb378d15aca8 img.shogun-image {
  /* Add background color handling */
  
}

#s-729d6810-6f77-498f-90b3-cb378d15aca8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-729d6810-6f77-498f-90b3-cb378d15aca8 .shg-image-content-wrapper {
      aspect-ratio: 610/208;
      min-width: 100%;
      height: auto;
    }

    #s-729d6810-6f77-498f-90b3-cb378d15aca8 .shogun-image-link {
      aspect-ratio: 610/208;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-729d6810-6f77-498f-90b3-cb378d15aca8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-729d6810-6f77-498f-90b3-cb378d15aca8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 610px;
  }



  img.s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image {
    
    
    
    max-height: 610px;
  }


.s-729d6810-6f77-498f-90b3-cb378d15aca8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-729d6810-6f77-498f-90b3-cb378d15aca8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image {
  box-sizing: border-box;
}



.s-729d6810-6f77-498f-90b3-cb378d15aca8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-729d6810-6f77-498f-90b3-cb378d15aca8 {
      --shg-aspect-ratio: calc(610/208); 
    }

    .s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image-container {
      position: relative;
    }

    .s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-729d6810-6f77-498f-90b3-cb378d15aca8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 610px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-729d6810-6f77-498f-90b3-cb378d15aca8 {
  margin: 0 !important;
  overflow: visible;
}

#s-729d6810-6f77-498f-90b3-cb378d15aca8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-729d6810-6f77-498f-90b3-cb378d15aca8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-729d6810-6f77-498f-90b3-cb378d15aca8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-729d6810-6f77-498f-90b3-cb378d15aca8 img.shogun-image {
  /* Add background color handling */
  
}

#s-729d6810-6f77-498f-90b3-cb378d15aca8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-729d6810-6f77-498f-90b3-cb378d15aca8 .shg-image-content-wrapper {
      aspect-ratio: 610/208;
      min-width: 100%;
      height: auto;
    }

    #s-729d6810-6f77-498f-90b3-cb378d15aca8 .shogun-image-link {
      aspect-ratio: 610/208;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-729d6810-6f77-498f-90b3-cb378d15aca8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-729d6810-6f77-498f-90b3-cb378d15aca8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 610px;
  }



  img.s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image {
    
    
    
    max-height: 610px;
  }


.s-729d6810-6f77-498f-90b3-cb378d15aca8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-729d6810-6f77-498f-90b3-cb378d15aca8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image {
  box-sizing: border-box;
}



.s-729d6810-6f77-498f-90b3-cb378d15aca8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-729d6810-6f77-498f-90b3-cb378d15aca8 {
      --shg-aspect-ratio: calc(610/208); 
    }

    .s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image-container {
      position: relative;
    }

    .s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-729d6810-6f77-498f-90b3-cb378d15aca8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 610px;
    }
  }

}@media (max-width: 767px){#s-729d6810-6f77-498f-90b3-cb378d15aca8 {
  margin: 0 !important;
  overflow: visible;
}

#s-729d6810-6f77-498f-90b3-cb378d15aca8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-729d6810-6f77-498f-90b3-cb378d15aca8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-729d6810-6f77-498f-90b3-cb378d15aca8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-729d6810-6f77-498f-90b3-cb378d15aca8 img.shogun-image {
  /* Add background color handling */
  
}

#s-729d6810-6f77-498f-90b3-cb378d15aca8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-729d6810-6f77-498f-90b3-cb378d15aca8 .shg-image-content-wrapper {
      aspect-ratio: 610/208;
      min-width: 100%;
      height: auto;
    }

    #s-729d6810-6f77-498f-90b3-cb378d15aca8 .shogun-image-link {
      aspect-ratio: 610/208;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-729d6810-6f77-498f-90b3-cb378d15aca8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-729d6810-6f77-498f-90b3-cb378d15aca8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 610px;
  }



  img.s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image {
    
    
    
    max-height: 610px;
  }


.s-729d6810-6f77-498f-90b3-cb378d15aca8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-729d6810-6f77-498f-90b3-cb378d15aca8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image {
  box-sizing: border-box;
}



.s-729d6810-6f77-498f-90b3-cb378d15aca8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-729d6810-6f77-498f-90b3-cb378d15aca8 {
      --shg-aspect-ratio: calc(610/208); 
    }

    .s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image-container {
      position: relative;
    }

    .s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-729d6810-6f77-498f-90b3-cb378d15aca8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-729d6810-6f77-498f-90b3-cb378d15aca8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 610px;
    }
  }

}
@media (min-width: 1200px){#s-05760809-1681-4f85-a928-5212c371dc22 {
  margin-top: 10px;
margin-left: 5%;
margin-bottom: 10px;
margin-right: 5%;
min-height: 0px;
}
}
#s-561ed608-f817-4679-a1b9-add1ec08e798 {
  margin-top: -8px;
margin-bottom: -8px;
min-height: 50px;
}








#s-561ed608-f817-4679-a1b9-add1ec08e798 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-561ed608-f817-4679-a1b9-add1ec08e798.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d3a70815-ad58-40a7-9e8a-bc52447d8890 {
  margin-top: -8px;
margin-bottom: -8px;
min-height: 50px;
}








#s-d3a70815-ad58-40a7-9e8a-bc52447d8890 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d3a70815-ad58-40a7-9e8a-bc52447d8890.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-44f74b44-080b-45bb-ba32-52cc6e151ac5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-44f74b44-080b-45bb-ba32-52cc6e151ac5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-44f74b44-080b-45bb-ba32-52cc6e151ac5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-44f74b44-080b-45bb-ba32-52cc6e151ac5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b {
  margin: 0 !important;
  overflow: visible;
}

#s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b img.shogun-image {
  /* Add background color handling */
  
}

#s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b .shogun-image-content {
  
    justify-content: center;
  
}

.s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image {
  box-sizing: border-box;
}



.s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image-container {
      position: relative;
    }

    .s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b {
  margin: 0 !important;
  overflow: visible;
}

#s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b img.shogun-image {
  /* Add background color handling */
  
}

#s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b .shogun-image-content {
  
    justify-content: center;
  
}

.s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image {
  box-sizing: border-box;
}



.s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image-container {
      position: relative;
    }

    .s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b 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-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b {
  margin: 0 !important;
  overflow: visible;
}

#s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b img.shogun-image {
  /* Add background color handling */
  
}

#s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b .shogun-image-content {
  
    justify-content: center;
  
}

.s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image {
  box-sizing: border-box;
}



.s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image-container {
      position: relative;
    }

    .s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b 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-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b {
  margin: 0 !important;
  overflow: visible;
}

#s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b img.shogun-image {
  /* Add background color handling */
  
}

#s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b .shogun-image-content {
  
    justify-content: center;
  
}

.s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image {
  box-sizing: border-box;
}



.s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image-container {
      position: relative;
    }

    .s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b {
  margin: 0 !important;
  overflow: visible;
}

#s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b img.shogun-image {
  /* Add background color handling */
  
}

#s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b .shogun-image-content {
  
    justify-content: center;
  
}

.s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image {
  box-sizing: border-box;
}



.s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image-container {
      position: relative;
    }

    .s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-252bf7a6-9a02-42bd-9e4c-a4a2d92f575b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb {
  margin: 0 !important;
  overflow: visible;
}

#s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb img.shogun-image {
  /* Add background color handling */
  
}

#s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb .shogun-image-content {
  
    justify-content: center;
  
}

.s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image {
  box-sizing: border-box;
}



.s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image-container {
      position: relative;
    }

    .s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb {
  margin: 0 !important;
  overflow: visible;
}

#s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb img.shogun-image {
  /* Add background color handling */
  
}

#s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb .shogun-image-content {
  
    justify-content: center;
  
}

.s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image {
  box-sizing: border-box;
}



.s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image-container {
      position: relative;
    }

    .s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb 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-0376df4f-4d9e-4e26-bb97-c14b207f8bfb {
  margin: 0 !important;
  overflow: visible;
}

#s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb img.shogun-image {
  /* Add background color handling */
  
}

#s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb .shogun-image-content {
  
    justify-content: center;
  
}

.s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image {
  box-sizing: border-box;
}



.s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image-container {
      position: relative;
    }

    .s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb 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-0376df4f-4d9e-4e26-bb97-c14b207f8bfb {
  margin: 0 !important;
  overflow: visible;
}

#s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb img.shogun-image {
  /* Add background color handling */
  
}

#s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb .shogun-image-content {
  
    justify-content: center;
  
}

.s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image {
  box-sizing: border-box;
}



.s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image-container {
      position: relative;
    }

    .s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb {
  margin: 0 !important;
  overflow: visible;
}

#s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb img.shogun-image {
  /* Add background color handling */
  
}

#s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb .shogun-image-content {
  
    justify-content: center;
  
}

.s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image {
  box-sizing: border-box;
}



.s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image-container {
      position: relative;
    }

    .s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0376df4f-4d9e-4e26-bb97-c14b207f8bfb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
@media (min-width: 0px) {
[id="s-9262f6db-7769-47df-b74b-c12c016b49c7"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-9262f6db-7769-47df-b74b-c12c016b49c7"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-9262f6db-7769-47df-b74b-c12c016b49c7"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-9262f6db-7769-47df-b74b-c12c016b49c7"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-dda87d3d-e955-4453-ad77-46ede3589153 {
  max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-dda87d3d-e955-4453-ad77-46ede3589153 {
  margin: 0 !important;
  overflow: visible;
}

#s-dda87d3d-e955-4453-ad77-46ede3589153-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dda87d3d-e955-4453-ad77-46ede3589153 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dda87d3d-e955-4453-ad77-46ede3589153 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dda87d3d-e955-4453-ad77-46ede3589153 img.shogun-image {
  /* Add background color handling */
  
}

#s-dda87d3d-e955-4453-ad77-46ede3589153 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dda87d3d-e955-4453-ad77-46ede3589153 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dda87d3d-e955-4453-ad77-46ede3589153 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dda87d3d-e955-4453-ad77-46ede3589153 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dda87d3d-e955-4453-ad77-46ede3589153 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-dda87d3d-e955-4453-ad77-46ede3589153 .shogun-image-content {
  
    justify-content: center;
  
}

.s-dda87d3d-e955-4453-ad77-46ede3589153.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image {
  box-sizing: border-box;
}



.s-dda87d3d-e955-4453-ad77-46ede3589153 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dda87d3d-e955-4453-ad77-46ede3589153 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image-container {
      position: relative;
    }

    .s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dda87d3d-e955-4453-ad77-46ede3589153 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-dda87d3d-e955-4453-ad77-46ede3589153 {
  margin: 0 !important;
  overflow: visible;
}

#s-dda87d3d-e955-4453-ad77-46ede3589153-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dda87d3d-e955-4453-ad77-46ede3589153 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dda87d3d-e955-4453-ad77-46ede3589153 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dda87d3d-e955-4453-ad77-46ede3589153 img.shogun-image {
  /* Add background color handling */
  
}

#s-dda87d3d-e955-4453-ad77-46ede3589153 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dda87d3d-e955-4453-ad77-46ede3589153 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dda87d3d-e955-4453-ad77-46ede3589153 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dda87d3d-e955-4453-ad77-46ede3589153 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dda87d3d-e955-4453-ad77-46ede3589153 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-dda87d3d-e955-4453-ad77-46ede3589153 .shogun-image-content {
  
    justify-content: center;
  
}

.s-dda87d3d-e955-4453-ad77-46ede3589153.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image {
  box-sizing: border-box;
}



.s-dda87d3d-e955-4453-ad77-46ede3589153 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dda87d3d-e955-4453-ad77-46ede3589153 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image-container {
      position: relative;
    }

    .s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dda87d3d-e955-4453-ad77-46ede3589153 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-dda87d3d-e955-4453-ad77-46ede3589153 {
  margin: 0 !important;
  overflow: visible;
}

#s-dda87d3d-e955-4453-ad77-46ede3589153-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dda87d3d-e955-4453-ad77-46ede3589153 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dda87d3d-e955-4453-ad77-46ede3589153 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dda87d3d-e955-4453-ad77-46ede3589153 img.shogun-image {
  /* Add background color handling */
  
}

#s-dda87d3d-e955-4453-ad77-46ede3589153 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dda87d3d-e955-4453-ad77-46ede3589153 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dda87d3d-e955-4453-ad77-46ede3589153 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dda87d3d-e955-4453-ad77-46ede3589153 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dda87d3d-e955-4453-ad77-46ede3589153 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-dda87d3d-e955-4453-ad77-46ede3589153 .shogun-image-content {
  
    justify-content: center;
  
}

.s-dda87d3d-e955-4453-ad77-46ede3589153.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image {
  box-sizing: border-box;
}



.s-dda87d3d-e955-4453-ad77-46ede3589153 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dda87d3d-e955-4453-ad77-46ede3589153 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image-container {
      position: relative;
    }

    .s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dda87d3d-e955-4453-ad77-46ede3589153 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-dda87d3d-e955-4453-ad77-46ede3589153 {
  margin: 0 !important;
  overflow: visible;
}

#s-dda87d3d-e955-4453-ad77-46ede3589153-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dda87d3d-e955-4453-ad77-46ede3589153 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dda87d3d-e955-4453-ad77-46ede3589153 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dda87d3d-e955-4453-ad77-46ede3589153 img.shogun-image {
  /* Add background color handling */
  
}

#s-dda87d3d-e955-4453-ad77-46ede3589153 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dda87d3d-e955-4453-ad77-46ede3589153 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dda87d3d-e955-4453-ad77-46ede3589153 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dda87d3d-e955-4453-ad77-46ede3589153 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dda87d3d-e955-4453-ad77-46ede3589153 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-dda87d3d-e955-4453-ad77-46ede3589153 .shogun-image-content {
  
    justify-content: center;
  
}

.s-dda87d3d-e955-4453-ad77-46ede3589153.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image {
  box-sizing: border-box;
}



.s-dda87d3d-e955-4453-ad77-46ede3589153 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dda87d3d-e955-4453-ad77-46ede3589153 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image-container {
      position: relative;
    }

    .s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dda87d3d-e955-4453-ad77-46ede3589153 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-dda87d3d-e955-4453-ad77-46ede3589153 {
  margin: 0 !important;
  overflow: visible;
}

#s-dda87d3d-e955-4453-ad77-46ede3589153-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dda87d3d-e955-4453-ad77-46ede3589153 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dda87d3d-e955-4453-ad77-46ede3589153 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dda87d3d-e955-4453-ad77-46ede3589153 img.shogun-image {
  /* Add background color handling */
  
}

#s-dda87d3d-e955-4453-ad77-46ede3589153 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dda87d3d-e955-4453-ad77-46ede3589153 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dda87d3d-e955-4453-ad77-46ede3589153 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dda87d3d-e955-4453-ad77-46ede3589153 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dda87d3d-e955-4453-ad77-46ede3589153 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-dda87d3d-e955-4453-ad77-46ede3589153 .shogun-image-content {
  
    justify-content: center;
  
}

.s-dda87d3d-e955-4453-ad77-46ede3589153.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image {
  box-sizing: border-box;
}



.s-dda87d3d-e955-4453-ad77-46ede3589153 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dda87d3d-e955-4453-ad77-46ede3589153 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image-container {
      position: relative;
    }

    .s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dda87d3d-e955-4453-ad77-46ede3589153.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dda87d3d-e955-4453-ad77-46ede3589153 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-e99d1359-b182-4a0a-a8a6-309e329f80bc {
  max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-e99d1359-b182-4a0a-a8a6-309e329f80bc {
  margin: 0 !important;
  overflow: visible;
}

#s-e99d1359-b182-4a0a-a8a6-309e329f80bc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e99d1359-b182-4a0a-a8a6-309e329f80bc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e99d1359-b182-4a0a-a8a6-309e329f80bc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e99d1359-b182-4a0a-a8a6-309e329f80bc img.shogun-image {
  /* Add background color handling */
  
}

#s-e99d1359-b182-4a0a-a8a6-309e329f80bc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e99d1359-b182-4a0a-a8a6-309e329f80bc .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e99d1359-b182-4a0a-a8a6-309e329f80bc .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e99d1359-b182-4a0a-a8a6-309e329f80bc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e99d1359-b182-4a0a-a8a6-309e329f80bc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-e99d1359-b182-4a0a-a8a6-309e329f80bc .shogun-image-content {
  
    justify-content: center;
  
}

.s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image {
  box-sizing: border-box;
}



.s-e99d1359-b182-4a0a-a8a6-309e329f80bc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e99d1359-b182-4a0a-a8a6-309e329f80bc {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image-container {
      position: relative;
    }

    .s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e99d1359-b182-4a0a-a8a6-309e329f80bc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-e99d1359-b182-4a0a-a8a6-309e329f80bc {
  margin: 0 !important;
  overflow: visible;
}

#s-e99d1359-b182-4a0a-a8a6-309e329f80bc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e99d1359-b182-4a0a-a8a6-309e329f80bc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e99d1359-b182-4a0a-a8a6-309e329f80bc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e99d1359-b182-4a0a-a8a6-309e329f80bc img.shogun-image {
  /* Add background color handling */
  
}

#s-e99d1359-b182-4a0a-a8a6-309e329f80bc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e99d1359-b182-4a0a-a8a6-309e329f80bc .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e99d1359-b182-4a0a-a8a6-309e329f80bc .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e99d1359-b182-4a0a-a8a6-309e329f80bc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e99d1359-b182-4a0a-a8a6-309e329f80bc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-e99d1359-b182-4a0a-a8a6-309e329f80bc .shogun-image-content {
  
    justify-content: center;
  
}

.s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image {
  box-sizing: border-box;
}



.s-e99d1359-b182-4a0a-a8a6-309e329f80bc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e99d1359-b182-4a0a-a8a6-309e329f80bc {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image-container {
      position: relative;
    }

    .s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e99d1359-b182-4a0a-a8a6-309e329f80bc 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-e99d1359-b182-4a0a-a8a6-309e329f80bc {
  margin: 0 !important;
  overflow: visible;
}

#s-e99d1359-b182-4a0a-a8a6-309e329f80bc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e99d1359-b182-4a0a-a8a6-309e329f80bc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e99d1359-b182-4a0a-a8a6-309e329f80bc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e99d1359-b182-4a0a-a8a6-309e329f80bc img.shogun-image {
  /* Add background color handling */
  
}

#s-e99d1359-b182-4a0a-a8a6-309e329f80bc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e99d1359-b182-4a0a-a8a6-309e329f80bc .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e99d1359-b182-4a0a-a8a6-309e329f80bc .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e99d1359-b182-4a0a-a8a6-309e329f80bc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e99d1359-b182-4a0a-a8a6-309e329f80bc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-e99d1359-b182-4a0a-a8a6-309e329f80bc .shogun-image-content {
  
    justify-content: center;
  
}

.s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image {
  box-sizing: border-box;
}



.s-e99d1359-b182-4a0a-a8a6-309e329f80bc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e99d1359-b182-4a0a-a8a6-309e329f80bc {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image-container {
      position: relative;
    }

    .s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e99d1359-b182-4a0a-a8a6-309e329f80bc 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-e99d1359-b182-4a0a-a8a6-309e329f80bc {
  margin: 0 !important;
  overflow: visible;
}

#s-e99d1359-b182-4a0a-a8a6-309e329f80bc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e99d1359-b182-4a0a-a8a6-309e329f80bc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e99d1359-b182-4a0a-a8a6-309e329f80bc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e99d1359-b182-4a0a-a8a6-309e329f80bc img.shogun-image {
  /* Add background color handling */
  
}

#s-e99d1359-b182-4a0a-a8a6-309e329f80bc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e99d1359-b182-4a0a-a8a6-309e329f80bc .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e99d1359-b182-4a0a-a8a6-309e329f80bc .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e99d1359-b182-4a0a-a8a6-309e329f80bc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e99d1359-b182-4a0a-a8a6-309e329f80bc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-e99d1359-b182-4a0a-a8a6-309e329f80bc .shogun-image-content {
  
    justify-content: center;
  
}

.s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image {
  box-sizing: border-box;
}



.s-e99d1359-b182-4a0a-a8a6-309e329f80bc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e99d1359-b182-4a0a-a8a6-309e329f80bc {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image-container {
      position: relative;
    }

    .s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e99d1359-b182-4a0a-a8a6-309e329f80bc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-e99d1359-b182-4a0a-a8a6-309e329f80bc {
  margin: 0 !important;
  overflow: visible;
}

#s-e99d1359-b182-4a0a-a8a6-309e329f80bc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e99d1359-b182-4a0a-a8a6-309e329f80bc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e99d1359-b182-4a0a-a8a6-309e329f80bc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e99d1359-b182-4a0a-a8a6-309e329f80bc img.shogun-image {
  /* Add background color handling */
  
}

#s-e99d1359-b182-4a0a-a8a6-309e329f80bc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e99d1359-b182-4a0a-a8a6-309e329f80bc .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e99d1359-b182-4a0a-a8a6-309e329f80bc .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e99d1359-b182-4a0a-a8a6-309e329f80bc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e99d1359-b182-4a0a-a8a6-309e329f80bc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-e99d1359-b182-4a0a-a8a6-309e329f80bc .shogun-image-content {
  
    justify-content: center;
  
}

.s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image {
  box-sizing: border-box;
}



.s-e99d1359-b182-4a0a-a8a6-309e329f80bc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e99d1359-b182-4a0a-a8a6-309e329f80bc {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image-container {
      position: relative;
    }

    .s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e99d1359-b182-4a0a-a8a6-309e329f80bc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e99d1359-b182-4a0a-a8a6-309e329f80bc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-4599435e-442c-4687-8afa-8922e7d70f0e {
  max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-4599435e-442c-4687-8afa-8922e7d70f0e {
  margin: 0 !important;
  overflow: visible;
}

#s-4599435e-442c-4687-8afa-8922e7d70f0e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4599435e-442c-4687-8afa-8922e7d70f0e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4599435e-442c-4687-8afa-8922e7d70f0e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4599435e-442c-4687-8afa-8922e7d70f0e img.shogun-image {
  /* Add background color handling */
  
}

#s-4599435e-442c-4687-8afa-8922e7d70f0e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4599435e-442c-4687-8afa-8922e7d70f0e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-4599435e-442c-4687-8afa-8922e7d70f0e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4599435e-442c-4687-8afa-8922e7d70f0e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4599435e-442c-4687-8afa-8922e7d70f0e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-4599435e-442c-4687-8afa-8922e7d70f0e .shogun-image-content {
  
    justify-content: center;
  
}

.s-4599435e-442c-4687-8afa-8922e7d70f0e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image {
  box-sizing: border-box;
}



.s-4599435e-442c-4687-8afa-8922e7d70f0e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4599435e-442c-4687-8afa-8922e7d70f0e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image-container {
      position: relative;
    }

    .s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4599435e-442c-4687-8afa-8922e7d70f0e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-4599435e-442c-4687-8afa-8922e7d70f0e {
  margin: 0 !important;
  overflow: visible;
}

#s-4599435e-442c-4687-8afa-8922e7d70f0e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4599435e-442c-4687-8afa-8922e7d70f0e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4599435e-442c-4687-8afa-8922e7d70f0e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4599435e-442c-4687-8afa-8922e7d70f0e img.shogun-image {
  /* Add background color handling */
  
}

#s-4599435e-442c-4687-8afa-8922e7d70f0e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4599435e-442c-4687-8afa-8922e7d70f0e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-4599435e-442c-4687-8afa-8922e7d70f0e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4599435e-442c-4687-8afa-8922e7d70f0e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4599435e-442c-4687-8afa-8922e7d70f0e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-4599435e-442c-4687-8afa-8922e7d70f0e .shogun-image-content {
  
    justify-content: center;
  
}

.s-4599435e-442c-4687-8afa-8922e7d70f0e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image {
  box-sizing: border-box;
}



.s-4599435e-442c-4687-8afa-8922e7d70f0e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4599435e-442c-4687-8afa-8922e7d70f0e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image-container {
      position: relative;
    }

    .s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4599435e-442c-4687-8afa-8922e7d70f0e 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-4599435e-442c-4687-8afa-8922e7d70f0e {
  margin: 0 !important;
  overflow: visible;
}

#s-4599435e-442c-4687-8afa-8922e7d70f0e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4599435e-442c-4687-8afa-8922e7d70f0e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4599435e-442c-4687-8afa-8922e7d70f0e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4599435e-442c-4687-8afa-8922e7d70f0e img.shogun-image {
  /* Add background color handling */
  
}

#s-4599435e-442c-4687-8afa-8922e7d70f0e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4599435e-442c-4687-8afa-8922e7d70f0e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-4599435e-442c-4687-8afa-8922e7d70f0e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4599435e-442c-4687-8afa-8922e7d70f0e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4599435e-442c-4687-8afa-8922e7d70f0e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-4599435e-442c-4687-8afa-8922e7d70f0e .shogun-image-content {
  
    justify-content: center;
  
}

.s-4599435e-442c-4687-8afa-8922e7d70f0e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image {
  box-sizing: border-box;
}



.s-4599435e-442c-4687-8afa-8922e7d70f0e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4599435e-442c-4687-8afa-8922e7d70f0e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image-container {
      position: relative;
    }

    .s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4599435e-442c-4687-8afa-8922e7d70f0e 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-4599435e-442c-4687-8afa-8922e7d70f0e {
  margin: 0 !important;
  overflow: visible;
}

#s-4599435e-442c-4687-8afa-8922e7d70f0e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4599435e-442c-4687-8afa-8922e7d70f0e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4599435e-442c-4687-8afa-8922e7d70f0e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4599435e-442c-4687-8afa-8922e7d70f0e img.shogun-image {
  /* Add background color handling */
  
}

#s-4599435e-442c-4687-8afa-8922e7d70f0e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4599435e-442c-4687-8afa-8922e7d70f0e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-4599435e-442c-4687-8afa-8922e7d70f0e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4599435e-442c-4687-8afa-8922e7d70f0e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4599435e-442c-4687-8afa-8922e7d70f0e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-4599435e-442c-4687-8afa-8922e7d70f0e .shogun-image-content {
  
    justify-content: center;
  
}

.s-4599435e-442c-4687-8afa-8922e7d70f0e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image {
  box-sizing: border-box;
}



.s-4599435e-442c-4687-8afa-8922e7d70f0e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4599435e-442c-4687-8afa-8922e7d70f0e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image-container {
      position: relative;
    }

    .s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4599435e-442c-4687-8afa-8922e7d70f0e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-4599435e-442c-4687-8afa-8922e7d70f0e {
  margin: 0 !important;
  overflow: visible;
}

#s-4599435e-442c-4687-8afa-8922e7d70f0e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4599435e-442c-4687-8afa-8922e7d70f0e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4599435e-442c-4687-8afa-8922e7d70f0e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4599435e-442c-4687-8afa-8922e7d70f0e img.shogun-image {
  /* Add background color handling */
  
}

#s-4599435e-442c-4687-8afa-8922e7d70f0e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4599435e-442c-4687-8afa-8922e7d70f0e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-4599435e-442c-4687-8afa-8922e7d70f0e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4599435e-442c-4687-8afa-8922e7d70f0e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4599435e-442c-4687-8afa-8922e7d70f0e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-4599435e-442c-4687-8afa-8922e7d70f0e .shogun-image-content {
  
    justify-content: center;
  
}

.s-4599435e-442c-4687-8afa-8922e7d70f0e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image {
  box-sizing: border-box;
}



.s-4599435e-442c-4687-8afa-8922e7d70f0e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4599435e-442c-4687-8afa-8922e7d70f0e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image-container {
      position: relative;
    }

    .s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4599435e-442c-4687-8afa-8922e7d70f0e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4599435e-442c-4687-8afa-8922e7d70f0e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff {
  max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff {
  margin: 0 !important;
  overflow: visible;
}

#s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff img.shogun-image {
  /* Add background color handling */
  
}

#s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff .shogun-image-content {
  
    justify-content: center;
  
}

.s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image {
  box-sizing: border-box;
}



.s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image-container {
      position: relative;
    }

    .s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff {
  margin: 0 !important;
  overflow: visible;
}

#s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff img.shogun-image {
  /* Add background color handling */
  
}

#s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff .shogun-image-content {
  
    justify-content: center;
  
}

.s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image {
  box-sizing: border-box;
}



.s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image-container {
      position: relative;
    }

    .s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff 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-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff {
  margin: 0 !important;
  overflow: visible;
}

#s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff img.shogun-image {
  /* Add background color handling */
  
}

#s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff .shogun-image-content {
  
    justify-content: center;
  
}

.s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image {
  box-sizing: border-box;
}



.s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image-container {
      position: relative;
    }

    .s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff 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-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff {
  margin: 0 !important;
  overflow: visible;
}

#s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff img.shogun-image {
  /* Add background color handling */
  
}

#s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff .shogun-image-content {
  
    justify-content: center;
  
}

.s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image {
  box-sizing: border-box;
}



.s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image-container {
      position: relative;
    }

    .s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff {
  margin: 0 !important;
  overflow: visible;
}

#s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff img.shogun-image {
  /* Add background color handling */
  
}

#s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff .shogun-image-content {
  
    justify-content: center;
  
}

.s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image {
  box-sizing: border-box;
}



.s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image-container {
      position: relative;
    }

    .s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4fd17fd8-92ce-4bb8-b77a-60d0ecae39ff img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}

.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty:not(.shopify-section *):not([id^="wistia"]) {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}

/* <-- User Content Animations */

.shogun-form-error-msg,
.shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}
