.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-fab8a872-e738-4d1c-8ec9-b36310f3e74a {
  min-height: 50px;
}








#s-fab8a872-e738-4d1c-8ec9-b36310f3e74a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fab8a872-e738-4d1c-8ec9-b36310f3e74a.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-0fb755e4-aa99-44f9-9860-a9bcdd32549c {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-0fb755e4-aa99-44f9-9860-a9bcdd32549c {
  margin: 0 !important;
  overflow: visible;
}

#s-0fb755e4-aa99-44f9-9860-a9bcdd32549c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0fb755e4-aa99-44f9-9860-a9bcdd32549c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0fb755e4-aa99-44f9-9860-a9bcdd32549c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0fb755e4-aa99-44f9-9860-a9bcdd32549c img.shogun-image {
  /* Add background color handling */
  
}

#s-0fb755e4-aa99-44f9-9860-a9bcdd32549c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0fb755e4-aa99-44f9-9860-a9bcdd32549c .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0fb755e4-aa99-44f9-9860-a9bcdd32549c .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0fb755e4-aa99-44f9-9860-a9bcdd32549c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0fb755e4-aa99-44f9-9860-a9bcdd32549c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0fb755e4-aa99-44f9-9860-a9bcdd32549c .shogun-image-content {
  
    justify-content: center;
  
}

.s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image {
  box-sizing: border-box;
}



.s-0fb755e4-aa99-44f9-9860-a9bcdd32549c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0fb755e4-aa99-44f9-9860-a9bcdd32549c {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image-container {
      position: relative;
    }

    .s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0fb755e4-aa99-44f9-9860-a9bcdd32549c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-0fb755e4-aa99-44f9-9860-a9bcdd32549c {
  margin: 0 !important;
  overflow: visible;
}

#s-0fb755e4-aa99-44f9-9860-a9bcdd32549c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0fb755e4-aa99-44f9-9860-a9bcdd32549c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0fb755e4-aa99-44f9-9860-a9bcdd32549c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0fb755e4-aa99-44f9-9860-a9bcdd32549c img.shogun-image {
  /* Add background color handling */
  
}

#s-0fb755e4-aa99-44f9-9860-a9bcdd32549c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0fb755e4-aa99-44f9-9860-a9bcdd32549c .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0fb755e4-aa99-44f9-9860-a9bcdd32549c .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0fb755e4-aa99-44f9-9860-a9bcdd32549c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0fb755e4-aa99-44f9-9860-a9bcdd32549c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0fb755e4-aa99-44f9-9860-a9bcdd32549c .shogun-image-content {
  
    justify-content: center;
  
}

.s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image {
  box-sizing: border-box;
}



.s-0fb755e4-aa99-44f9-9860-a9bcdd32549c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0fb755e4-aa99-44f9-9860-a9bcdd32549c {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image-container {
      position: relative;
    }

    .s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0fb755e4-aa99-44f9-9860-a9bcdd32549c 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-0fb755e4-aa99-44f9-9860-a9bcdd32549c {
  margin: 0 !important;
  overflow: visible;
}

#s-0fb755e4-aa99-44f9-9860-a9bcdd32549c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0fb755e4-aa99-44f9-9860-a9bcdd32549c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0fb755e4-aa99-44f9-9860-a9bcdd32549c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0fb755e4-aa99-44f9-9860-a9bcdd32549c img.shogun-image {
  /* Add background color handling */
  
}

#s-0fb755e4-aa99-44f9-9860-a9bcdd32549c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0fb755e4-aa99-44f9-9860-a9bcdd32549c .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0fb755e4-aa99-44f9-9860-a9bcdd32549c .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0fb755e4-aa99-44f9-9860-a9bcdd32549c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0fb755e4-aa99-44f9-9860-a9bcdd32549c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0fb755e4-aa99-44f9-9860-a9bcdd32549c .shogun-image-content {
  
    justify-content: center;
  
}

.s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image {
  box-sizing: border-box;
}



.s-0fb755e4-aa99-44f9-9860-a9bcdd32549c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0fb755e4-aa99-44f9-9860-a9bcdd32549c {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image-container {
      position: relative;
    }

    .s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0fb755e4-aa99-44f9-9860-a9bcdd32549c 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-0fb755e4-aa99-44f9-9860-a9bcdd32549c {
  margin: 0 !important;
  overflow: visible;
}

#s-0fb755e4-aa99-44f9-9860-a9bcdd32549c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0fb755e4-aa99-44f9-9860-a9bcdd32549c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0fb755e4-aa99-44f9-9860-a9bcdd32549c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0fb755e4-aa99-44f9-9860-a9bcdd32549c img.shogun-image {
  /* Add background color handling */
  
}

#s-0fb755e4-aa99-44f9-9860-a9bcdd32549c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0fb755e4-aa99-44f9-9860-a9bcdd32549c .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0fb755e4-aa99-44f9-9860-a9bcdd32549c .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0fb755e4-aa99-44f9-9860-a9bcdd32549c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0fb755e4-aa99-44f9-9860-a9bcdd32549c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0fb755e4-aa99-44f9-9860-a9bcdd32549c .shogun-image-content {
  
    justify-content: center;
  
}

.s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image {
  box-sizing: border-box;
}



.s-0fb755e4-aa99-44f9-9860-a9bcdd32549c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0fb755e4-aa99-44f9-9860-a9bcdd32549c {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image-container {
      position: relative;
    }

    .s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0fb755e4-aa99-44f9-9860-a9bcdd32549c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-0fb755e4-aa99-44f9-9860-a9bcdd32549c {
  margin: 0 !important;
  overflow: visible;
}

#s-0fb755e4-aa99-44f9-9860-a9bcdd32549c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0fb755e4-aa99-44f9-9860-a9bcdd32549c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0fb755e4-aa99-44f9-9860-a9bcdd32549c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0fb755e4-aa99-44f9-9860-a9bcdd32549c img.shogun-image {
  /* Add background color handling */
  
}

#s-0fb755e4-aa99-44f9-9860-a9bcdd32549c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0fb755e4-aa99-44f9-9860-a9bcdd32549c .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0fb755e4-aa99-44f9-9860-a9bcdd32549c .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0fb755e4-aa99-44f9-9860-a9bcdd32549c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0fb755e4-aa99-44f9-9860-a9bcdd32549c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0fb755e4-aa99-44f9-9860-a9bcdd32549c .shogun-image-content {
  
    justify-content: center;
  
}

.s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image {
  box-sizing: border-box;
}



.s-0fb755e4-aa99-44f9-9860-a9bcdd32549c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0fb755e4-aa99-44f9-9860-a9bcdd32549c {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image-container {
      position: relative;
    }

    .s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0fb755e4-aa99-44f9-9860-a9bcdd32549c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0fb755e4-aa99-44f9-9860-a9bcdd32549c 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-8531a34b-139f-4b74-9ad8-aaa8332983f2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8531a34b-139f-4b74-9ad8-aaa8332983f2 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-f665dd3e-a5c3-4ff4-b1e9-bb8e354a4f0f {
  min-height: 50px;
}








#s-f665dd3e-a5c3-4ff4-b1e9-bb8e354a4f0f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f665dd3e-a5c3-4ff4-b1e9-bb8e354a4f0f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a384685e-2297-45b6-8bb9-11591bd59edb {
  min-height: 50px;
}








#s-a384685e-2297-45b6-8bb9-11591bd59edb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a384685e-2297-45b6-8bb9-11591bd59edb.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-c719306d-cc74-4d6b-bdad-bda289a4b024 {
  margin-top: -8px;
margin-bottom: -8px;
min-height: 50px;
}








#s-c719306d-cc74-4d6b-bdad-bda289a4b024 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c719306d-cc74-4d6b-bdad-bda289a4b024.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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








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

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

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

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

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

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

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

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

}

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

}

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

}

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

}

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

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

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

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

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

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

}
#s-8fdf2c92-3239-437c-b447-4e111fc6ff24 {
  margin-top: -10px;
margin-bottom: -10px;
}

#s-1e562f51-4737-465c-b8ad-5ebc611d71f3 {
  margin-top: -10px;
margin-bottom: -10px;
}

#s-c2fbafc8-9f46-45f4-a1e6-111f524493d5 {
  min-height: 50px;
}








#s-c2fbafc8-9f46-45f4-a1e6-111f524493d5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c2fbafc8-9f46-45f4-a1e6-111f524493d5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-26a63bf6-0e4e-4284-b47d-a7f0e05771c2 {
  min-height: 50px;
}








#s-26a63bf6-0e4e-4284-b47d-a7f0e05771c2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-26a63bf6-0e4e-4284-b47d-a7f0e05771c2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shogun-accordion-wrapper .shogun-accordion {
  margin-bottom: 0;
  border-radius: 4px;
}

.shogun-accordion {
  margin-bottom: 20px;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.shogun-accordion-wrapper .shogun-accordion + .shogun-accordion {
  margin-top: 5px;
}

.shogun-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.shogun-accordion-heading {
  color: #333;
  border-bottom: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  cursor: pointer;
}

.shogun-accordion-title {
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer;
  text-decoration: none;
  flex: 1;
  user-select: none;
}

.shogun-accordion-body {
  display: none;
  opacity: 0;
  transition: opacity 0.5s linear;
}

.shogun-accordion-body.shogun-accordion-active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.shogun-accordion-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1.2em;
}

.shogun-accordion-icon > span {
  transition: 0.3s transform;
  position: absolute;
  right: 0;
  font-size: 1.2em;
}

.shogun-accordion-icon.shogun-icon-chevron > span::after {
  content: "▸";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-chevron
  > span {
  transform: rotate(90deg);
}

.shogun-accordion-icon.shogun-icon-plus > span::after {
  content: "＋";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-plus
  > span {
  transform: rotate(-225deg);
}

#s-9bbfd450-59f0-458f-88ab-d024e3d524d0 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 0%;
padding-left: 3.5%;
padding-bottom: 0%;
padding-right: 3.5%;
}

#s-9bbfd450-59f0-458f-88ab-d024e3d524d0 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(0, 0, 0, 0.06);
}

#s-9bbfd450-59f0-458f-88ab-d024e3d524d0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 15px;
}

#s-9bbfd450-59f0-458f-88ab-d024e3d524d0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 1);
}

#s-9bbfd450-59f0-458f-88ab-d024e3d524d0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

#s-9bbfd450-59f0-458f-88ab-d024e3d524d0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 1);
  text-align: left;
  font-family: Inter;
  font-weight: 600;
  font-style: ;
  font-size: 21px;
}

#s-9bbfd450-59f0-458f-88ab-d024e3d524d0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 21px;
}
@media (min-width: 0px) {
[id="s-54898d88-1bda-46ac-a912-1810f98ef37c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-54898d88-1bda-46ac-a912-1810f98ef37c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-54898d88-1bda-46ac-a912-1810f98ef37c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-54898d88-1bda-46ac-a912-1810f98ef37c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-54898d88-1bda-46ac-a912-1810f98ef37c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-54898d88-1bda-46ac-a912-1810f98ef37c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-54898d88-1bda-46ac-a912-1810f98ef37c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  max-width: 1920px;
aspect-ratio: 1920/1095;
text-align: center;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  margin: 0 !important;
  overflow: visible;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  /* Add background color handling */
  
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-a52fcb11-5da2-44b0-a35f-14419d193edf .shogun-image-content {
  
    justify-content: center;
  
}

.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image {
  box-sizing: border-box;
}



.s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a52fcb11-5da2-44b0-a35f-14419d193edf {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
      position: relative;
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

@media (min-width: 1200px){#s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  margin: 0 !important;
  overflow: visible;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  /* Add background color handling */
  
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-a52fcb11-5da2-44b0-a35f-14419d193edf .shogun-image-content {
  
    justify-content: center;
  
}

.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image {
  box-sizing: border-box;
}



.s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a52fcb11-5da2-44b0-a35f-14419d193edf {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
      position: relative;
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  margin: 0 !important;
  overflow: visible;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  /* Add background color handling */
  
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-a52fcb11-5da2-44b0-a35f-14419d193edf .shogun-image-content {
  
    justify-content: center;
  
}

.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image {
  box-sizing: border-box;
}



.s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a52fcb11-5da2-44b0-a35f-14419d193edf {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
      position: relative;
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  margin: 0 !important;
  overflow: visible;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  /* Add background color handling */
  
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-a52fcb11-5da2-44b0-a35f-14419d193edf .shogun-image-content {
  
    justify-content: center;
  
}

.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image {
  box-sizing: border-box;
}



.s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a52fcb11-5da2-44b0-a35f-14419d193edf {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
      position: relative;
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (max-width: 767px){#s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  margin: 0 !important;
  overflow: visible;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  /* Add background color handling */
  
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-a52fcb11-5da2-44b0-a35f-14419d193edf .shogun-image-content {
  
    justify-content: center;
  
}

.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image {
  box-sizing: border-box;
}



.s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a52fcb11-5da2-44b0-a35f-14419d193edf {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
      position: relative;
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}
#s-03b5c7bd-5615-4187-a40a-5b1218d43e85 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 1%;
padding-right: 1%;
}

#s-72aed6d4-10c3-4b71-960c-f37cf5975c65 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 20px;
padding-left: 1%;
padding-bottom: 20px;
padding-right: 1%;
}

@media (min-width: 0px) {
[id="s-7338f845-14ec-4ca9-8585-80f31bf47434"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7338f845-14ec-4ca9-8585-80f31bf47434"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7338f845-14ec-4ca9-8585-80f31bf47434"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7338f845-14ec-4ca9-8585-80f31bf47434"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-ee790ed7-bbba-4432-8ce4-7da278fab599"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ee790ed7-bbba-4432-8ce4-7da278fab599"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ee790ed7-bbba-4432-8ce4-7da278fab599"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ee790ed7-bbba-4432-8ce4-7da278fab599"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ee790ed7-bbba-4432-8ce4-7da278fab599"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ee790ed7-bbba-4432-8ce4-7da278fab599"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ee790ed7-bbba-4432-8ce4-7da278fab599"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-7249d832-b733-47ce-ae4b-e0fd59cf86aa {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-60f5e956-886a-4b8d-8116-cfe88919ad80"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-60f5e956-886a-4b8d-8116-cfe88919ad80"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-60f5e956-886a-4b8d-8116-cfe88919ad80"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-60f5e956-886a-4b8d-8116-cfe88919ad80"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-60f5e956-886a-4b8d-8116-cfe88919ad80"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-60f5e956-886a-4b8d-8116-cfe88919ad80"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-60f5e956-886a-4b8d-8116-cfe88919ad80"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-91d31274-04a3-41d3-8131-1ccfe4994f55 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-cfad38dc-5716-407f-9955-3cb64f37e49a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cfad38dc-5716-407f-9955-3cb64f37e49a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-cfad38dc-5716-407f-9955-3cb64f37e49a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-cfad38dc-5716-407f-9955-3cb64f37e49a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-2346c23b-d562-4693-b084-eddc52ceb73a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2346c23b-d562-4693-b084-eddc52ceb73a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2346c23b-d562-4693-b084-eddc52ceb73a"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2346c23b-d562-4693-b084-eddc52ceb73a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2346c23b-d562-4693-b084-eddc52ceb73a"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2346c23b-d562-4693-b084-eddc52ceb73a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2346c23b-d562-4693-b084-eddc52ceb73a"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-0d120777-36b4-4e7f-8d4d-dba8e24fcb4c {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-71e965e5-c72f-40bd-966d-4c72bb5fe1dd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-71e965e5-c72f-40bd-966d-4c72bb5fe1dd"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-71e965e5-c72f-40bd-966d-4c72bb5fe1dd"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-71e965e5-c72f-40bd-966d-4c72bb5fe1dd"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-71e965e5-c72f-40bd-966d-4c72bb5fe1dd"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-71e965e5-c72f-40bd-966d-4c72bb5fe1dd"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-71e965e5-c72f-40bd-966d-4c72bb5fe1dd"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-cc74da1c-5f17-4683-8a19-e7538f1f6d80 {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-6d10fd4a-a8c9-43f2-9121-905594c0ed57 {
  min-height: 50px;
}








#s-6d10fd4a-a8c9-43f2-9121-905594c0ed57 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6d10fd4a-a8c9-43f2-9121-905594c0ed57.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a93131b5-51cb-4b90-a498-5b397bb4224e {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-a93131b5-51cb-4b90-a498-5b397bb4224e {
  margin: 0 !important;
  overflow: visible;
}

#s-a93131b5-51cb-4b90-a498-5b397bb4224e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a93131b5-51cb-4b90-a498-5b397bb4224e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a93131b5-51cb-4b90-a498-5b397bb4224e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a93131b5-51cb-4b90-a498-5b397bb4224e img.shogun-image {
  /* Add background color handling */
  
}

#s-a93131b5-51cb-4b90-a498-5b397bb4224e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a93131b5-51cb-4b90-a498-5b397bb4224e .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-a93131b5-51cb-4b90-a498-5b397bb4224e .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a93131b5-51cb-4b90-a498-5b397bb4224e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a93131b5-51cb-4b90-a498-5b397bb4224e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-a93131b5-51cb-4b90-a498-5b397bb4224e .shogun-image-content {
  
    justify-content: center;
  
}

.s-a93131b5-51cb-4b90-a498-5b397bb4224e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image {
  box-sizing: border-box;
}



.s-a93131b5-51cb-4b90-a498-5b397bb4224e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a93131b5-51cb-4b90-a498-5b397bb4224e {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image-container {
      position: relative;
    }

    .s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a93131b5-51cb-4b90-a498-5b397bb4224e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-a93131b5-51cb-4b90-a498-5b397bb4224e {
  margin: 0 !important;
  overflow: visible;
}

#s-a93131b5-51cb-4b90-a498-5b397bb4224e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a93131b5-51cb-4b90-a498-5b397bb4224e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a93131b5-51cb-4b90-a498-5b397bb4224e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a93131b5-51cb-4b90-a498-5b397bb4224e img.shogun-image {
  /* Add background color handling */
  
}

#s-a93131b5-51cb-4b90-a498-5b397bb4224e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a93131b5-51cb-4b90-a498-5b397bb4224e .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-a93131b5-51cb-4b90-a498-5b397bb4224e .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a93131b5-51cb-4b90-a498-5b397bb4224e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a93131b5-51cb-4b90-a498-5b397bb4224e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-a93131b5-51cb-4b90-a498-5b397bb4224e .shogun-image-content {
  
    justify-content: center;
  
}

.s-a93131b5-51cb-4b90-a498-5b397bb4224e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image {
  box-sizing: border-box;
}



.s-a93131b5-51cb-4b90-a498-5b397bb4224e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a93131b5-51cb-4b90-a498-5b397bb4224e {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image-container {
      position: relative;
    }

    .s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a93131b5-51cb-4b90-a498-5b397bb4224e 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-a93131b5-51cb-4b90-a498-5b397bb4224e {
  margin: 0 !important;
  overflow: visible;
}

#s-a93131b5-51cb-4b90-a498-5b397bb4224e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a93131b5-51cb-4b90-a498-5b397bb4224e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a93131b5-51cb-4b90-a498-5b397bb4224e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a93131b5-51cb-4b90-a498-5b397bb4224e img.shogun-image {
  /* Add background color handling */
  
}

#s-a93131b5-51cb-4b90-a498-5b397bb4224e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a93131b5-51cb-4b90-a498-5b397bb4224e .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-a93131b5-51cb-4b90-a498-5b397bb4224e .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a93131b5-51cb-4b90-a498-5b397bb4224e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a93131b5-51cb-4b90-a498-5b397bb4224e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-a93131b5-51cb-4b90-a498-5b397bb4224e .shogun-image-content {
  
    justify-content: center;
  
}

.s-a93131b5-51cb-4b90-a498-5b397bb4224e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image {
  box-sizing: border-box;
}



.s-a93131b5-51cb-4b90-a498-5b397bb4224e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a93131b5-51cb-4b90-a498-5b397bb4224e {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image-container {
      position: relative;
    }

    .s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a93131b5-51cb-4b90-a498-5b397bb4224e 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-a93131b5-51cb-4b90-a498-5b397bb4224e {
  margin: 0 !important;
  overflow: visible;
}

#s-a93131b5-51cb-4b90-a498-5b397bb4224e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a93131b5-51cb-4b90-a498-5b397bb4224e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a93131b5-51cb-4b90-a498-5b397bb4224e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a93131b5-51cb-4b90-a498-5b397bb4224e img.shogun-image {
  /* Add background color handling */
  
}

#s-a93131b5-51cb-4b90-a498-5b397bb4224e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a93131b5-51cb-4b90-a498-5b397bb4224e .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-a93131b5-51cb-4b90-a498-5b397bb4224e .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a93131b5-51cb-4b90-a498-5b397bb4224e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a93131b5-51cb-4b90-a498-5b397bb4224e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-a93131b5-51cb-4b90-a498-5b397bb4224e .shogun-image-content {
  
    justify-content: center;
  
}

.s-a93131b5-51cb-4b90-a498-5b397bb4224e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image {
  box-sizing: border-box;
}



.s-a93131b5-51cb-4b90-a498-5b397bb4224e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a93131b5-51cb-4b90-a498-5b397bb4224e {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image-container {
      position: relative;
    }

    .s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a93131b5-51cb-4b90-a498-5b397bb4224e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-a93131b5-51cb-4b90-a498-5b397bb4224e {
  margin: 0 !important;
  overflow: visible;
}

#s-a93131b5-51cb-4b90-a498-5b397bb4224e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a93131b5-51cb-4b90-a498-5b397bb4224e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a93131b5-51cb-4b90-a498-5b397bb4224e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a93131b5-51cb-4b90-a498-5b397bb4224e img.shogun-image {
  /* Add background color handling */
  
}

#s-a93131b5-51cb-4b90-a498-5b397bb4224e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a93131b5-51cb-4b90-a498-5b397bb4224e .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-a93131b5-51cb-4b90-a498-5b397bb4224e .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a93131b5-51cb-4b90-a498-5b397bb4224e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a93131b5-51cb-4b90-a498-5b397bb4224e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-a93131b5-51cb-4b90-a498-5b397bb4224e .shogun-image-content {
  
    justify-content: center;
  
}

.s-a93131b5-51cb-4b90-a498-5b397bb4224e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image {
  box-sizing: border-box;
}



.s-a93131b5-51cb-4b90-a498-5b397bb4224e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a93131b5-51cb-4b90-a498-5b397bb4224e {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image-container {
      position: relative;
    }

    .s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a93131b5-51cb-4b90-a498-5b397bb4224e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a93131b5-51cb-4b90-a498-5b397bb4224e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 {
  max-width: 1200px;
aspect-ratio: 1200/430;
text-align: center;
}

#s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 .shg-image-content-wrapper {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }

    #s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 .shogun-image-link {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image {
  box-sizing: border-box;
}



.s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 {
      --shg-aspect-ratio: calc(1200/430); 
    }

    .s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image-container {
      position: relative;
    }

    .s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

@media (min-width: 1200px){#s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 .shg-image-content-wrapper {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }

    #s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 .shogun-image-link {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image {
  box-sizing: border-box;
}



.s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 {
      --shg-aspect-ratio: calc(1200/430); 
    }

    .s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image-container {
      position: relative;
    }

    .s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 .shg-image-content-wrapper {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }

    #s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 .shogun-image-link {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image {
  box-sizing: border-box;
}



.s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 {
      --shg-aspect-ratio: calc(1200/430); 
    }

    .s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image-container {
      position: relative;
    }

    .s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 .shg-image-content-wrapper {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }

    #s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 .shogun-image-link {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image {
  box-sizing: border-box;
}



.s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 {
      --shg-aspect-ratio: calc(1200/430); 
    }

    .s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image-container {
      position: relative;
    }

    .s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

}@media (max-width: 767px){#s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 .shg-image-content-wrapper {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }

    #s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 .shogun-image-link {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image {
  box-sizing: border-box;
}



.s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 {
      --shg-aspect-ratio: calc(1200/430); 
    }

    .s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image-container {
      position: relative;
    }

    .s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e68729ca-c7a4-4cb3-b325-51c8dbe011d0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

}
.shg-btn.shg-cse, .shg-btn.shg-cse:hover, .shg-btn.shg-cse:focus {
  color: #FFF;
}

.shg-btn {
  cursor: pointer;
  box-sizing: border-box;
}

.shg-btn-text {
  font-weight: 400;
  font-family: "Inter";
}

.shg-btn.shg-btn-stretch {
  display: block;
}

.shg-btn:not(.shg-btn-stretch) {
  display: inline-block;
}

.shg-btn-wrapper.shg-align-left {
  text-align: left;
}

.shg-btn-wrapper.shg-align-center {
  text-align: center;
}

.shg-btn-wrapper.shg-align-right {
  text-align: right;
}

#s-3e484d48-ca4b-48ab-bc8e-94e2033b73bb {
  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-3e484d48-ca4b-48ab-bc8e-94e2033b73bb:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-3e484d48-ca4b-48ab-bc8e-94e2033b73bb:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-3e484d48-ca4b-48ab-bc8e-94e2033b73bb {
  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-3e484d48-ca4b-48ab-bc8e-94e2033b73bb-root {
    text-align: center;
  }


#s-3e484d48-ca4b-48ab-bc8e-94e2033b73bb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-3e484d48-ca4b-48ab-bc8e-94e2033b73bb-root {
    text-align: left;
  }


#s-3e484d48-ca4b-48ab-bc8e-94e2033b73bb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-3e484d48-ca4b-48ab-bc8e-94e2033b73bb-root {
    text-align: center;
  }


#s-3e484d48-ca4b-48ab-bc8e-94e2033b73bb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-3e484d48-ca4b-48ab-bc8e-94e2033b73bb-root {
    text-align: center;
  }


#s-3e484d48-ca4b-48ab-bc8e-94e2033b73bb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-3e484d48-ca4b-48ab-bc8e-94e2033b73bb-root {
    text-align: center;
  }


#s-3e484d48-ca4b-48ab-bc8e-94e2033b73bb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-ac8d68a3-eb6a-43ec-8922-ce1738684147 {
  min-height: 50px;
}








#s-ac8d68a3-eb6a-43ec-8922-ce1738684147 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ac8d68a3-eb6a-43ec-8922-ce1738684147.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-76a9ad24-a598-44de-9d1c-1d899869cf8a {
  max-width: 1500px;
aspect-ratio: 1500/563;
text-align: center;
}

#s-76a9ad24-a598-44de-9d1c-1d899869cf8a {
  margin: 0 !important;
  overflow: visible;
}

#s-76a9ad24-a598-44de-9d1c-1d899869cf8a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-76a9ad24-a598-44de-9d1c-1d899869cf8a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-76a9ad24-a598-44de-9d1c-1d899869cf8a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-76a9ad24-a598-44de-9d1c-1d899869cf8a img.shogun-image {
  /* Add background color handling */
  
}

#s-76a9ad24-a598-44de-9d1c-1d899869cf8a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-76a9ad24-a598-44de-9d1c-1d899869cf8a .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-76a9ad24-a598-44de-9d1c-1d899869cf8a .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-76a9ad24-a598-44de-9d1c-1d899869cf8a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-76a9ad24-a598-44de-9d1c-1d899869cf8a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-76a9ad24-a598-44de-9d1c-1d899869cf8a .shogun-image-content {
  
    justify-content: center;
  
}

.s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image {
  box-sizing: border-box;
}



.s-76a9ad24-a598-44de-9d1c-1d899869cf8a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-76a9ad24-a598-44de-9d1c-1d899869cf8a {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image-container {
      position: relative;
    }

    .s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-76a9ad24-a598-44de-9d1c-1d899869cf8a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-76a9ad24-a598-44de-9d1c-1d899869cf8a {
  margin: 0 !important;
  overflow: visible;
}

#s-76a9ad24-a598-44de-9d1c-1d899869cf8a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-76a9ad24-a598-44de-9d1c-1d899869cf8a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-76a9ad24-a598-44de-9d1c-1d899869cf8a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-76a9ad24-a598-44de-9d1c-1d899869cf8a img.shogun-image {
  /* Add background color handling */
  
}

#s-76a9ad24-a598-44de-9d1c-1d899869cf8a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-76a9ad24-a598-44de-9d1c-1d899869cf8a .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-76a9ad24-a598-44de-9d1c-1d899869cf8a .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-76a9ad24-a598-44de-9d1c-1d899869cf8a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-76a9ad24-a598-44de-9d1c-1d899869cf8a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-76a9ad24-a598-44de-9d1c-1d899869cf8a .shogun-image-content {
  
    justify-content: center;
  
}

.s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image {
  box-sizing: border-box;
}



.s-76a9ad24-a598-44de-9d1c-1d899869cf8a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-76a9ad24-a598-44de-9d1c-1d899869cf8a {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image-container {
      position: relative;
    }

    .s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-76a9ad24-a598-44de-9d1c-1d899869cf8a 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-76a9ad24-a598-44de-9d1c-1d899869cf8a {
  margin: 0 !important;
  overflow: visible;
}

#s-76a9ad24-a598-44de-9d1c-1d899869cf8a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-76a9ad24-a598-44de-9d1c-1d899869cf8a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-76a9ad24-a598-44de-9d1c-1d899869cf8a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-76a9ad24-a598-44de-9d1c-1d899869cf8a img.shogun-image {
  /* Add background color handling */
  
}

#s-76a9ad24-a598-44de-9d1c-1d899869cf8a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-76a9ad24-a598-44de-9d1c-1d899869cf8a .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-76a9ad24-a598-44de-9d1c-1d899869cf8a .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-76a9ad24-a598-44de-9d1c-1d899869cf8a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-76a9ad24-a598-44de-9d1c-1d899869cf8a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-76a9ad24-a598-44de-9d1c-1d899869cf8a .shogun-image-content {
  
    justify-content: center;
  
}

.s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image {
  box-sizing: border-box;
}



.s-76a9ad24-a598-44de-9d1c-1d899869cf8a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-76a9ad24-a598-44de-9d1c-1d899869cf8a {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image-container {
      position: relative;
    }

    .s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-76a9ad24-a598-44de-9d1c-1d899869cf8a 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-76a9ad24-a598-44de-9d1c-1d899869cf8a {
  margin: 0 !important;
  overflow: visible;
}

#s-76a9ad24-a598-44de-9d1c-1d899869cf8a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-76a9ad24-a598-44de-9d1c-1d899869cf8a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-76a9ad24-a598-44de-9d1c-1d899869cf8a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-76a9ad24-a598-44de-9d1c-1d899869cf8a img.shogun-image {
  /* Add background color handling */
  
}

#s-76a9ad24-a598-44de-9d1c-1d899869cf8a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-76a9ad24-a598-44de-9d1c-1d899869cf8a .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-76a9ad24-a598-44de-9d1c-1d899869cf8a .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-76a9ad24-a598-44de-9d1c-1d899869cf8a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-76a9ad24-a598-44de-9d1c-1d899869cf8a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-76a9ad24-a598-44de-9d1c-1d899869cf8a .shogun-image-content {
  
    justify-content: center;
  
}

.s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image {
  box-sizing: border-box;
}



.s-76a9ad24-a598-44de-9d1c-1d899869cf8a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-76a9ad24-a598-44de-9d1c-1d899869cf8a {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image-container {
      position: relative;
    }

    .s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-76a9ad24-a598-44de-9d1c-1d899869cf8a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-76a9ad24-a598-44de-9d1c-1d899869cf8a {
  margin: 0 !important;
  overflow: visible;
}

#s-76a9ad24-a598-44de-9d1c-1d899869cf8a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-76a9ad24-a598-44de-9d1c-1d899869cf8a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-76a9ad24-a598-44de-9d1c-1d899869cf8a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-76a9ad24-a598-44de-9d1c-1d899869cf8a img.shogun-image {
  /* Add background color handling */
  
}

#s-76a9ad24-a598-44de-9d1c-1d899869cf8a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-76a9ad24-a598-44de-9d1c-1d899869cf8a .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-76a9ad24-a598-44de-9d1c-1d899869cf8a .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-76a9ad24-a598-44de-9d1c-1d899869cf8a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-76a9ad24-a598-44de-9d1c-1d899869cf8a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-76a9ad24-a598-44de-9d1c-1d899869cf8a .shogun-image-content {
  
    justify-content: center;
  
}

.s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image {
  box-sizing: border-box;
}



.s-76a9ad24-a598-44de-9d1c-1d899869cf8a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-76a9ad24-a598-44de-9d1c-1d899869cf8a {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image-container {
      position: relative;
    }

    .s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-76a9ad24-a598-44de-9d1c-1d899869cf8a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-76a9ad24-a598-44de-9d1c-1d899869cf8a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
@media (min-width: 0px) {
[id="s-95ba095a-995c-4abf-b944-05d7996c69db"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-95ba095a-995c-4abf-b944-05d7996c69db"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-95ba095a-995c-4abf-b944-05d7996c69db"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-95ba095a-995c-4abf-b944-05d7996c69db"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-79119628-6f45-457e-8dab-f2ae83c1da50"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-79119628-6f45-457e-8dab-f2ae83c1da50"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-79119628-6f45-457e-8dab-f2ae83c1da50"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-79119628-6f45-457e-8dab-f2ae83c1da50"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-79119628-6f45-457e-8dab-f2ae83c1da50"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-79119628-6f45-457e-8dab-f2ae83c1da50"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-79119628-6f45-457e-8dab-f2ae83c1da50"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-7ed65860-d8ef-4922-86ff-1cc04eba1324 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-be54289c-495c-4c69-a485-6be680d6e37a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-be54289c-495c-4c69-a485-6be680d6e37a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-be54289c-495c-4c69-a485-6be680d6e37a"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-be54289c-495c-4c69-a485-6be680d6e37a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-be54289c-495c-4c69-a485-6be680d6e37a"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-be54289c-495c-4c69-a485-6be680d6e37a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-be54289c-495c-4c69-a485-6be680d6e37a"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-d08a9a74-4241-4cc1-8476-7c43bba062e7 {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-44a3baba-6781-4d35-ba56-71fcd62a16db {
  min-height: 50px;
}








#s-44a3baba-6781-4d35-ba56-71fcd62a16db > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-44a3baba-6781-4d35-ba56-71fcd62a16db.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

#s-54dcc743-abb1-4420-9e22-e4d9973acbb0 {
  text-align: left;
}


  #s-54dcc743-abb1-4420-9e22-e4d9973acbb0 .shogun-tabs > li > .shogun-tab-box {
    background: #fff;
    border: 1px solid #DDDDDD;
  }
  #s-54dcc743-abb1-4420-9e22-e4d9973acbb0 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: #F4F4F4;
    border: 1px solid #ddd;
  }
#s-54dcc743-abb1-4420-9e22-e4d9973acbb0 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: #50b3da;
  font-family: Inter;
  font-weight: ;
  font-style: ;
  font-size: 18px;
}

#s-54dcc743-abb1-4420-9e22-e4d9973acbb0 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: #555;
}

#s-54dcc743-abb1-4420-9e22-e4d9973acbb0 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: #F4F4F4;
}

#s-54dcc743-abb1-4420-9e22-e4d9973acbb0 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid #ddd;
}

.shogun-video {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.shogun-video-16x9 {
  padding-bottom: 56.25%;
}

.shogun-video-4x3 {
  padding-bottom: 75%;
}

.shogun-video-embed {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#s-7990b9a7-0ca1-4312-88d7-0c44e565cbd7 {
  margin-left: 2%;
margin-right: 2%;
}

#s-94aebe11-e058-436a-9e24-146fd68fe996 {
  margin-left: 2%;
margin-right: 2%;
padding-top: 20px;
padding-bottom: 20px;
}

.shg-hr-wrapper {
  padding: 30px 0;
}

.shg-hr-wrapper hr {
  margin: 0;
  border: 0;
  width: 100%;
}

#s-0002a962-e966-44d7-9bc5-91622bc6468a {
  margin-top: -10px;
margin-bottom: -10px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-0002a962-e966-44d7-9bc5-91622bc6468a hr {
  border-top: 1px solid #ddd;
}

@media (min-width: 0px) {
[id="s-54f07ec6-433e-4c0d-82e1-b8bc28dd7064"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-54f07ec6-433e-4c0d-82e1-b8bc28dd7064"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-54f07ec6-433e-4c0d-82e1-b8bc28dd7064"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-54f07ec6-433e-4c0d-82e1-b8bc28dd7064"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-f3c6b00d-955a-40d2-a9bc-f3292ea5baa3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f3c6b00d-955a-40d2-a9bc-f3292ea5baa3"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f3c6b00d-955a-40d2-a9bc-f3292ea5baa3"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f3c6b00d-955a-40d2-a9bc-f3292ea5baa3"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f3c6b00d-955a-40d2-a9bc-f3292ea5baa3"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f3c6b00d-955a-40d2-a9bc-f3292ea5baa3"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f3c6b00d-955a-40d2-a9bc-f3292ea5baa3"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-8d67e77d-117a-494a-b8af-d92f02797d3d {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-5ded802c-eb22-4b8c-b9dd-7796b0cb011d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5ded802c-eb22-4b8c-b9dd-7796b0cb011d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5ded802c-eb22-4b8c-b9dd-7796b0cb011d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5ded802c-eb22-4b8c-b9dd-7796b0cb011d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5ded802c-eb22-4b8c-b9dd-7796b0cb011d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5ded802c-eb22-4b8c-b9dd-7796b0cb011d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5ded802c-eb22-4b8c-b9dd-7796b0cb011d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-3b9dd0ab-6207-487f-9003-08dad2142b7c {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-a0383624-1431-4cc4-ad41-8bfd7a00ba07"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a0383624-1431-4cc4-ad41-8bfd7a00ba07"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a0383624-1431-4cc4-ad41-8bfd7a00ba07"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a0383624-1431-4cc4-ad41-8bfd7a00ba07"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-b6d86c5f-d721-465e-af98-e39d52f28da3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b6d86c5f-d721-465e-af98-e39d52f28da3"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b6d86c5f-d721-465e-af98-e39d52f28da3"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b6d86c5f-d721-465e-af98-e39d52f28da3"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b6d86c5f-d721-465e-af98-e39d52f28da3"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b6d86c5f-d721-465e-af98-e39d52f28da3"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b6d86c5f-d721-465e-af98-e39d52f28da3"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-b3fcf6aa-6e26-458e-95a9-71825752c436 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-cd68be7c-49c2-4c32-937c-ef683000c508"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cd68be7c-49c2-4c32-937c-ef683000c508"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-cd68be7c-49c2-4c32-937c-ef683000c508"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-cd68be7c-49c2-4c32-937c-ef683000c508"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-cd68be7c-49c2-4c32-937c-ef683000c508"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-cd68be7c-49c2-4c32-937c-ef683000c508"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-cd68be7c-49c2-4c32-937c-ef683000c508"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-73b96165-4834-4166-af47-189c4f059171 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-c21ec234-9e12-407c-864a-b4452ccdaf93"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c21ec234-9e12-407c-864a-b4452ccdaf93"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c21ec234-9e12-407c-864a-b4452ccdaf93"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c21ec234-9e12-407c-864a-b4452ccdaf93"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-8bc5bf86-d67c-42fe-96b1-4aa316d3ebe4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8bc5bf86-d67c-42fe-96b1-4aa316d3ebe4"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8bc5bf86-d67c-42fe-96b1-4aa316d3ebe4"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8bc5bf86-d67c-42fe-96b1-4aa316d3ebe4"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8bc5bf86-d67c-42fe-96b1-4aa316d3ebe4"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8bc5bf86-d67c-42fe-96b1-4aa316d3ebe4"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8bc5bf86-d67c-42fe-96b1-4aa316d3ebe4"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-16630722-e17f-489a-a7e5-130defb30695 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-1c3c5624-e828-4277-9491-82a5cabb6b76"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1c3c5624-e828-4277-9491-82a5cabb6b76"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-1c3c5624-e828-4277-9491-82a5cabb6b76"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1c3c5624-e828-4277-9491-82a5cabb6b76"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-1c3c5624-e828-4277-9491-82a5cabb6b76"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1c3c5624-e828-4277-9491-82a5cabb6b76"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-1c3c5624-e828-4277-9491-82a5cabb6b76"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-c132b95e-0d25-4cff-9578-0cfcd2a03839 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-a73ed3b2-30f5-47e6-8a7c-f6da4ce07e43"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-a73ed3b2-30f5-47e6-8a7c-f6da4ce07e43"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-a73ed3b2-30f5-47e6-8a7c-f6da4ce07e43"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-a73ed3b2-30f5-47e6-8a7c-f6da4ce07e43"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image {
  box-sizing: border-box;
}



.s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image-container {
      position: relative;
    }

    .s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image {
  box-sizing: border-box;
}



.s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image-container {
      position: relative;
    }

    .s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 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-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image {
  box-sizing: border-box;
}



.s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image-container {
      position: relative;
    }

    .s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 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-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image {
  box-sizing: border-box;
}



.s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image-container {
      position: relative;
    }

    .s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image {
  box-sizing: border-box;
}



.s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image-container {
      position: relative;
    }

    .s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-af19dae9-ccd7-4ad1-af27-6456a01cc9d0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-914c659b-5fde-4783-9a48-80beacfebf06 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-914c659b-5fde-4783-9a48-80beacfebf06 {
  margin: 0 !important;
  overflow: visible;
}

#s-914c659b-5fde-4783-9a48-80beacfebf06-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-914c659b-5fde-4783-9a48-80beacfebf06 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-914c659b-5fde-4783-9a48-80beacfebf06 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-914c659b-5fde-4783-9a48-80beacfebf06 img.shogun-image {
  /* Add background color handling */
  
}

#s-914c659b-5fde-4783-9a48-80beacfebf06 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-914c659b-5fde-4783-9a48-80beacfebf06 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-914c659b-5fde-4783-9a48-80beacfebf06 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-914c659b-5fde-4783-9a48-80beacfebf06 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-914c659b-5fde-4783-9a48-80beacfebf06 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-914c659b-5fde-4783-9a48-80beacfebf06 .shogun-image-content {
  
    justify-content: center;
  
}

.s-914c659b-5fde-4783-9a48-80beacfebf06.shg-align-container {
  display: flex;
  justify-content: center
}

.s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image {
  box-sizing: border-box;
}



.s-914c659b-5fde-4783-9a48-80beacfebf06 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-914c659b-5fde-4783-9a48-80beacfebf06 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image-container {
      position: relative;
    }

    .s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-914c659b-5fde-4783-9a48-80beacfebf06 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-914c659b-5fde-4783-9a48-80beacfebf06 {
  margin: 0 !important;
  overflow: visible;
}

#s-914c659b-5fde-4783-9a48-80beacfebf06-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-914c659b-5fde-4783-9a48-80beacfebf06 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-914c659b-5fde-4783-9a48-80beacfebf06 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-914c659b-5fde-4783-9a48-80beacfebf06 img.shogun-image {
  /* Add background color handling */
  
}

#s-914c659b-5fde-4783-9a48-80beacfebf06 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-914c659b-5fde-4783-9a48-80beacfebf06 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-914c659b-5fde-4783-9a48-80beacfebf06 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-914c659b-5fde-4783-9a48-80beacfebf06 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-914c659b-5fde-4783-9a48-80beacfebf06 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-914c659b-5fde-4783-9a48-80beacfebf06 .shogun-image-content {
  
    justify-content: center;
  
}

.s-914c659b-5fde-4783-9a48-80beacfebf06.shg-align-container {
  display: flex;
  justify-content: center
}

.s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image {
  box-sizing: border-box;
}



.s-914c659b-5fde-4783-9a48-80beacfebf06 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-914c659b-5fde-4783-9a48-80beacfebf06 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image-container {
      position: relative;
    }

    .s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-914c659b-5fde-4783-9a48-80beacfebf06 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-914c659b-5fde-4783-9a48-80beacfebf06 {
  margin: 0 !important;
  overflow: visible;
}

#s-914c659b-5fde-4783-9a48-80beacfebf06-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-914c659b-5fde-4783-9a48-80beacfebf06 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-914c659b-5fde-4783-9a48-80beacfebf06 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-914c659b-5fde-4783-9a48-80beacfebf06 img.shogun-image {
  /* Add background color handling */
  
}

#s-914c659b-5fde-4783-9a48-80beacfebf06 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-914c659b-5fde-4783-9a48-80beacfebf06 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-914c659b-5fde-4783-9a48-80beacfebf06 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-914c659b-5fde-4783-9a48-80beacfebf06 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-914c659b-5fde-4783-9a48-80beacfebf06 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-914c659b-5fde-4783-9a48-80beacfebf06 .shogun-image-content {
  
    justify-content: center;
  
}

.s-914c659b-5fde-4783-9a48-80beacfebf06.shg-align-container {
  display: flex;
  justify-content: center
}

.s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image {
  box-sizing: border-box;
}



.s-914c659b-5fde-4783-9a48-80beacfebf06 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-914c659b-5fde-4783-9a48-80beacfebf06 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image-container {
      position: relative;
    }

    .s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-914c659b-5fde-4783-9a48-80beacfebf06 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-914c659b-5fde-4783-9a48-80beacfebf06 {
  margin: 0 !important;
  overflow: visible;
}

#s-914c659b-5fde-4783-9a48-80beacfebf06-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-914c659b-5fde-4783-9a48-80beacfebf06 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-914c659b-5fde-4783-9a48-80beacfebf06 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-914c659b-5fde-4783-9a48-80beacfebf06 img.shogun-image {
  /* Add background color handling */
  
}

#s-914c659b-5fde-4783-9a48-80beacfebf06 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-914c659b-5fde-4783-9a48-80beacfebf06 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-914c659b-5fde-4783-9a48-80beacfebf06 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-914c659b-5fde-4783-9a48-80beacfebf06 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-914c659b-5fde-4783-9a48-80beacfebf06 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-914c659b-5fde-4783-9a48-80beacfebf06 .shogun-image-content {
  
    justify-content: center;
  
}

.s-914c659b-5fde-4783-9a48-80beacfebf06.shg-align-container {
  display: flex;
  justify-content: center
}

.s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image {
  box-sizing: border-box;
}



.s-914c659b-5fde-4783-9a48-80beacfebf06 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-914c659b-5fde-4783-9a48-80beacfebf06 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image-container {
      position: relative;
    }

    .s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-914c659b-5fde-4783-9a48-80beacfebf06 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-914c659b-5fde-4783-9a48-80beacfebf06 {
  margin: 0 !important;
  overflow: visible;
}

#s-914c659b-5fde-4783-9a48-80beacfebf06-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-914c659b-5fde-4783-9a48-80beacfebf06 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-914c659b-5fde-4783-9a48-80beacfebf06 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-914c659b-5fde-4783-9a48-80beacfebf06 img.shogun-image {
  /* Add background color handling */
  
}

#s-914c659b-5fde-4783-9a48-80beacfebf06 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-914c659b-5fde-4783-9a48-80beacfebf06 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-914c659b-5fde-4783-9a48-80beacfebf06 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-914c659b-5fde-4783-9a48-80beacfebf06 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-914c659b-5fde-4783-9a48-80beacfebf06 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-914c659b-5fde-4783-9a48-80beacfebf06 .shogun-image-content {
  
    justify-content: center;
  
}

.s-914c659b-5fde-4783-9a48-80beacfebf06.shg-align-container {
  display: flex;
  justify-content: center
}

.s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image {
  box-sizing: border-box;
}



.s-914c659b-5fde-4783-9a48-80beacfebf06 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-914c659b-5fde-4783-9a48-80beacfebf06 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image-container {
      position: relative;
    }

    .s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-914c659b-5fde-4783-9a48-80beacfebf06.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-914c659b-5fde-4783-9a48-80beacfebf06 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-f981afcd-ac29-4064-aae2-c30d412bd16f {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-f981afcd-ac29-4064-aae2-c30d412bd16f {
  margin: 0 !important;
  overflow: visible;
}

#s-f981afcd-ac29-4064-aae2-c30d412bd16f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f981afcd-ac29-4064-aae2-c30d412bd16f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f981afcd-ac29-4064-aae2-c30d412bd16f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f981afcd-ac29-4064-aae2-c30d412bd16f img.shogun-image {
  /* Add background color handling */
  
}

#s-f981afcd-ac29-4064-aae2-c30d412bd16f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f981afcd-ac29-4064-aae2-c30d412bd16f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f981afcd-ac29-4064-aae2-c30d412bd16f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f981afcd-ac29-4064-aae2-c30d412bd16f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f981afcd-ac29-4064-aae2-c30d412bd16f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-f981afcd-ac29-4064-aae2-c30d412bd16f .shogun-image-content {
  
    justify-content: center;
  
}

.s-f981afcd-ac29-4064-aae2-c30d412bd16f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image {
  box-sizing: border-box;
}



.s-f981afcd-ac29-4064-aae2-c30d412bd16f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f981afcd-ac29-4064-aae2-c30d412bd16f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image-container {
      position: relative;
    }

    .s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f981afcd-ac29-4064-aae2-c30d412bd16f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-f981afcd-ac29-4064-aae2-c30d412bd16f {
  margin: 0 !important;
  overflow: visible;
}

#s-f981afcd-ac29-4064-aae2-c30d412bd16f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f981afcd-ac29-4064-aae2-c30d412bd16f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f981afcd-ac29-4064-aae2-c30d412bd16f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f981afcd-ac29-4064-aae2-c30d412bd16f img.shogun-image {
  /* Add background color handling */
  
}

#s-f981afcd-ac29-4064-aae2-c30d412bd16f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f981afcd-ac29-4064-aae2-c30d412bd16f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f981afcd-ac29-4064-aae2-c30d412bd16f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f981afcd-ac29-4064-aae2-c30d412bd16f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f981afcd-ac29-4064-aae2-c30d412bd16f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-f981afcd-ac29-4064-aae2-c30d412bd16f .shogun-image-content {
  
    justify-content: center;
  
}

.s-f981afcd-ac29-4064-aae2-c30d412bd16f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image {
  box-sizing: border-box;
}



.s-f981afcd-ac29-4064-aae2-c30d412bd16f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f981afcd-ac29-4064-aae2-c30d412bd16f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image-container {
      position: relative;
    }

    .s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f981afcd-ac29-4064-aae2-c30d412bd16f 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-f981afcd-ac29-4064-aae2-c30d412bd16f {
  margin: 0 !important;
  overflow: visible;
}

#s-f981afcd-ac29-4064-aae2-c30d412bd16f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f981afcd-ac29-4064-aae2-c30d412bd16f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f981afcd-ac29-4064-aae2-c30d412bd16f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f981afcd-ac29-4064-aae2-c30d412bd16f img.shogun-image {
  /* Add background color handling */
  
}

#s-f981afcd-ac29-4064-aae2-c30d412bd16f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f981afcd-ac29-4064-aae2-c30d412bd16f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f981afcd-ac29-4064-aae2-c30d412bd16f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f981afcd-ac29-4064-aae2-c30d412bd16f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f981afcd-ac29-4064-aae2-c30d412bd16f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-f981afcd-ac29-4064-aae2-c30d412bd16f .shogun-image-content {
  
    justify-content: center;
  
}

.s-f981afcd-ac29-4064-aae2-c30d412bd16f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image {
  box-sizing: border-box;
}



.s-f981afcd-ac29-4064-aae2-c30d412bd16f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f981afcd-ac29-4064-aae2-c30d412bd16f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image-container {
      position: relative;
    }

    .s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f981afcd-ac29-4064-aae2-c30d412bd16f 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-f981afcd-ac29-4064-aae2-c30d412bd16f {
  margin: 0 !important;
  overflow: visible;
}

#s-f981afcd-ac29-4064-aae2-c30d412bd16f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f981afcd-ac29-4064-aae2-c30d412bd16f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f981afcd-ac29-4064-aae2-c30d412bd16f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f981afcd-ac29-4064-aae2-c30d412bd16f img.shogun-image {
  /* Add background color handling */
  
}

#s-f981afcd-ac29-4064-aae2-c30d412bd16f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f981afcd-ac29-4064-aae2-c30d412bd16f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f981afcd-ac29-4064-aae2-c30d412bd16f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f981afcd-ac29-4064-aae2-c30d412bd16f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f981afcd-ac29-4064-aae2-c30d412bd16f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-f981afcd-ac29-4064-aae2-c30d412bd16f .shogun-image-content {
  
    justify-content: center;
  
}

.s-f981afcd-ac29-4064-aae2-c30d412bd16f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image {
  box-sizing: border-box;
}



.s-f981afcd-ac29-4064-aae2-c30d412bd16f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f981afcd-ac29-4064-aae2-c30d412bd16f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image-container {
      position: relative;
    }

    .s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f981afcd-ac29-4064-aae2-c30d412bd16f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-f981afcd-ac29-4064-aae2-c30d412bd16f {
  margin: 0 !important;
  overflow: visible;
}

#s-f981afcd-ac29-4064-aae2-c30d412bd16f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f981afcd-ac29-4064-aae2-c30d412bd16f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f981afcd-ac29-4064-aae2-c30d412bd16f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f981afcd-ac29-4064-aae2-c30d412bd16f img.shogun-image {
  /* Add background color handling */
  
}

#s-f981afcd-ac29-4064-aae2-c30d412bd16f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f981afcd-ac29-4064-aae2-c30d412bd16f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f981afcd-ac29-4064-aae2-c30d412bd16f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f981afcd-ac29-4064-aae2-c30d412bd16f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f981afcd-ac29-4064-aae2-c30d412bd16f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-f981afcd-ac29-4064-aae2-c30d412bd16f .shogun-image-content {
  
    justify-content: center;
  
}

.s-f981afcd-ac29-4064-aae2-c30d412bd16f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image {
  box-sizing: border-box;
}



.s-f981afcd-ac29-4064-aae2-c30d412bd16f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f981afcd-ac29-4064-aae2-c30d412bd16f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image-container {
      position: relative;
    }

    .s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f981afcd-ac29-4064-aae2-c30d412bd16f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f981afcd-ac29-4064-aae2-c30d412bd16f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 {
  margin: 0 !important;
  overflow: visible;
}

#s-d23e357f-db0d-453d-8aef-93ecd0b36ab9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 img.shogun-image {
  /* Add background color handling */
  
}

#s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image {
  box-sizing: border-box;
}



.s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image-container {
      position: relative;
    }

    .s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 {
  margin: 0 !important;
  overflow: visible;
}

#s-d23e357f-db0d-453d-8aef-93ecd0b36ab9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 img.shogun-image {
  /* Add background color handling */
  
}

#s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image {
  box-sizing: border-box;
}



.s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image-container {
      position: relative;
    }

    .s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 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-d23e357f-db0d-453d-8aef-93ecd0b36ab9 {
  margin: 0 !important;
  overflow: visible;
}

#s-d23e357f-db0d-453d-8aef-93ecd0b36ab9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 img.shogun-image {
  /* Add background color handling */
  
}

#s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image {
  box-sizing: border-box;
}



.s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image-container {
      position: relative;
    }

    .s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 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-d23e357f-db0d-453d-8aef-93ecd0b36ab9 {
  margin: 0 !important;
  overflow: visible;
}

#s-d23e357f-db0d-453d-8aef-93ecd0b36ab9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 img.shogun-image {
  /* Add background color handling */
  
}

#s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image {
  box-sizing: border-box;
}



.s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image-container {
      position: relative;
    }

    .s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 {
  margin: 0 !important;
  overflow: visible;
}

#s-d23e357f-db0d-453d-8aef-93ecd0b36ab9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 img.shogun-image {
  /* Add background color handling */
  
}

#s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image {
  box-sizing: border-box;
}



.s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image-container {
      position: relative;
    }

    .s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d23e357f-db0d-453d-8aef-93ecd0b36ab9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d23e357f-db0d-453d-8aef-93ecd0b36ab9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
@media (min-width: 0px) {
[id="s-7d744441-e832-400c-8ad5-d76161f48532"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7d744441-e832-400c-8ad5-d76161f48532"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7d744441-e832-400c-8ad5-d76161f48532"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7d744441-e832-400c-8ad5-d76161f48532"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-b2572703-c6af-4568-aa60-a7a0e309409e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b2572703-c6af-4568-aa60-a7a0e309409e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b2572703-c6af-4568-aa60-a7a0e309409e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b2572703-c6af-4568-aa60-a7a0e309409e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b2572703-c6af-4568-aa60-a7a0e309409e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b2572703-c6af-4568-aa60-a7a0e309409e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b2572703-c6af-4568-aa60-a7a0e309409e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-a026d6b1-f251-4f76-8f6f-1840e26ab004 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-20b62e02-513a-4436-ae72-c9d1659f3917"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-20b62e02-513a-4436-ae72-c9d1659f3917"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-20b62e02-513a-4436-ae72-c9d1659f3917"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-20b62e02-513a-4436-ae72-c9d1659f3917"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-20b62e02-513a-4436-ae72-c9d1659f3917"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-20b62e02-513a-4436-ae72-c9d1659f3917"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-20b62e02-513a-4436-ae72-c9d1659f3917"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-04166d96-5932-4755-aa8a-e06998cdf1fb {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-77529620-667f-4e2d-8b42-cd632fc0874f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-77529620-667f-4e2d-8b42-cd632fc0874f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-77529620-667f-4e2d-8b42-cd632fc0874f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-77529620-667f-4e2d-8b42-cd632fc0874f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-77529620-667f-4e2d-8b42-cd632fc0874f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-77529620-667f-4e2d-8b42-cd632fc0874f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-77529620-667f-4e2d-8b42-cd632fc0874f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

#s-f6d74f76-2ff2-4645-9f25-3a427e529c9b {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 0%;
padding-right: 0%;
}

#s-b5dcbd14-c684-4870-ad1a-39c52240302c {
  margin-left: 4%;
margin-right: 4%;
padding-top: 20px;
padding-left: 1%;
padding-bottom: 20px;
padding-right: 1%;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  max-width: 1920px;
aspect-ratio: 1920/1095;
text-align: center;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  margin: 0 !important;
  overflow: visible;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  /* Add background color handling */
  
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shogun-image-content {
  
    justify-content: center;
  
}

.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image {
  box-sizing: border-box;
}



.s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
      position: relative;
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

@media (min-width: 1200px){#s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  margin: 0 !important;
  overflow: visible;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  /* Add background color handling */
  
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shogun-image-content {
  
    justify-content: center;
  
}

.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image {
  box-sizing: border-box;
}



.s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
      position: relative;
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  margin: 0 !important;
  overflow: visible;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  /* Add background color handling */
  
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shogun-image-content {
  
    justify-content: center;
  
}

.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image {
  box-sizing: border-box;
}



.s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
      position: relative;
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  margin: 0 !important;
  overflow: visible;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  /* Add background color handling */
  
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shogun-image-content {
  
    justify-content: center;
  
}

.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image {
  box-sizing: border-box;
}



.s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
      position: relative;
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (max-width: 767px){#s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  margin: 0 !important;
  overflow: visible;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  /* Add background color handling */
  
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shogun-image-content {
  
    justify-content: center;
  
}

.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image {
  box-sizing: border-box;
}



.s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
      position: relative;
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}
@media (min-width: 0px) {
[id="s-1014e317-82af-420a-9e10-141e51bb6d42"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1014e317-82af-420a-9e10-141e51bb6d42"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1014e317-82af-420a-9e10-141e51bb6d42"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1014e317-82af-420a-9e10-141e51bb6d42"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-2f933587-de3d-4e21-aa3c-b2ec5c1df164"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2f933587-de3d-4e21-aa3c-b2ec5c1df164"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2f933587-de3d-4e21-aa3c-b2ec5c1df164"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2f933587-de3d-4e21-aa3c-b2ec5c1df164"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2f933587-de3d-4e21-aa3c-b2ec5c1df164"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2f933587-de3d-4e21-aa3c-b2ec5c1df164"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2f933587-de3d-4e21-aa3c-b2ec5c1df164"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-8ee8c2e8-0b12-4822-93c5-925fc50e4c6f {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-c7a6fcdd-f33d-411d-98c8-d5454e3fe459"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c7a6fcdd-f33d-411d-98c8-d5454e3fe459"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c7a6fcdd-f33d-411d-98c8-d5454e3fe459"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c7a6fcdd-f33d-411d-98c8-d5454e3fe459"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c7a6fcdd-f33d-411d-98c8-d5454e3fe459"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c7a6fcdd-f33d-411d-98c8-d5454e3fe459"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c7a6fcdd-f33d-411d-98c8-d5454e3fe459"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-c6e23a3e-40d7-4968-a8fb-14ac54bba181 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-3cdc49c3-42e3-49e3-87fe-7311bea84fd8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3cdc49c3-42e3-49e3-87fe-7311bea84fd8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3cdc49c3-42e3-49e3-87fe-7311bea84fd8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3cdc49c3-42e3-49e3-87fe-7311bea84fd8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-ecd88b04-2690-4470-9577-893d8efbc2e4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ecd88b04-2690-4470-9577-893d8efbc2e4"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ecd88b04-2690-4470-9577-893d8efbc2e4"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ecd88b04-2690-4470-9577-893d8efbc2e4"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ecd88b04-2690-4470-9577-893d8efbc2e4"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ecd88b04-2690-4470-9577-893d8efbc2e4"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ecd88b04-2690-4470-9577-893d8efbc2e4"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-7cf078cc-98b8-4e02-b93e-7cda4cb1ec4c {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-36da04e5-fab1-49bb-abce-813a978336f9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-36da04e5-fab1-49bb-abce-813a978336f9"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-36da04e5-fab1-49bb-abce-813a978336f9"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-36da04e5-fab1-49bb-abce-813a978336f9"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-36da04e5-fab1-49bb-abce-813a978336f9"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-36da04e5-fab1-49bb-abce-813a978336f9"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-36da04e5-fab1-49bb-abce-813a978336f9"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-84f9dd95-4c70-4814-ab78-00cb5c7f9b1e {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-07f5cc5b-0f2c-4852-b8b7-ac80da200e63"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-07f5cc5b-0f2c-4852-b8b7-ac80da200e63"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-07f5cc5b-0f2c-4852-b8b7-ac80da200e63"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-07f5cc5b-0f2c-4852-b8b7-ac80da200e63"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-ad4d97fa-7f99-49b8-bd26-2bf60e17d75c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ad4d97fa-7f99-49b8-bd26-2bf60e17d75c"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ad4d97fa-7f99-49b8-bd26-2bf60e17d75c"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ad4d97fa-7f99-49b8-bd26-2bf60e17d75c"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ad4d97fa-7f99-49b8-bd26-2bf60e17d75c"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ad4d97fa-7f99-49b8-bd26-2bf60e17d75c"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ad4d97fa-7f99-49b8-bd26-2bf60e17d75c"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-87dcd509-0c53-4563-95b0-13166e954733 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-d4ae824e-ef90-46bc-8844-f2ad9a6e274c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d4ae824e-ef90-46bc-8844-f2ad9a6e274c"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d4ae824e-ef90-46bc-8844-f2ad9a6e274c"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d4ae824e-ef90-46bc-8844-f2ad9a6e274c"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d4ae824e-ef90-46bc-8844-f2ad9a6e274c"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d4ae824e-ef90-46bc-8844-f2ad9a6e274c"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d4ae824e-ef90-46bc-8844-f2ad9a6e274c"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-6da7b166-1538-457b-bd9e-374af2ba6c44 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-555c7d42-b190-4e2c-97d3-95c7fd342338"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-555c7d42-b190-4e2c-97d3-95c7fd342338"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-555c7d42-b190-4e2c-97d3-95c7fd342338"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-555c7d42-b190-4e2c-97d3-95c7fd342338"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-d9665faf-d667-487a-9b5e-7c45657939b2 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-d9665faf-d667-487a-9b5e-7c45657939b2 {
  margin: 0 !important;
  overflow: visible;
}

#s-d9665faf-d667-487a-9b5e-7c45657939b2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d9665faf-d667-487a-9b5e-7c45657939b2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d9665faf-d667-487a-9b5e-7c45657939b2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d9665faf-d667-487a-9b5e-7c45657939b2 img.shogun-image {
  /* Add background color handling */
  
}

#s-d9665faf-d667-487a-9b5e-7c45657939b2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d9665faf-d667-487a-9b5e-7c45657939b2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d9665faf-d667-487a-9b5e-7c45657939b2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d9665faf-d667-487a-9b5e-7c45657939b2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d9665faf-d667-487a-9b5e-7c45657939b2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-d9665faf-d667-487a-9b5e-7c45657939b2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d9665faf-d667-487a-9b5e-7c45657939b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image {
  box-sizing: border-box;
}



.s-d9665faf-d667-487a-9b5e-7c45657939b2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d9665faf-d667-487a-9b5e-7c45657939b2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image-container {
      position: relative;
    }

    .s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d9665faf-d667-487a-9b5e-7c45657939b2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-d9665faf-d667-487a-9b5e-7c45657939b2 {
  margin: 0 !important;
  overflow: visible;
}

#s-d9665faf-d667-487a-9b5e-7c45657939b2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d9665faf-d667-487a-9b5e-7c45657939b2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d9665faf-d667-487a-9b5e-7c45657939b2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d9665faf-d667-487a-9b5e-7c45657939b2 img.shogun-image {
  /* Add background color handling */
  
}

#s-d9665faf-d667-487a-9b5e-7c45657939b2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d9665faf-d667-487a-9b5e-7c45657939b2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d9665faf-d667-487a-9b5e-7c45657939b2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d9665faf-d667-487a-9b5e-7c45657939b2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d9665faf-d667-487a-9b5e-7c45657939b2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-d9665faf-d667-487a-9b5e-7c45657939b2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d9665faf-d667-487a-9b5e-7c45657939b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image {
  box-sizing: border-box;
}



.s-d9665faf-d667-487a-9b5e-7c45657939b2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d9665faf-d667-487a-9b5e-7c45657939b2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image-container {
      position: relative;
    }

    .s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d9665faf-d667-487a-9b5e-7c45657939b2 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-d9665faf-d667-487a-9b5e-7c45657939b2 {
  margin: 0 !important;
  overflow: visible;
}

#s-d9665faf-d667-487a-9b5e-7c45657939b2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d9665faf-d667-487a-9b5e-7c45657939b2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d9665faf-d667-487a-9b5e-7c45657939b2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d9665faf-d667-487a-9b5e-7c45657939b2 img.shogun-image {
  /* Add background color handling */
  
}

#s-d9665faf-d667-487a-9b5e-7c45657939b2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d9665faf-d667-487a-9b5e-7c45657939b2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d9665faf-d667-487a-9b5e-7c45657939b2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d9665faf-d667-487a-9b5e-7c45657939b2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d9665faf-d667-487a-9b5e-7c45657939b2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-d9665faf-d667-487a-9b5e-7c45657939b2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d9665faf-d667-487a-9b5e-7c45657939b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image {
  box-sizing: border-box;
}



.s-d9665faf-d667-487a-9b5e-7c45657939b2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d9665faf-d667-487a-9b5e-7c45657939b2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image-container {
      position: relative;
    }

    .s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d9665faf-d667-487a-9b5e-7c45657939b2 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-d9665faf-d667-487a-9b5e-7c45657939b2 {
  margin: 0 !important;
  overflow: visible;
}

#s-d9665faf-d667-487a-9b5e-7c45657939b2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d9665faf-d667-487a-9b5e-7c45657939b2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d9665faf-d667-487a-9b5e-7c45657939b2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d9665faf-d667-487a-9b5e-7c45657939b2 img.shogun-image {
  /* Add background color handling */
  
}

#s-d9665faf-d667-487a-9b5e-7c45657939b2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d9665faf-d667-487a-9b5e-7c45657939b2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d9665faf-d667-487a-9b5e-7c45657939b2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d9665faf-d667-487a-9b5e-7c45657939b2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d9665faf-d667-487a-9b5e-7c45657939b2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-d9665faf-d667-487a-9b5e-7c45657939b2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d9665faf-d667-487a-9b5e-7c45657939b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image {
  box-sizing: border-box;
}



.s-d9665faf-d667-487a-9b5e-7c45657939b2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d9665faf-d667-487a-9b5e-7c45657939b2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image-container {
      position: relative;
    }

    .s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d9665faf-d667-487a-9b5e-7c45657939b2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-d9665faf-d667-487a-9b5e-7c45657939b2 {
  margin: 0 !important;
  overflow: visible;
}

#s-d9665faf-d667-487a-9b5e-7c45657939b2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d9665faf-d667-487a-9b5e-7c45657939b2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d9665faf-d667-487a-9b5e-7c45657939b2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d9665faf-d667-487a-9b5e-7c45657939b2 img.shogun-image {
  /* Add background color handling */
  
}

#s-d9665faf-d667-487a-9b5e-7c45657939b2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d9665faf-d667-487a-9b5e-7c45657939b2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d9665faf-d667-487a-9b5e-7c45657939b2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d9665faf-d667-487a-9b5e-7c45657939b2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d9665faf-d667-487a-9b5e-7c45657939b2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-d9665faf-d667-487a-9b5e-7c45657939b2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d9665faf-d667-487a-9b5e-7c45657939b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image {
  box-sizing: border-box;
}



.s-d9665faf-d667-487a-9b5e-7c45657939b2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d9665faf-d667-487a-9b5e-7c45657939b2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image-container {
      position: relative;
    }

    .s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d9665faf-d667-487a-9b5e-7c45657939b2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d9665faf-d667-487a-9b5e-7c45657939b2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-f456cefa-9922-4670-880e-80fa56d7489f {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-f456cefa-9922-4670-880e-80fa56d7489f {
  margin: 0 !important;
  overflow: visible;
}

#s-f456cefa-9922-4670-880e-80fa56d7489f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f456cefa-9922-4670-880e-80fa56d7489f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f456cefa-9922-4670-880e-80fa56d7489f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f456cefa-9922-4670-880e-80fa56d7489f img.shogun-image {
  /* Add background color handling */
  
}

#s-f456cefa-9922-4670-880e-80fa56d7489f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f456cefa-9922-4670-880e-80fa56d7489f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f456cefa-9922-4670-880e-80fa56d7489f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f456cefa-9922-4670-880e-80fa56d7489f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f456cefa-9922-4670-880e-80fa56d7489f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-f456cefa-9922-4670-880e-80fa56d7489f .shogun-image-content {
  
    justify-content: center;
  
}

.s-f456cefa-9922-4670-880e-80fa56d7489f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image {
  box-sizing: border-box;
}



.s-f456cefa-9922-4670-880e-80fa56d7489f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f456cefa-9922-4670-880e-80fa56d7489f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image-container {
      position: relative;
    }

    .s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f456cefa-9922-4670-880e-80fa56d7489f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-f456cefa-9922-4670-880e-80fa56d7489f {
  margin: 0 !important;
  overflow: visible;
}

#s-f456cefa-9922-4670-880e-80fa56d7489f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f456cefa-9922-4670-880e-80fa56d7489f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f456cefa-9922-4670-880e-80fa56d7489f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f456cefa-9922-4670-880e-80fa56d7489f img.shogun-image {
  /* Add background color handling */
  
}

#s-f456cefa-9922-4670-880e-80fa56d7489f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f456cefa-9922-4670-880e-80fa56d7489f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f456cefa-9922-4670-880e-80fa56d7489f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f456cefa-9922-4670-880e-80fa56d7489f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f456cefa-9922-4670-880e-80fa56d7489f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-f456cefa-9922-4670-880e-80fa56d7489f .shogun-image-content {
  
    justify-content: center;
  
}

.s-f456cefa-9922-4670-880e-80fa56d7489f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image {
  box-sizing: border-box;
}



.s-f456cefa-9922-4670-880e-80fa56d7489f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f456cefa-9922-4670-880e-80fa56d7489f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image-container {
      position: relative;
    }

    .s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f456cefa-9922-4670-880e-80fa56d7489f 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-f456cefa-9922-4670-880e-80fa56d7489f {
  margin: 0 !important;
  overflow: visible;
}

#s-f456cefa-9922-4670-880e-80fa56d7489f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f456cefa-9922-4670-880e-80fa56d7489f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f456cefa-9922-4670-880e-80fa56d7489f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f456cefa-9922-4670-880e-80fa56d7489f img.shogun-image {
  /* Add background color handling */
  
}

#s-f456cefa-9922-4670-880e-80fa56d7489f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f456cefa-9922-4670-880e-80fa56d7489f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f456cefa-9922-4670-880e-80fa56d7489f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f456cefa-9922-4670-880e-80fa56d7489f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f456cefa-9922-4670-880e-80fa56d7489f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-f456cefa-9922-4670-880e-80fa56d7489f .shogun-image-content {
  
    justify-content: center;
  
}

.s-f456cefa-9922-4670-880e-80fa56d7489f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image {
  box-sizing: border-box;
}



.s-f456cefa-9922-4670-880e-80fa56d7489f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f456cefa-9922-4670-880e-80fa56d7489f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image-container {
      position: relative;
    }

    .s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f456cefa-9922-4670-880e-80fa56d7489f 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-f456cefa-9922-4670-880e-80fa56d7489f {
  margin: 0 !important;
  overflow: visible;
}

#s-f456cefa-9922-4670-880e-80fa56d7489f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f456cefa-9922-4670-880e-80fa56d7489f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f456cefa-9922-4670-880e-80fa56d7489f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f456cefa-9922-4670-880e-80fa56d7489f img.shogun-image {
  /* Add background color handling */
  
}

#s-f456cefa-9922-4670-880e-80fa56d7489f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f456cefa-9922-4670-880e-80fa56d7489f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f456cefa-9922-4670-880e-80fa56d7489f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f456cefa-9922-4670-880e-80fa56d7489f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f456cefa-9922-4670-880e-80fa56d7489f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-f456cefa-9922-4670-880e-80fa56d7489f .shogun-image-content {
  
    justify-content: center;
  
}

.s-f456cefa-9922-4670-880e-80fa56d7489f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image {
  box-sizing: border-box;
}



.s-f456cefa-9922-4670-880e-80fa56d7489f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f456cefa-9922-4670-880e-80fa56d7489f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image-container {
      position: relative;
    }

    .s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f456cefa-9922-4670-880e-80fa56d7489f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-f456cefa-9922-4670-880e-80fa56d7489f {
  margin: 0 !important;
  overflow: visible;
}

#s-f456cefa-9922-4670-880e-80fa56d7489f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f456cefa-9922-4670-880e-80fa56d7489f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f456cefa-9922-4670-880e-80fa56d7489f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f456cefa-9922-4670-880e-80fa56d7489f img.shogun-image {
  /* Add background color handling */
  
}

#s-f456cefa-9922-4670-880e-80fa56d7489f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f456cefa-9922-4670-880e-80fa56d7489f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f456cefa-9922-4670-880e-80fa56d7489f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f456cefa-9922-4670-880e-80fa56d7489f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f456cefa-9922-4670-880e-80fa56d7489f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-f456cefa-9922-4670-880e-80fa56d7489f .shogun-image-content {
  
    justify-content: center;
  
}

.s-f456cefa-9922-4670-880e-80fa56d7489f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image {
  box-sizing: border-box;
}



.s-f456cefa-9922-4670-880e-80fa56d7489f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f456cefa-9922-4670-880e-80fa56d7489f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image-container {
      position: relative;
    }

    .s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f456cefa-9922-4670-880e-80fa56d7489f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f456cefa-9922-4670-880e-80fa56d7489f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 {
  margin: 0 !important;
  overflow: visible;
}

#s-dffc32b0-e18d-45c2-bc3d-c0147cc72707-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 img.shogun-image {
  /* Add background color handling */
  
}

#s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 .shogun-image-content {
  
    justify-content: center;
  
}

.s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image {
  box-sizing: border-box;
}



.s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image-container {
      position: relative;
    }

    .s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 {
  margin: 0 !important;
  overflow: visible;
}

#s-dffc32b0-e18d-45c2-bc3d-c0147cc72707-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 img.shogun-image {
  /* Add background color handling */
  
}

#s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 .shogun-image-content {
  
    justify-content: center;
  
}

.s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image {
  box-sizing: border-box;
}



.s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image-container {
      position: relative;
    }

    .s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 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-dffc32b0-e18d-45c2-bc3d-c0147cc72707 {
  margin: 0 !important;
  overflow: visible;
}

#s-dffc32b0-e18d-45c2-bc3d-c0147cc72707-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 img.shogun-image {
  /* Add background color handling */
  
}

#s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 .shogun-image-content {
  
    justify-content: center;
  
}

.s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image {
  box-sizing: border-box;
}



.s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image-container {
      position: relative;
    }

    .s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 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-dffc32b0-e18d-45c2-bc3d-c0147cc72707 {
  margin: 0 !important;
  overflow: visible;
}

#s-dffc32b0-e18d-45c2-bc3d-c0147cc72707-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 img.shogun-image {
  /* Add background color handling */
  
}

#s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 .shogun-image-content {
  
    justify-content: center;
  
}

.s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image {
  box-sizing: border-box;
}



.s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image-container {
      position: relative;
    }

    .s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 {
  margin: 0 !important;
  overflow: visible;
}

#s-dffc32b0-e18d-45c2-bc3d-c0147cc72707-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 img.shogun-image {
  /* Add background color handling */
  
}

#s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 .shogun-image-content {
  
    justify-content: center;
  
}

.s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image {
  box-sizing: border-box;
}



.s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image-container {
      position: relative;
    }

    .s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dffc32b0-e18d-45c2-bc3d-c0147cc72707.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dffc32b0-e18d-45c2-bc3d-c0147cc72707 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe {
  margin: 0 !important;
  overflow: visible;
}

#s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe img.shogun-image {
  /* Add background color handling */
  
}

#s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe .shogun-image-content {
  
    justify-content: center;
  
}

.s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image {
  box-sizing: border-box;
}



.s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image-container {
      position: relative;
    }

    .s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe {
  margin: 0 !important;
  overflow: visible;
}

#s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe img.shogun-image {
  /* Add background color handling */
  
}

#s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe .shogun-image-content {
  
    justify-content: center;
  
}

.s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image {
  box-sizing: border-box;
}



.s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image-container {
      position: relative;
    }

    .s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe 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-b944d341-bd1e-4c68-afbe-e8cec5dd60fe {
  margin: 0 !important;
  overflow: visible;
}

#s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe img.shogun-image {
  /* Add background color handling */
  
}

#s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe .shogun-image-content {
  
    justify-content: center;
  
}

.s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image {
  box-sizing: border-box;
}



.s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image-container {
      position: relative;
    }

    .s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe 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-b944d341-bd1e-4c68-afbe-e8cec5dd60fe {
  margin: 0 !important;
  overflow: visible;
}

#s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe img.shogun-image {
  /* Add background color handling */
  
}

#s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe .shogun-image-content {
  
    justify-content: center;
  
}

.s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image {
  box-sizing: border-box;
}



.s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image-container {
      position: relative;
    }

    .s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe {
  margin: 0 !important;
  overflow: visible;
}

#s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe img.shogun-image {
  /* Add background color handling */
  
}

#s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe .shogun-image-content {
  
    justify-content: center;
  
}

.s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image {
  box-sizing: border-box;
}



.s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image-container {
      position: relative;
    }

    .s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b944d341-bd1e-4c68-afbe-e8cec5dd60fe img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
@media (min-width: 0px) {
[id="s-0383d8a7-d7d1-4b29-b69e-e7da3cdb4140"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0383d8a7-d7d1-4b29-b69e-e7da3cdb4140"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0383d8a7-d7d1-4b29-b69e-e7da3cdb4140"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0383d8a7-d7d1-4b29-b69e-e7da3cdb4140"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-62c6e3ca-3bb5-400c-85e3-389f2c28876e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-62c6e3ca-3bb5-400c-85e3-389f2c28876e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-62c6e3ca-3bb5-400c-85e3-389f2c28876e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-62c6e3ca-3bb5-400c-85e3-389f2c28876e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-62c6e3ca-3bb5-400c-85e3-389f2c28876e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-62c6e3ca-3bb5-400c-85e3-389f2c28876e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-62c6e3ca-3bb5-400c-85e3-389f2c28876e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-a82bb476-5d1f-479f-9788-f93b8bb63e97 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-6454a5aa-8752-4536-8fe9-f8750c34a6e9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6454a5aa-8752-4536-8fe9-f8750c34a6e9"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6454a5aa-8752-4536-8fe9-f8750c34a6e9"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6454a5aa-8752-4536-8fe9-f8750c34a6e9"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6454a5aa-8752-4536-8fe9-f8750c34a6e9"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6454a5aa-8752-4536-8fe9-f8750c34a6e9"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6454a5aa-8752-4536-8fe9-f8750c34a6e9"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-f020403b-f252-4882-b5f4-100174e6651d {
  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-ddc34d3a-bcb9-469e-a166-dd9885badf52"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ddc34d3a-bcb9-469e-a166-dd9885badf52"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ddc34d3a-bcb9-469e-a166-dd9885badf52"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ddc34d3a-bcb9-469e-a166-dd9885badf52"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-ae19f9b9-636a-4f0c-a1e1-0d8114e435fd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ae19f9b9-636a-4f0c-a1e1-0d8114e435fd"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ae19f9b9-636a-4f0c-a1e1-0d8114e435fd"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ae19f9b9-636a-4f0c-a1e1-0d8114e435fd"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ae19f9b9-636a-4f0c-a1e1-0d8114e435fd"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ae19f9b9-636a-4f0c-a1e1-0d8114e435fd"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ae19f9b9-636a-4f0c-a1e1-0d8114e435fd"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-d14e544a-b328-4a40-b373-882dea66e39d {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-764f8621-1c0d-4bf6-9258-fcf7954c524e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-764f8621-1c0d-4bf6-9258-fcf7954c524e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-764f8621-1c0d-4bf6-9258-fcf7954c524e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-764f8621-1c0d-4bf6-9258-fcf7954c524e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-764f8621-1c0d-4bf6-9258-fcf7954c524e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-764f8621-1c0d-4bf6-9258-fcf7954c524e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-764f8621-1c0d-4bf6-9258-fcf7954c524e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-732bc6cc-d5cf-4ddc-a7ad-c332e7244495 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-ce5cd649-7c47-4247-8f18-6082cfe36beb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ce5cd649-7c47-4247-8f18-6082cfe36beb"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ce5cd649-7c47-4247-8f18-6082cfe36beb"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ce5cd649-7c47-4247-8f18-6082cfe36beb"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-34e8d9b5-38ca-4bd4-a284-ea8bc692ab50"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-34e8d9b5-38ca-4bd4-a284-ea8bc692ab50"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-34e8d9b5-38ca-4bd4-a284-ea8bc692ab50"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-34e8d9b5-38ca-4bd4-a284-ea8bc692ab50"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-34e8d9b5-38ca-4bd4-a284-ea8bc692ab50"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-34e8d9b5-38ca-4bd4-a284-ea8bc692ab50"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-34e8d9b5-38ca-4bd4-a284-ea8bc692ab50"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-17666dbe-1f91-4b45-90d0-4d1965ffb9bb {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-3297d3b5-8975-4480-871d-da7fec9e4a14"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3297d3b5-8975-4480-871d-da7fec9e4a14"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3297d3b5-8975-4480-871d-da7fec9e4a14"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3297d3b5-8975-4480-871d-da7fec9e4a14"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3297d3b5-8975-4480-871d-da7fec9e4a14"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3297d3b5-8975-4480-871d-da7fec9e4a14"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3297d3b5-8975-4480-871d-da7fec9e4a14"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-b2c36446-3788-4981-b79a-64033fd5363a {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-62828270-fa83-4265-a4c8-a24aca84a240"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-62828270-fa83-4265-a4c8-a24aca84a240"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-62828270-fa83-4265-a4c8-a24aca84a240"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-62828270-fa83-4265-a4c8-a24aca84a240"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-0b0250a1-0850-41ec-a79b-6dd990985935"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0b0250a1-0850-41ec-a79b-6dd990985935"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-0b0250a1-0850-41ec-a79b-6dd990985935"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0b0250a1-0850-41ec-a79b-6dd990985935"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-0b0250a1-0850-41ec-a79b-6dd990985935"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0b0250a1-0850-41ec-a79b-6dd990985935"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-0b0250a1-0850-41ec-a79b-6dd990985935"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-8199c7c0-0e2e-4d39-bb36-bdcf0410b5b1 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-6a03141c-290f-4b5b-b895-8c1be72fd16b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6a03141c-290f-4b5b-b895-8c1be72fd16b"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-6a03141c-290f-4b5b-b895-8c1be72fd16b"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6a03141c-290f-4b5b-b895-8c1be72fd16b"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-6a03141c-290f-4b5b-b895-8c1be72fd16b"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6a03141c-290f-4b5b-b895-8c1be72fd16b"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-6a03141c-290f-4b5b-b895-8c1be72fd16b"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-208e9cf6-7acc-4d57-94cf-9e00fa00d342 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-f193d871-8733-4f69-b70c-ecda1620ddec"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f193d871-8733-4f69-b70c-ecda1620ddec"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f193d871-8733-4f69-b70c-ecda1620ddec"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f193d871-8733-4f69-b70c-ecda1620ddec"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-99b8e0a4-bb74-4b8d-86b9-89d998b79642"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-99b8e0a4-bb74-4b8d-86b9-89d998b79642"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-99b8e0a4-bb74-4b8d-86b9-89d998b79642"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-99b8e0a4-bb74-4b8d-86b9-89d998b79642"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-99b8e0a4-bb74-4b8d-86b9-89d998b79642"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-99b8e0a4-bb74-4b8d-86b9-89d998b79642"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-99b8e0a4-bb74-4b8d-86b9-89d998b79642"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-998e9cb9-3238-449d-9ae3-0785b43c8d41 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-f07d7620-a95a-4f19-8cd4-1eb0e2a9b7b8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f07d7620-a95a-4f19-8cd4-1eb0e2a9b7b8"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f07d7620-a95a-4f19-8cd4-1eb0e2a9b7b8"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f07d7620-a95a-4f19-8cd4-1eb0e2a9b7b8"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f07d7620-a95a-4f19-8cd4-1eb0e2a9b7b8"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f07d7620-a95a-4f19-8cd4-1eb0e2a9b7b8"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f07d7620-a95a-4f19-8cd4-1eb0e2a9b7b8"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-696bb0cd-8f53-4271-b9d8-ca8b5cb75ec1 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-4fca2b10-5564-41c0-858a-f4062bd610df"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4fca2b10-5564-41c0-858a-f4062bd610df"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-4fca2b10-5564-41c0-858a-f4062bd610df"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4fca2b10-5564-41c0-858a-f4062bd610df"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-4fca2b10-5564-41c0-858a-f4062bd610df"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4fca2b10-5564-41c0-858a-f4062bd610df"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-4fca2b10-5564-41c0-858a-f4062bd610df"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  max-width: 1920px;
aspect-ratio: 1920/1095;
text-align: center;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image {
  box-sizing: border-box;
}



.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
      position: relative;
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

@media (min-width: 1200px){#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image {
  box-sizing: border-box;
}



.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
      position: relative;
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image {
  box-sizing: border-box;
}



.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
      position: relative;
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image {
  box-sizing: border-box;
}



.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
      position: relative;
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (max-width: 767px){#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image {
  box-sizing: border-box;
}



.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
      position: relative;
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}
#s-6b828aca-d3d4-456f-8393-362d48823dbe {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 1%;
padding-right: 1%;
}

#s-c750f8e5-53aa-4959-8439-4bb9ed0925d7 {
  margin-top: -1px;
margin-left: 4%;
margin-bottom: -1px;
margin-right: 4%;
padding-top: 20px;
padding-left: 1%;
padding-bottom: 20px;
padding-right: 1%;
}

@media (min-width: 0px) {
[id="s-74687775-3747-44f3-a7c9-0759b5570547"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-74687775-3747-44f3-a7c9-0759b5570547"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-74687775-3747-44f3-a7c9-0759b5570547"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-74687775-3747-44f3-a7c9-0759b5570547"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-2a87201f-a580-423f-b458-d88457a6c238"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2a87201f-a580-423f-b458-d88457a6c238"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2a87201f-a580-423f-b458-d88457a6c238"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2a87201f-a580-423f-b458-d88457a6c238"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2a87201f-a580-423f-b458-d88457a6c238"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2a87201f-a580-423f-b458-d88457a6c238"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2a87201f-a580-423f-b458-d88457a6c238"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-33ccb7b5-9f60-4abe-9b4c-a54f0d130eb3 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-e1b4829e-76f8-4624-b480-6f9dc3f440c5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e1b4829e-76f8-4624-b480-6f9dc3f440c5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e1b4829e-76f8-4624-b480-6f9dc3f440c5"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e1b4829e-76f8-4624-b480-6f9dc3f440c5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e1b4829e-76f8-4624-b480-6f9dc3f440c5"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e1b4829e-76f8-4624-b480-6f9dc3f440c5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e1b4829e-76f8-4624-b480-6f9dc3f440c5"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-e4b652db-1eff-4416-8719-f0827504d73d {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-5f4ab5e5-fcc5-4b6a-bbcd-f82acacba8eb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5f4ab5e5-fcc5-4b6a-bbcd-f82acacba8eb"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5f4ab5e5-fcc5-4b6a-bbcd-f82acacba8eb"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5f4ab5e5-fcc5-4b6a-bbcd-f82acacba8eb"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-f041bf64-84c6-4131-b58a-567546c69ab6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f041bf64-84c6-4131-b58a-567546c69ab6"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f041bf64-84c6-4131-b58a-567546c69ab6"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f041bf64-84c6-4131-b58a-567546c69ab6"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f041bf64-84c6-4131-b58a-567546c69ab6"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f041bf64-84c6-4131-b58a-567546c69ab6"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f041bf64-84c6-4131-b58a-567546c69ab6"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-9d03faf8-849b-47f0-b76b-fef797721e47 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-1b63fae0-fb4f-44a2-a10b-85ebdeabcacc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1b63fae0-fb4f-44a2-a10b-85ebdeabcacc"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1b63fae0-fb4f-44a2-a10b-85ebdeabcacc"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1b63fae0-fb4f-44a2-a10b-85ebdeabcacc"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1b63fae0-fb4f-44a2-a10b-85ebdeabcacc"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1b63fae0-fb4f-44a2-a10b-85ebdeabcacc"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1b63fae0-fb4f-44a2-a10b-85ebdeabcacc"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-53b45624-1dae-40e0-8153-e3c19e7581f3 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-d5fe1521-28d6-44d6-9697-c89f9ef00256"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d5fe1521-28d6-44d6-9697-c89f9ef00256"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d5fe1521-28d6-44d6-9697-c89f9ef00256"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d5fe1521-28d6-44d6-9697-c89f9ef00256"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-95a32ceb-4811-4378-8572-257c15b65841"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-95a32ceb-4811-4378-8572-257c15b65841"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-95a32ceb-4811-4378-8572-257c15b65841"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-95a32ceb-4811-4378-8572-257c15b65841"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-95a32ceb-4811-4378-8572-257c15b65841"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-95a32ceb-4811-4378-8572-257c15b65841"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-95a32ceb-4811-4378-8572-257c15b65841"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-0aa281fb-ba61-4faa-92dc-003dd55567b5 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-8ef2ad4e-7a61-4184-bed6-4d70e1e917cb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8ef2ad4e-7a61-4184-bed6-4d70e1e917cb"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8ef2ad4e-7a61-4184-bed6-4d70e1e917cb"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8ef2ad4e-7a61-4184-bed6-4d70e1e917cb"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8ef2ad4e-7a61-4184-bed6-4d70e1e917cb"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8ef2ad4e-7a61-4184-bed6-4d70e1e917cb"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8ef2ad4e-7a61-4184-bed6-4d70e1e917cb"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-ba0c9c09-179d-4b16-bcfe-efbaa6613caa {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-4480c4ff-1e22-4d9a-a7c0-9e22a8c18246"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4480c4ff-1e22-4d9a-a7c0-9e22a8c18246"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4480c4ff-1e22-4d9a-a7c0-9e22a8c18246"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4480c4ff-1e22-4d9a-a7c0-9e22a8c18246"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-d1399f6c-bf50-4409-902c-fab5ee95f402"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d1399f6c-bf50-4409-902c-fab5ee95f402"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d1399f6c-bf50-4409-902c-fab5ee95f402"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d1399f6c-bf50-4409-902c-fab5ee95f402"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d1399f6c-bf50-4409-902c-fab5ee95f402"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d1399f6c-bf50-4409-902c-fab5ee95f402"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d1399f6c-bf50-4409-902c-fab5ee95f402"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-45993114-b748-48bf-950b-fd47839848e2 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-50564ba3-3fca-408f-99b5-d6ddc2939f57"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-50564ba3-3fca-408f-99b5-d6ddc2939f57"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-50564ba3-3fca-408f-99b5-d6ddc2939f57"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-50564ba3-3fca-408f-99b5-d6ddc2939f57"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-50564ba3-3fca-408f-99b5-d6ddc2939f57"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-50564ba3-3fca-408f-99b5-d6ddc2939f57"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-50564ba3-3fca-408f-99b5-d6ddc2939f57"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-a93a3b5a-2578-4fb9-95c6-a4be4f0b2c6d {
  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-7d84c196-cb05-4f8a-8365-8d6833fd2f2d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7d84c196-cb05-4f8a-8365-8d6833fd2f2d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7d84c196-cb05-4f8a-8365-8d6833fd2f2d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7d84c196-cb05-4f8a-8365-8d6833fd2f2d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-829cab85-506f-48a4-a9bd-bf13804faf33"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-829cab85-506f-48a4-a9bd-bf13804faf33"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-829cab85-506f-48a4-a9bd-bf13804faf33"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-829cab85-506f-48a4-a9bd-bf13804faf33"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-829cab85-506f-48a4-a9bd-bf13804faf33"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-829cab85-506f-48a4-a9bd-bf13804faf33"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-829cab85-506f-48a4-a9bd-bf13804faf33"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-cb1a20be-8794-48a4-a93d-75ae94b2cb2b {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-4f379ac0-7967-46d8-b0c7-15336023a822"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4f379ac0-7967-46d8-b0c7-15336023a822"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4f379ac0-7967-46d8-b0c7-15336023a822"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4f379ac0-7967-46d8-b0c7-15336023a822"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4f379ac0-7967-46d8-b0c7-15336023a822"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4f379ac0-7967-46d8-b0c7-15336023a822"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4f379ac0-7967-46d8-b0c7-15336023a822"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-e11507e6-7344-4bf6-a67d-d6487837f0fb {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-7cfff7c4-e07e-4f39-a92c-58e0b4e17862"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7cfff7c4-e07e-4f39-a92c-58e0b4e17862"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7cfff7c4-e07e-4f39-a92c-58e0b4e17862"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7cfff7c4-e07e-4f39-a92c-58e0b4e17862"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-29a5097e-dc03-4124-87a8-3a0098e24f70"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-29a5097e-dc03-4124-87a8-3a0098e24f70"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-29a5097e-dc03-4124-87a8-3a0098e24f70"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-29a5097e-dc03-4124-87a8-3a0098e24f70"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-29a5097e-dc03-4124-87a8-3a0098e24f70"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-29a5097e-dc03-4124-87a8-3a0098e24f70"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-29a5097e-dc03-4124-87a8-3a0098e24f70"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-9230b14d-921a-4a80-bc9a-2590a4715b8f {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-21c20333-4ef6-4b20-b941-ec76558049fa"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-21c20333-4ef6-4b20-b941-ec76558049fa"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-21c20333-4ef6-4b20-b941-ec76558049fa"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-21c20333-4ef6-4b20-b941-ec76558049fa"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-21c20333-4ef6-4b20-b941-ec76558049fa"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-21c20333-4ef6-4b20-b941-ec76558049fa"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-21c20333-4ef6-4b20-b941-ec76558049fa"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-eee3e80c-4195-40ac-ac2f-df2ad029891d {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-cce4177f-ecde-440f-b0ad-caa57e0b23ec"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cce4177f-ecde-440f-b0ad-caa57e0b23ec"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-cce4177f-ecde-440f-b0ad-caa57e0b23ec"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-cce4177f-ecde-440f-b0ad-caa57e0b23ec"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-ad9e1f9f-ff4e-4a2d-b3c3-b004ce0c33cb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ad9e1f9f-ff4e-4a2d-b3c3-b004ce0c33cb"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ad9e1f9f-ff4e-4a2d-b3c3-b004ce0c33cb"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ad9e1f9f-ff4e-4a2d-b3c3-b004ce0c33cb"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ad9e1f9f-ff4e-4a2d-b3c3-b004ce0c33cb"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ad9e1f9f-ff4e-4a2d-b3c3-b004ce0c33cb"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ad9e1f9f-ff4e-4a2d-b3c3-b004ce0c33cb"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-a44764e1-79cf-4d8b-952e-9e8c4662ca40 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-0785c37b-05a8-48ae-8327-b8a245e1e1f0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0785c37b-05a8-48ae-8327-b8a245e1e1f0"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-0785c37b-05a8-48ae-8327-b8a245e1e1f0"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0785c37b-05a8-48ae-8327-b8a245e1e1f0"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-0785c37b-05a8-48ae-8327-b8a245e1e1f0"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0785c37b-05a8-48ae-8327-b8a245e1e1f0"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-0785c37b-05a8-48ae-8327-b8a245e1e1f0"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-fe974854-5c7a-4ce1-bc8d-deb815a5454d {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-ffc4cf05-bea9-440a-8a1a-b511623441a1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ffc4cf05-bea9-440a-8a1a-b511623441a1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ffc4cf05-bea9-440a-8a1a-b511623441a1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ffc4cf05-bea9-440a-8a1a-b511623441a1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-ac22c0b5-e8c1-4b14-8116-08ada26ff492"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ac22c0b5-e8c1-4b14-8116-08ada26ff492"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ac22c0b5-e8c1-4b14-8116-08ada26ff492"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ac22c0b5-e8c1-4b14-8116-08ada26ff492"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ac22c0b5-e8c1-4b14-8116-08ada26ff492"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ac22c0b5-e8c1-4b14-8116-08ada26ff492"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ac22c0b5-e8c1-4b14-8116-08ada26ff492"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-64cc9a25-aea6-4dbb-b76c-28e2933dd02c {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-b9128419-7325-414a-bf84-5a5fd02f6ccd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b9128419-7325-414a-bf84-5a5fd02f6ccd"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b9128419-7325-414a-bf84-5a5fd02f6ccd"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b9128419-7325-414a-bf84-5a5fd02f6ccd"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b9128419-7325-414a-bf84-5a5fd02f6ccd"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b9128419-7325-414a-bf84-5a5fd02f6ccd"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b9128419-7325-414a-bf84-5a5fd02f6ccd"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-8095e1e6-1e7c-498b-b851-b7fc53fb4f88 {
  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-65a4b3b5-58fc-4015-81e8-01c6b80fc77a {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 0%;
padding-right: 0%;
}

#s-cbb8988d-1a8e-4d9e-89ef-9d86c72125ce {
  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-168b57b8-8e98-4921-b8da-d45269dacc96"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-168b57b8-8e98-4921-b8da-d45269dacc96"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-168b57b8-8e98-4921-b8da-d45269dacc96"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-168b57b8-8e98-4921-b8da-d45269dacc96"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-37398f14-6567-421f-9c37-d2eb08963ac9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-37398f14-6567-421f-9c37-d2eb08963ac9"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-37398f14-6567-421f-9c37-d2eb08963ac9"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-37398f14-6567-421f-9c37-d2eb08963ac9"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-37398f14-6567-421f-9c37-d2eb08963ac9"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-37398f14-6567-421f-9c37-d2eb08963ac9"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-37398f14-6567-421f-9c37-d2eb08963ac9"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-ef766d75-e028-4e63-8ef1-0387609c8728 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-6b5b41e6-6ae9-4fef-ba59-e60655c03c33"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6b5b41e6-6ae9-4fef-ba59-e60655c03c33"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6b5b41e6-6ae9-4fef-ba59-e60655c03c33"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6b5b41e6-6ae9-4fef-ba59-e60655c03c33"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6b5b41e6-6ae9-4fef-ba59-e60655c03c33"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6b5b41e6-6ae9-4fef-ba59-e60655c03c33"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6b5b41e6-6ae9-4fef-ba59-e60655c03c33"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-7b21c044-3da2-41ce-81e4-aa7519a9b9f4 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-4e57091a-c110-4393-b002-d19be032605e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4e57091a-c110-4393-b002-d19be032605e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4e57091a-c110-4393-b002-d19be032605e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4e57091a-c110-4393-b002-d19be032605e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-4eaf5533-bc68-482e-b143-eb581e3b51df"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4eaf5533-bc68-482e-b143-eb581e3b51df"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4eaf5533-bc68-482e-b143-eb581e3b51df"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4eaf5533-bc68-482e-b143-eb581e3b51df"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4eaf5533-bc68-482e-b143-eb581e3b51df"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4eaf5533-bc68-482e-b143-eb581e3b51df"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4eaf5533-bc68-482e-b143-eb581e3b51df"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-ee7bf8d8-f7d3-4210-9a4d-bcc2343ed221 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-5594cb1c-61a8-4868-b71c-d7322b7b8919"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5594cb1c-61a8-4868-b71c-d7322b7b8919"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5594cb1c-61a8-4868-b71c-d7322b7b8919"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5594cb1c-61a8-4868-b71c-d7322b7b8919"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5594cb1c-61a8-4868-b71c-d7322b7b8919"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5594cb1c-61a8-4868-b71c-d7322b7b8919"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5594cb1c-61a8-4868-b71c-d7322b7b8919"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-07ea0803-c4ac-4682-8cb4-111eb9c91169 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-db82bfcf-a3f4-4306-9472-1399ec776c3c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-db82bfcf-a3f4-4306-9472-1399ec776c3c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-db82bfcf-a3f4-4306-9472-1399ec776c3c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-db82bfcf-a3f4-4306-9472-1399ec776c3c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-e1aa9133-d36f-41db-ac4f-93713c0231e3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e1aa9133-d36f-41db-ac4f-93713c0231e3"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e1aa9133-d36f-41db-ac4f-93713c0231e3"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e1aa9133-d36f-41db-ac4f-93713c0231e3"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e1aa9133-d36f-41db-ac4f-93713c0231e3"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e1aa9133-d36f-41db-ac4f-93713c0231e3"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e1aa9133-d36f-41db-ac4f-93713c0231e3"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-a2c48cec-1899-4c73-9927-499d769c2916 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-7a990d24-4517-40d5-b075-a52f9263f576"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7a990d24-4517-40d5-b075-a52f9263f576"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-7a990d24-4517-40d5-b075-a52f9263f576"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7a990d24-4517-40d5-b075-a52f9263f576"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-7a990d24-4517-40d5-b075-a52f9263f576"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7a990d24-4517-40d5-b075-a52f9263f576"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-7a990d24-4517-40d5-b075-a52f9263f576"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-caaed814-b8f1-4193-80e8-40e292125cdf {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-e0653d99-486b-45d0-baa7-382f398f95b9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e0653d99-486b-45d0-baa7-382f398f95b9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e0653d99-486b-45d0-baa7-382f398f95b9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e0653d99-486b-45d0-baa7-382f398f95b9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-d7b30904-32b2-441b-9c23-8a1078d69267"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d7b30904-32b2-441b-9c23-8a1078d69267"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d7b30904-32b2-441b-9c23-8a1078d69267"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d7b30904-32b2-441b-9c23-8a1078d69267"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d7b30904-32b2-441b-9c23-8a1078d69267"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d7b30904-32b2-441b-9c23-8a1078d69267"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d7b30904-32b2-441b-9c23-8a1078d69267"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-bd7eeaa7-5aa4-4733-a6c9-0da05059aeb9 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-1f10e80a-18d1-4421-8f55-aebe2ac948a0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1f10e80a-18d1-4421-8f55-aebe2ac948a0"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1f10e80a-18d1-4421-8f55-aebe2ac948a0"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1f10e80a-18d1-4421-8f55-aebe2ac948a0"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1f10e80a-18d1-4421-8f55-aebe2ac948a0"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1f10e80a-18d1-4421-8f55-aebe2ac948a0"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1f10e80a-18d1-4421-8f55-aebe2ac948a0"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-c9f41900-f19e-4769-b8b1-e18022488f53 {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-6ccbd91c-169e-4fae-8aea-738e3533d8fd {
  margin-top: -10px;
margin-bottom: -10px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-6ccbd91c-169e-4fae-8aea-738e3533d8fd hr {
  border-top: 1px solid #ddd;
}

@media (min-width: 0px) {
[id="s-99db29f5-0a0e-4587-86cc-92dab93d1ccb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-99db29f5-0a0e-4587-86cc-92dab93d1ccb"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-99db29f5-0a0e-4587-86cc-92dab93d1ccb"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-99db29f5-0a0e-4587-86cc-92dab93d1ccb"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-7a9e20bb-2d9e-4ae1-bd74-952628703e1a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7a9e20bb-2d9e-4ae1-bd74-952628703e1a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7a9e20bb-2d9e-4ae1-bd74-952628703e1a"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7a9e20bb-2d9e-4ae1-bd74-952628703e1a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7a9e20bb-2d9e-4ae1-bd74-952628703e1a"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7a9e20bb-2d9e-4ae1-bd74-952628703e1a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7a9e20bb-2d9e-4ae1-bd74-952628703e1a"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-71680a64-6611-4433-b598-4d9cc9bd166f {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-e2be686c-2c56-42ee-bdac-f27e609653b9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e2be686c-2c56-42ee-bdac-f27e609653b9"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e2be686c-2c56-42ee-bdac-f27e609653b9"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e2be686c-2c56-42ee-bdac-f27e609653b9"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e2be686c-2c56-42ee-bdac-f27e609653b9"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e2be686c-2c56-42ee-bdac-f27e609653b9"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e2be686c-2c56-42ee-bdac-f27e609653b9"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-7c578225-85b1-4171-8cf3-e78e82c24cd8 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-45d52c57-dff4-4b1f-8320-f0991f7f76ec"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-45d52c57-dff4-4b1f-8320-f0991f7f76ec"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-45d52c57-dff4-4b1f-8320-f0991f7f76ec"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-45d52c57-dff4-4b1f-8320-f0991f7f76ec"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-42bed280-73b6-4a71-9922-c3fa24ff26e3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-42bed280-73b6-4a71-9922-c3fa24ff26e3"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-42bed280-73b6-4a71-9922-c3fa24ff26e3"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-42bed280-73b6-4a71-9922-c3fa24ff26e3"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-42bed280-73b6-4a71-9922-c3fa24ff26e3"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-42bed280-73b6-4a71-9922-c3fa24ff26e3"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-42bed280-73b6-4a71-9922-c3fa24ff26e3"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-9a6dc0d6-fbf2-4b1c-b4f0-97d9b3f086ff {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-115c6f6c-a603-4b5c-b123-a911010fb39c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-115c6f6c-a603-4b5c-b123-a911010fb39c"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-115c6f6c-a603-4b5c-b123-a911010fb39c"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-115c6f6c-a603-4b5c-b123-a911010fb39c"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-115c6f6c-a603-4b5c-b123-a911010fb39c"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-115c6f6c-a603-4b5c-b123-a911010fb39c"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-115c6f6c-a603-4b5c-b123-a911010fb39c"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-3fae0d9c-359a-4c15-8136-92a7b66aa430 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-955c95ad-ae1b-4fcb-a04c-a4adfd550341"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-955c95ad-ae1b-4fcb-a04c-a4adfd550341"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-955c95ad-ae1b-4fcb-a04c-a4adfd550341"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-955c95ad-ae1b-4fcb-a04c-a4adfd550341"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-549e518b-e44a-4a8f-b476-24d1dd87d9ad"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-549e518b-e44a-4a8f-b476-24d1dd87d9ad"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-549e518b-e44a-4a8f-b476-24d1dd87d9ad"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-549e518b-e44a-4a8f-b476-24d1dd87d9ad"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-549e518b-e44a-4a8f-b476-24d1dd87d9ad"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-549e518b-e44a-4a8f-b476-24d1dd87d9ad"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-549e518b-e44a-4a8f-b476-24d1dd87d9ad"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-bc6eef70-ebec-4b9a-a25e-74fcf63dc27a {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-d269efa6-6461-4771-a127-b078acff5930"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d269efa6-6461-4771-a127-b078acff5930"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d269efa6-6461-4771-a127-b078acff5930"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d269efa6-6461-4771-a127-b078acff5930"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d269efa6-6461-4771-a127-b078acff5930"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d269efa6-6461-4771-a127-b078acff5930"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d269efa6-6461-4771-a127-b078acff5930"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-db2d8c81-4b58-4f7b-9dd2-3cc45e1c9249 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-cfa695ae-f858-471e-af58-ee78a50869d6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cfa695ae-f858-471e-af58-ee78a50869d6"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-cfa695ae-f858-471e-af58-ee78a50869d6"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-cfa695ae-f858-471e-af58-ee78a50869d6"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-cfa695ae-f858-471e-af58-ee78a50869d6"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-cfa695ae-f858-471e-af58-ee78a50869d6"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-cfa695ae-f858-471e-af58-ee78a50869d6"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

#s-24537203-359f-4988-9973-0340d42feb26 {
  max-width: 1920px;
aspect-ratio: 1920/1095;
text-align: center;
}

#s-24537203-359f-4988-9973-0340d42feb26 {
  margin: 0 !important;
  overflow: visible;
}

#s-24537203-359f-4988-9973-0340d42feb26-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-24537203-359f-4988-9973-0340d42feb26 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-24537203-359f-4988-9973-0340d42feb26 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-24537203-359f-4988-9973-0340d42feb26 img.shogun-image {
  /* Add background color handling */
  
}

#s-24537203-359f-4988-9973-0340d42feb26 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-24537203-359f-4988-9973-0340d42feb26 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-24537203-359f-4988-9973-0340d42feb26 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-24537203-359f-4988-9973-0340d42feb26 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-24537203-359f-4988-9973-0340d42feb26.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-24537203-359f-4988-9973-0340d42feb26 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-24537203-359f-4988-9973-0340d42feb26.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-24537203-359f-4988-9973-0340d42feb26 .shogun-image-content {
  
    justify-content: center;
  
}

.s-24537203-359f-4988-9973-0340d42feb26.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24537203-359f-4988-9973-0340d42feb26.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24537203-359f-4988-9973-0340d42feb26.shogun-image {
  box-sizing: border-box;
}



.s-24537203-359f-4988-9973-0340d42feb26 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-24537203-359f-4988-9973-0340d42feb26 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-24537203-359f-4988-9973-0340d42feb26.shogun-image-container {
      position: relative;
    }

    .s-24537203-359f-4988-9973-0340d42feb26.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24537203-359f-4988-9973-0340d42feb26.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24537203-359f-4988-9973-0340d42feb26 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

@media (min-width: 1200px){#s-24537203-359f-4988-9973-0340d42feb26 {
  margin: 0 !important;
  overflow: visible;
}

#s-24537203-359f-4988-9973-0340d42feb26-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-24537203-359f-4988-9973-0340d42feb26 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-24537203-359f-4988-9973-0340d42feb26 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-24537203-359f-4988-9973-0340d42feb26 img.shogun-image {
  /* Add background color handling */
  
}

#s-24537203-359f-4988-9973-0340d42feb26 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-24537203-359f-4988-9973-0340d42feb26 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-24537203-359f-4988-9973-0340d42feb26 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-24537203-359f-4988-9973-0340d42feb26 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-24537203-359f-4988-9973-0340d42feb26.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-24537203-359f-4988-9973-0340d42feb26 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-24537203-359f-4988-9973-0340d42feb26.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-24537203-359f-4988-9973-0340d42feb26 .shogun-image-content {
  
    justify-content: center;
  
}

.s-24537203-359f-4988-9973-0340d42feb26.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24537203-359f-4988-9973-0340d42feb26.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24537203-359f-4988-9973-0340d42feb26.shogun-image {
  box-sizing: border-box;
}



.s-24537203-359f-4988-9973-0340d42feb26 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-24537203-359f-4988-9973-0340d42feb26 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-24537203-359f-4988-9973-0340d42feb26.shogun-image-container {
      position: relative;
    }

    .s-24537203-359f-4988-9973-0340d42feb26.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24537203-359f-4988-9973-0340d42feb26.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24537203-359f-4988-9973-0340d42feb26 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-24537203-359f-4988-9973-0340d42feb26 {
  margin: 0 !important;
  overflow: visible;
}

#s-24537203-359f-4988-9973-0340d42feb26-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-24537203-359f-4988-9973-0340d42feb26 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-24537203-359f-4988-9973-0340d42feb26 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-24537203-359f-4988-9973-0340d42feb26 img.shogun-image {
  /* Add background color handling */
  
}

#s-24537203-359f-4988-9973-0340d42feb26 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-24537203-359f-4988-9973-0340d42feb26 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-24537203-359f-4988-9973-0340d42feb26 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-24537203-359f-4988-9973-0340d42feb26 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-24537203-359f-4988-9973-0340d42feb26.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-24537203-359f-4988-9973-0340d42feb26 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-24537203-359f-4988-9973-0340d42feb26.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-24537203-359f-4988-9973-0340d42feb26 .shogun-image-content {
  
    justify-content: center;
  
}

.s-24537203-359f-4988-9973-0340d42feb26.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24537203-359f-4988-9973-0340d42feb26.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24537203-359f-4988-9973-0340d42feb26.shogun-image {
  box-sizing: border-box;
}



.s-24537203-359f-4988-9973-0340d42feb26 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-24537203-359f-4988-9973-0340d42feb26 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-24537203-359f-4988-9973-0340d42feb26.shogun-image-container {
      position: relative;
    }

    .s-24537203-359f-4988-9973-0340d42feb26.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24537203-359f-4988-9973-0340d42feb26.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24537203-359f-4988-9973-0340d42feb26 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-24537203-359f-4988-9973-0340d42feb26 {
  margin: 0 !important;
  overflow: visible;
}

#s-24537203-359f-4988-9973-0340d42feb26-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-24537203-359f-4988-9973-0340d42feb26 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-24537203-359f-4988-9973-0340d42feb26 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-24537203-359f-4988-9973-0340d42feb26 img.shogun-image {
  /* Add background color handling */
  
}

#s-24537203-359f-4988-9973-0340d42feb26 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-24537203-359f-4988-9973-0340d42feb26 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-24537203-359f-4988-9973-0340d42feb26 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-24537203-359f-4988-9973-0340d42feb26 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-24537203-359f-4988-9973-0340d42feb26.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-24537203-359f-4988-9973-0340d42feb26 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-24537203-359f-4988-9973-0340d42feb26.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-24537203-359f-4988-9973-0340d42feb26 .shogun-image-content {
  
    justify-content: center;
  
}

.s-24537203-359f-4988-9973-0340d42feb26.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24537203-359f-4988-9973-0340d42feb26.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24537203-359f-4988-9973-0340d42feb26.shogun-image {
  box-sizing: border-box;
}



.s-24537203-359f-4988-9973-0340d42feb26 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-24537203-359f-4988-9973-0340d42feb26 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-24537203-359f-4988-9973-0340d42feb26.shogun-image-container {
      position: relative;
    }

    .s-24537203-359f-4988-9973-0340d42feb26.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24537203-359f-4988-9973-0340d42feb26.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24537203-359f-4988-9973-0340d42feb26 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (max-width: 767px){#s-24537203-359f-4988-9973-0340d42feb26 {
  margin: 0 !important;
  overflow: visible;
}

#s-24537203-359f-4988-9973-0340d42feb26-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-24537203-359f-4988-9973-0340d42feb26 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-24537203-359f-4988-9973-0340d42feb26 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-24537203-359f-4988-9973-0340d42feb26 img.shogun-image {
  /* Add background color handling */
  
}

#s-24537203-359f-4988-9973-0340d42feb26 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-24537203-359f-4988-9973-0340d42feb26 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-24537203-359f-4988-9973-0340d42feb26 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-24537203-359f-4988-9973-0340d42feb26 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-24537203-359f-4988-9973-0340d42feb26.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-24537203-359f-4988-9973-0340d42feb26 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-24537203-359f-4988-9973-0340d42feb26.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-24537203-359f-4988-9973-0340d42feb26 .shogun-image-content {
  
    justify-content: center;
  
}

.s-24537203-359f-4988-9973-0340d42feb26.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24537203-359f-4988-9973-0340d42feb26.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24537203-359f-4988-9973-0340d42feb26.shogun-image {
  box-sizing: border-box;
}



.s-24537203-359f-4988-9973-0340d42feb26 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-24537203-359f-4988-9973-0340d42feb26 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-24537203-359f-4988-9973-0340d42feb26.shogun-image-container {
      position: relative;
    }

    .s-24537203-359f-4988-9973-0340d42feb26.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24537203-359f-4988-9973-0340d42feb26.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24537203-359f-4988-9973-0340d42feb26 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}
#s-f2eb9036-4160-4d84-8fdd-2f80cea11c93 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 1%;
padding-right: 1%;
}

#s-2626c9ef-254f-472c-8102-ad04d2af8b78 {
  margin-top: -1px;
margin-left: 4%;
margin-bottom: -1px;
margin-right: 4%;
padding-top: 20px;
padding-left: 1%;
padding-bottom: 20px;
padding-right: 1%;
}

@media (min-width: 0px) {
[id="s-ff1dfdea-3c06-4d7b-a2f7-15eb4ff2b4b5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ff1dfdea-3c06-4d7b-a2f7-15eb4ff2b4b5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ff1dfdea-3c06-4d7b-a2f7-15eb4ff2b4b5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ff1dfdea-3c06-4d7b-a2f7-15eb4ff2b4b5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-d652d955-ee4e-4dee-9c5f-f4e9fd8c0519"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d652d955-ee4e-4dee-9c5f-f4e9fd8c0519"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d652d955-ee4e-4dee-9c5f-f4e9fd8c0519"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d652d955-ee4e-4dee-9c5f-f4e9fd8c0519"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d652d955-ee4e-4dee-9c5f-f4e9fd8c0519"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d652d955-ee4e-4dee-9c5f-f4e9fd8c0519"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d652d955-ee4e-4dee-9c5f-f4e9fd8c0519"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-d9b8392d-ad61-4552-83ba-7fb7fafcb24a {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-a589b56c-2b36-483f-a970-78e1bff92c2a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a589b56c-2b36-483f-a970-78e1bff92c2a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a589b56c-2b36-483f-a970-78e1bff92c2a"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a589b56c-2b36-483f-a970-78e1bff92c2a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a589b56c-2b36-483f-a970-78e1bff92c2a"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a589b56c-2b36-483f-a970-78e1bff92c2a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a589b56c-2b36-483f-a970-78e1bff92c2a"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-be0abfb3-4621-424d-81c3-64557c55f0d3 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-cda4af78-0aa0-4fb9-82c3-1e020d6a617f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cda4af78-0aa0-4fb9-82c3-1e020d6a617f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-cda4af78-0aa0-4fb9-82c3-1e020d6a617f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-cda4af78-0aa0-4fb9-82c3-1e020d6a617f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-3c5c16ae-6cdc-4b99-aad3-5b61e51c41b2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3c5c16ae-6cdc-4b99-aad3-5b61e51c41b2"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-3c5c16ae-6cdc-4b99-aad3-5b61e51c41b2"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3c5c16ae-6cdc-4b99-aad3-5b61e51c41b2"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-3c5c16ae-6cdc-4b99-aad3-5b61e51c41b2"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3c5c16ae-6cdc-4b99-aad3-5b61e51c41b2"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-3c5c16ae-6cdc-4b99-aad3-5b61e51c41b2"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-4fcb1e63-713a-4473-8c51-92d7baa21be1 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-e983b509-0e40-496a-bfc3-a11284d26de3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e983b509-0e40-496a-bfc3-a11284d26de3"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e983b509-0e40-496a-bfc3-a11284d26de3"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e983b509-0e40-496a-bfc3-a11284d26de3"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e983b509-0e40-496a-bfc3-a11284d26de3"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e983b509-0e40-496a-bfc3-a11284d26de3"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e983b509-0e40-496a-bfc3-a11284d26de3"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-5394977d-82ff-4a97-abd2-fa612b3a86c4 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-22a1dd31-24a6-4a32-88de-ce8c32bc8058"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-22a1dd31-24a6-4a32-88de-ce8c32bc8058"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-22a1dd31-24a6-4a32-88de-ce8c32bc8058"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-22a1dd31-24a6-4a32-88de-ce8c32bc8058"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-9fb9d23d-1e7a-4594-85e3-4df82e3ce295"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9fb9d23d-1e7a-4594-85e3-4df82e3ce295"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-9fb9d23d-1e7a-4594-85e3-4df82e3ce295"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9fb9d23d-1e7a-4594-85e3-4df82e3ce295"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-9fb9d23d-1e7a-4594-85e3-4df82e3ce295"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9fb9d23d-1e7a-4594-85e3-4df82e3ce295"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-9fb9d23d-1e7a-4594-85e3-4df82e3ce295"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-b057efd6-c583-4a6b-ba68-520ddbed6b84 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-bf77b551-7f36-43f8-afb1-e06e811407d3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bf77b551-7f36-43f8-afb1-e06e811407d3"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-bf77b551-7f36-43f8-afb1-e06e811407d3"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-bf77b551-7f36-43f8-afb1-e06e811407d3"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-bf77b551-7f36-43f8-afb1-e06e811407d3"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-bf77b551-7f36-43f8-afb1-e06e811407d3"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-bf77b551-7f36-43f8-afb1-e06e811407d3"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-426315a5-75a4-4042-b87a-ca131e1b7181 {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-1ceab5ec-97d9-409e-9f2c-034383d5bf63 {
  margin-top: -10px;
margin-bottom: -10px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-1ceab5ec-97d9-409e-9f2c-034383d5bf63 hr {
  border-top: 1px solid #ddd;
}

@media (min-width: 0px) {
[id="s-ee1bde14-8aae-4546-9b4b-b4706abe9851"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ee1bde14-8aae-4546-9b4b-b4706abe9851"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ee1bde14-8aae-4546-9b4b-b4706abe9851"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ee1bde14-8aae-4546-9b4b-b4706abe9851"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-ac7c4c4a-5aaa-4cd1-85b1-af9a6d7de946"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ac7c4c4a-5aaa-4cd1-85b1-af9a6d7de946"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ac7c4c4a-5aaa-4cd1-85b1-af9a6d7de946"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ac7c4c4a-5aaa-4cd1-85b1-af9a6d7de946"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ac7c4c4a-5aaa-4cd1-85b1-af9a6d7de946"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ac7c4c4a-5aaa-4cd1-85b1-af9a6d7de946"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ac7c4c4a-5aaa-4cd1-85b1-af9a6d7de946"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-4a2a82ad-c11e-43c0-a377-f3e4f4922d9a {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-2c44bbfb-505d-47cf-8c22-8ef094e1078c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2c44bbfb-505d-47cf-8c22-8ef094e1078c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2c44bbfb-505d-47cf-8c22-8ef094e1078c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2c44bbfb-505d-47cf-8c22-8ef094e1078c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2c44bbfb-505d-47cf-8c22-8ef094e1078c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2c44bbfb-505d-47cf-8c22-8ef094e1078c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2c44bbfb-505d-47cf-8c22-8ef094e1078c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-f745ae3f-0663-4625-b46b-544640d29d2f {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-b1f75ed7-ba51-4b65-9ad8-e0dfea1b4fd7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b1f75ed7-ba51-4b65-9ad8-e0dfea1b4fd7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b1f75ed7-ba51-4b65-9ad8-e0dfea1b4fd7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b1f75ed7-ba51-4b65-9ad8-e0dfea1b4fd7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-cc53d3f1-8d40-4609-a363-414672b9a234"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cc53d3f1-8d40-4609-a363-414672b9a234"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-cc53d3f1-8d40-4609-a363-414672b9a234"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-cc53d3f1-8d40-4609-a363-414672b9a234"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-cc53d3f1-8d40-4609-a363-414672b9a234"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-cc53d3f1-8d40-4609-a363-414672b9a234"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-cc53d3f1-8d40-4609-a363-414672b9a234"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-46026f5b-e4ba-4711-8a0f-72606311c624 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-4f7071da-e335-4e7e-8d0c-699670c068c7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4f7071da-e335-4e7e-8d0c-699670c068c7"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-4f7071da-e335-4e7e-8d0c-699670c068c7"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4f7071da-e335-4e7e-8d0c-699670c068c7"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-4f7071da-e335-4e7e-8d0c-699670c068c7"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4f7071da-e335-4e7e-8d0c-699670c068c7"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-4f7071da-e335-4e7e-8d0c-699670c068c7"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-723b6cdf-aafa-40cf-9435-26dea2f38d5b {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-44c78fe3-2b83-40e3-840f-046e3ee2a8e0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-44c78fe3-2b83-40e3-840f-046e3ee2a8e0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-44c78fe3-2b83-40e3-840f-046e3ee2a8e0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-44c78fe3-2b83-40e3-840f-046e3ee2a8e0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-f25d553c-da9d-42bd-9548-c70d6f7386e0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f25d553c-da9d-42bd-9548-c70d6f7386e0"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f25d553c-da9d-42bd-9548-c70d6f7386e0"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f25d553c-da9d-42bd-9548-c70d6f7386e0"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f25d553c-da9d-42bd-9548-c70d6f7386e0"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f25d553c-da9d-42bd-9548-c70d6f7386e0"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f25d553c-da9d-42bd-9548-c70d6f7386e0"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-52c02cc2-5416-4dc9-b609-7c52c5f82e34 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-0bdb84f4-0fe8-41d9-b45a-6ef0ed589573"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0bdb84f4-0fe8-41d9-b45a-6ef0ed589573"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0bdb84f4-0fe8-41d9-b45a-6ef0ed589573"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0bdb84f4-0fe8-41d9-b45a-6ef0ed589573"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0bdb84f4-0fe8-41d9-b45a-6ef0ed589573"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0bdb84f4-0fe8-41d9-b45a-6ef0ed589573"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0bdb84f4-0fe8-41d9-b45a-6ef0ed589573"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-70cf6998-275d-43c8-b4c4-efa924318217 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-63af1f01-116a-4f50-9cba-bfac7dca1d22"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-63af1f01-116a-4f50-9cba-bfac7dca1d22"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-63af1f01-116a-4f50-9cba-bfac7dca1d22"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-63af1f01-116a-4f50-9cba-bfac7dca1d22"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-63af1f01-116a-4f50-9cba-bfac7dca1d22"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-63af1f01-116a-4f50-9cba-bfac7dca1d22"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-63af1f01-116a-4f50-9cba-bfac7dca1d22"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

#s-de5529a0-68fa-45ab-90b5-72933a5dd045 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 0%;
padding-right: 0%;
}

#s-5052ccab-033e-4330-afaa-2bd8b08fd462 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 20px;
padding-left: 1%;
padding-bottom: 20px;
padding-right: 1%;
}

#s-d1ee537f-2f47-42b3-9323-8b831ab5d56c {
  max-width: 1920px;
aspect-ratio: 1920/1095;
text-align: center;
}

#s-d1ee537f-2f47-42b3-9323-8b831ab5d56c {
  margin: 0 !important;
  overflow: visible;
}

#s-d1ee537f-2f47-42b3-9323-8b831ab5d56c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d1ee537f-2f47-42b3-9323-8b831ab5d56c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d1ee537f-2f47-42b3-9323-8b831ab5d56c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d1ee537f-2f47-42b3-9323-8b831ab5d56c img.shogun-image {
  /* Add background color handling */
  
}

#s-d1ee537f-2f47-42b3-9323-8b831ab5d56c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d1ee537f-2f47-42b3-9323-8b831ab5d56c .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-d1ee537f-2f47-42b3-9323-8b831ab5d56c .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d1ee537f-2f47-42b3-9323-8b831ab5d56c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d1ee537f-2f47-42b3-9323-8b831ab5d56c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-d1ee537f-2f47-42b3-9323-8b831ab5d56c .shogun-image-content {
  
    justify-content: center;
  
}

.s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image {
  box-sizing: border-box;
}



.s-d1ee537f-2f47-42b3-9323-8b831ab5d56c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d1ee537f-2f47-42b3-9323-8b831ab5d56c {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image-container {
      position: relative;
    }

    .s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d1ee537f-2f47-42b3-9323-8b831ab5d56c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

@media (min-width: 1200px){#s-d1ee537f-2f47-42b3-9323-8b831ab5d56c {
  margin: 0 !important;
  overflow: visible;
}

#s-d1ee537f-2f47-42b3-9323-8b831ab5d56c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d1ee537f-2f47-42b3-9323-8b831ab5d56c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d1ee537f-2f47-42b3-9323-8b831ab5d56c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d1ee537f-2f47-42b3-9323-8b831ab5d56c img.shogun-image {
  /* Add background color handling */
  
}

#s-d1ee537f-2f47-42b3-9323-8b831ab5d56c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d1ee537f-2f47-42b3-9323-8b831ab5d56c .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-d1ee537f-2f47-42b3-9323-8b831ab5d56c .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d1ee537f-2f47-42b3-9323-8b831ab5d56c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d1ee537f-2f47-42b3-9323-8b831ab5d56c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-d1ee537f-2f47-42b3-9323-8b831ab5d56c .shogun-image-content {
  
    justify-content: center;
  
}

.s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image {
  box-sizing: border-box;
}



.s-d1ee537f-2f47-42b3-9323-8b831ab5d56c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d1ee537f-2f47-42b3-9323-8b831ab5d56c {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image-container {
      position: relative;
    }

    .s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d1ee537f-2f47-42b3-9323-8b831ab5d56c 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-d1ee537f-2f47-42b3-9323-8b831ab5d56c {
  margin: 0 !important;
  overflow: visible;
}

#s-d1ee537f-2f47-42b3-9323-8b831ab5d56c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d1ee537f-2f47-42b3-9323-8b831ab5d56c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d1ee537f-2f47-42b3-9323-8b831ab5d56c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d1ee537f-2f47-42b3-9323-8b831ab5d56c img.shogun-image {
  /* Add background color handling */
  
}

#s-d1ee537f-2f47-42b3-9323-8b831ab5d56c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d1ee537f-2f47-42b3-9323-8b831ab5d56c .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-d1ee537f-2f47-42b3-9323-8b831ab5d56c .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d1ee537f-2f47-42b3-9323-8b831ab5d56c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d1ee537f-2f47-42b3-9323-8b831ab5d56c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-d1ee537f-2f47-42b3-9323-8b831ab5d56c .shogun-image-content {
  
    justify-content: center;
  
}

.s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image {
  box-sizing: border-box;
}



.s-d1ee537f-2f47-42b3-9323-8b831ab5d56c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d1ee537f-2f47-42b3-9323-8b831ab5d56c {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image-container {
      position: relative;
    }

    .s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d1ee537f-2f47-42b3-9323-8b831ab5d56c 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-d1ee537f-2f47-42b3-9323-8b831ab5d56c {
  margin: 0 !important;
  overflow: visible;
}

#s-d1ee537f-2f47-42b3-9323-8b831ab5d56c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d1ee537f-2f47-42b3-9323-8b831ab5d56c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d1ee537f-2f47-42b3-9323-8b831ab5d56c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d1ee537f-2f47-42b3-9323-8b831ab5d56c img.shogun-image {
  /* Add background color handling */
  
}

#s-d1ee537f-2f47-42b3-9323-8b831ab5d56c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d1ee537f-2f47-42b3-9323-8b831ab5d56c .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-d1ee537f-2f47-42b3-9323-8b831ab5d56c .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d1ee537f-2f47-42b3-9323-8b831ab5d56c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d1ee537f-2f47-42b3-9323-8b831ab5d56c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-d1ee537f-2f47-42b3-9323-8b831ab5d56c .shogun-image-content {
  
    justify-content: center;
  
}

.s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image {
  box-sizing: border-box;
}



.s-d1ee537f-2f47-42b3-9323-8b831ab5d56c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d1ee537f-2f47-42b3-9323-8b831ab5d56c {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image-container {
      position: relative;
    }

    .s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d1ee537f-2f47-42b3-9323-8b831ab5d56c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (max-width: 767px){#s-d1ee537f-2f47-42b3-9323-8b831ab5d56c {
  margin: 0 !important;
  overflow: visible;
}

#s-d1ee537f-2f47-42b3-9323-8b831ab5d56c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d1ee537f-2f47-42b3-9323-8b831ab5d56c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d1ee537f-2f47-42b3-9323-8b831ab5d56c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d1ee537f-2f47-42b3-9323-8b831ab5d56c img.shogun-image {
  /* Add background color handling */
  
}

#s-d1ee537f-2f47-42b3-9323-8b831ab5d56c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d1ee537f-2f47-42b3-9323-8b831ab5d56c .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-d1ee537f-2f47-42b3-9323-8b831ab5d56c .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d1ee537f-2f47-42b3-9323-8b831ab5d56c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d1ee537f-2f47-42b3-9323-8b831ab5d56c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-d1ee537f-2f47-42b3-9323-8b831ab5d56c .shogun-image-content {
  
    justify-content: center;
  
}

.s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image {
  box-sizing: border-box;
}



.s-d1ee537f-2f47-42b3-9323-8b831ab5d56c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d1ee537f-2f47-42b3-9323-8b831ab5d56c {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image-container {
      position: relative;
    }

    .s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d1ee537f-2f47-42b3-9323-8b831ab5d56c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d1ee537f-2f47-42b3-9323-8b831ab5d56c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}
@media (min-width: 0px) {
[id="s-0193cf64-ba0f-4f13-80a8-93f309f90fc0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0193cf64-ba0f-4f13-80a8-93f309f90fc0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0193cf64-ba0f-4f13-80a8-93f309f90fc0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0193cf64-ba0f-4f13-80a8-93f309f90fc0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-6f855083-d1b9-4823-b545-149fd48925ea"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6f855083-d1b9-4823-b545-149fd48925ea"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6f855083-d1b9-4823-b545-149fd48925ea"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6f855083-d1b9-4823-b545-149fd48925ea"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6f855083-d1b9-4823-b545-149fd48925ea"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6f855083-d1b9-4823-b545-149fd48925ea"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6f855083-d1b9-4823-b545-149fd48925ea"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-dc28ffae-c5fb-4b1d-80dc-1c0f544e190c {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-2f0f4597-d82a-4e6f-b7b8-4198383cc761"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2f0f4597-d82a-4e6f-b7b8-4198383cc761"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2f0f4597-d82a-4e6f-b7b8-4198383cc761"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2f0f4597-d82a-4e6f-b7b8-4198383cc761"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2f0f4597-d82a-4e6f-b7b8-4198383cc761"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2f0f4597-d82a-4e6f-b7b8-4198383cc761"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2f0f4597-d82a-4e6f-b7b8-4198383cc761"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-22213c14-7b8e-42e0-b250-7964fc47442f {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-fd71c7c0-d035-4789-b12a-6ca3f8b649f9 {
  margin-top: -10px;
margin-bottom: -10px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-fd71c7c0-d035-4789-b12a-6ca3f8b649f9 hr {
  border-top: 1px solid #ddd;
}

@media (min-width: 0px) {
[id="s-d9c18ade-7a29-41d2-a1fc-9d325531c75a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d9c18ade-7a29-41d2-a1fc-9d325531c75a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d9c18ade-7a29-41d2-a1fc-9d325531c75a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d9c18ade-7a29-41d2-a1fc-9d325531c75a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-737fd799-67d2-4126-aa3e-ac98b9265500"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-737fd799-67d2-4126-aa3e-ac98b9265500"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-737fd799-67d2-4126-aa3e-ac98b9265500"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-737fd799-67d2-4126-aa3e-ac98b9265500"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-737fd799-67d2-4126-aa3e-ac98b9265500"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-737fd799-67d2-4126-aa3e-ac98b9265500"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-737fd799-67d2-4126-aa3e-ac98b9265500"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-8089bee3-757a-45b3-99c2-75fa942c38a3 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-9cbb2ec2-66b5-49a7-9c44-fa9003aa5e35"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9cbb2ec2-66b5-49a7-9c44-fa9003aa5e35"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-9cbb2ec2-66b5-49a7-9c44-fa9003aa5e35"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9cbb2ec2-66b5-49a7-9c44-fa9003aa5e35"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-9cbb2ec2-66b5-49a7-9c44-fa9003aa5e35"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9cbb2ec2-66b5-49a7-9c44-fa9003aa5e35"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-9cbb2ec2-66b5-49a7-9c44-fa9003aa5e35"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-79688f30-6b21-462d-9625-431353fe146e {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-f701c53a-6571-4252-9f65-bd021b898ea7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f701c53a-6571-4252-9f65-bd021b898ea7"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-f701c53a-6571-4252-9f65-bd021b898ea7"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f701c53a-6571-4252-9f65-bd021b898ea7"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-f701c53a-6571-4252-9f65-bd021b898ea7"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f701c53a-6571-4252-9f65-bd021b898ea7"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-f701c53a-6571-4252-9f65-bd021b898ea7"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

#s-f8574663-d2e6-4386-8918-8aac713c6289 {
  max-width: 1920px;
aspect-ratio: 1920/1095;
text-align: center;
}

#s-f8574663-d2e6-4386-8918-8aac713c6289 {
  margin: 0 !important;
  overflow: visible;
}

#s-f8574663-d2e6-4386-8918-8aac713c6289-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f8574663-d2e6-4386-8918-8aac713c6289 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f8574663-d2e6-4386-8918-8aac713c6289 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f8574663-d2e6-4386-8918-8aac713c6289 img.shogun-image {
  /* Add background color handling */
  
}

#s-f8574663-d2e6-4386-8918-8aac713c6289 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f8574663-d2e6-4386-8918-8aac713c6289 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-f8574663-d2e6-4386-8918-8aac713c6289 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f8574663-d2e6-4386-8918-8aac713c6289 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f8574663-d2e6-4386-8918-8aac713c6289 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-f8574663-d2e6-4386-8918-8aac713c6289 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f8574663-d2e6-4386-8918-8aac713c6289.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image {
  box-sizing: border-box;
}



.s-f8574663-d2e6-4386-8918-8aac713c6289 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f8574663-d2e6-4386-8918-8aac713c6289 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image-container {
      position: relative;
    }

    .s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f8574663-d2e6-4386-8918-8aac713c6289 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

@media (min-width: 1200px){#s-f8574663-d2e6-4386-8918-8aac713c6289 {
  margin: 0 !important;
  overflow: visible;
}

#s-f8574663-d2e6-4386-8918-8aac713c6289-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f8574663-d2e6-4386-8918-8aac713c6289 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f8574663-d2e6-4386-8918-8aac713c6289 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f8574663-d2e6-4386-8918-8aac713c6289 img.shogun-image {
  /* Add background color handling */
  
}

#s-f8574663-d2e6-4386-8918-8aac713c6289 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f8574663-d2e6-4386-8918-8aac713c6289 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-f8574663-d2e6-4386-8918-8aac713c6289 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f8574663-d2e6-4386-8918-8aac713c6289 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f8574663-d2e6-4386-8918-8aac713c6289 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-f8574663-d2e6-4386-8918-8aac713c6289 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f8574663-d2e6-4386-8918-8aac713c6289.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image {
  box-sizing: border-box;
}



.s-f8574663-d2e6-4386-8918-8aac713c6289 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f8574663-d2e6-4386-8918-8aac713c6289 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image-container {
      position: relative;
    }

    .s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f8574663-d2e6-4386-8918-8aac713c6289 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-f8574663-d2e6-4386-8918-8aac713c6289 {
  margin: 0 !important;
  overflow: visible;
}

#s-f8574663-d2e6-4386-8918-8aac713c6289-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f8574663-d2e6-4386-8918-8aac713c6289 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f8574663-d2e6-4386-8918-8aac713c6289 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f8574663-d2e6-4386-8918-8aac713c6289 img.shogun-image {
  /* Add background color handling */
  
}

#s-f8574663-d2e6-4386-8918-8aac713c6289 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f8574663-d2e6-4386-8918-8aac713c6289 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-f8574663-d2e6-4386-8918-8aac713c6289 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f8574663-d2e6-4386-8918-8aac713c6289 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f8574663-d2e6-4386-8918-8aac713c6289 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-f8574663-d2e6-4386-8918-8aac713c6289 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f8574663-d2e6-4386-8918-8aac713c6289.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image {
  box-sizing: border-box;
}



.s-f8574663-d2e6-4386-8918-8aac713c6289 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f8574663-d2e6-4386-8918-8aac713c6289 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image-container {
      position: relative;
    }

    .s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f8574663-d2e6-4386-8918-8aac713c6289 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-f8574663-d2e6-4386-8918-8aac713c6289 {
  margin: 0 !important;
  overflow: visible;
}

#s-f8574663-d2e6-4386-8918-8aac713c6289-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f8574663-d2e6-4386-8918-8aac713c6289 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f8574663-d2e6-4386-8918-8aac713c6289 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f8574663-d2e6-4386-8918-8aac713c6289 img.shogun-image {
  /* Add background color handling */
  
}

#s-f8574663-d2e6-4386-8918-8aac713c6289 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f8574663-d2e6-4386-8918-8aac713c6289 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-f8574663-d2e6-4386-8918-8aac713c6289 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f8574663-d2e6-4386-8918-8aac713c6289 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f8574663-d2e6-4386-8918-8aac713c6289 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-f8574663-d2e6-4386-8918-8aac713c6289 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f8574663-d2e6-4386-8918-8aac713c6289.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image {
  box-sizing: border-box;
}



.s-f8574663-d2e6-4386-8918-8aac713c6289 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f8574663-d2e6-4386-8918-8aac713c6289 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image-container {
      position: relative;
    }

    .s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f8574663-d2e6-4386-8918-8aac713c6289 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (max-width: 767px){#s-f8574663-d2e6-4386-8918-8aac713c6289 {
  margin: 0 !important;
  overflow: visible;
}

#s-f8574663-d2e6-4386-8918-8aac713c6289-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f8574663-d2e6-4386-8918-8aac713c6289 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f8574663-d2e6-4386-8918-8aac713c6289 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f8574663-d2e6-4386-8918-8aac713c6289 img.shogun-image {
  /* Add background color handling */
  
}

#s-f8574663-d2e6-4386-8918-8aac713c6289 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f8574663-d2e6-4386-8918-8aac713c6289 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-f8574663-d2e6-4386-8918-8aac713c6289 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f8574663-d2e6-4386-8918-8aac713c6289 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f8574663-d2e6-4386-8918-8aac713c6289 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-f8574663-d2e6-4386-8918-8aac713c6289 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f8574663-d2e6-4386-8918-8aac713c6289.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image {
  box-sizing: border-box;
}



.s-f8574663-d2e6-4386-8918-8aac713c6289 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f8574663-d2e6-4386-8918-8aac713c6289 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image-container {
      position: relative;
    }

    .s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f8574663-d2e6-4386-8918-8aac713c6289.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f8574663-d2e6-4386-8918-8aac713c6289 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}
#s-20ba80a8-a6a6-4f50-8a47-a22e9804041b {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 1%;
padding-right: 1%;
}

#s-0c693688-9f3d-4779-931f-529bf19931d0 {
  margin-top: -1px;
margin-left: 4%;
margin-bottom: -1px;
margin-right: 4%;
padding-top: 20px;
padding-left: 1%;
padding-bottom: 20px;
padding-right: 1%;
}

@media (min-width: 0px) {
[id="s-b18b4265-a17d-4329-81f4-6f66090f9677"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b18b4265-a17d-4329-81f4-6f66090f9677"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b18b4265-a17d-4329-81f4-6f66090f9677"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b18b4265-a17d-4329-81f4-6f66090f9677"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-861bfe02-ee80-4c01-acb8-4cc9926c00ad"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-861bfe02-ee80-4c01-acb8-4cc9926c00ad"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-861bfe02-ee80-4c01-acb8-4cc9926c00ad"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-861bfe02-ee80-4c01-acb8-4cc9926c00ad"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-861bfe02-ee80-4c01-acb8-4cc9926c00ad"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-861bfe02-ee80-4c01-acb8-4cc9926c00ad"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-861bfe02-ee80-4c01-acb8-4cc9926c00ad"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-20f6ccbf-9083-432f-9bd2-e3186fb00e5b {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-86cd3292-503a-4ab2-a728-819d3693d499"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-86cd3292-503a-4ab2-a728-819d3693d499"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-86cd3292-503a-4ab2-a728-819d3693d499"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-86cd3292-503a-4ab2-a728-819d3693d499"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-86cd3292-503a-4ab2-a728-819d3693d499"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-86cd3292-503a-4ab2-a728-819d3693d499"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-86cd3292-503a-4ab2-a728-819d3693d499"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-31579631-143c-4fab-b988-662cc529de13 {
  background-color: rgba(232, 232, 232, 1);
}
}
.shg-sld-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

.shg-sld-slides {
  word-break: break-word;
  position: relative;
  overflow-x: hidden;
}

.shg-sld-slides-padded {
  padding: 0 35px;
}

.shg-sld-nav-button {
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: 0;
  width: 35px;
  min-height: 35px;
  height: 100%;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.shg-sld-nav-button > svg {
  height: 100%;
  width: 100%;
}

.shg-sld-nav-button.shg-sld-left {
  left: 0;
}

.shg-sld-nav-button.shg-sld-left-over-content {
  left: 2%;
}

.shg-sld-nav-button.shg-sld-right {
  right: 0;
}

.shg-sld-nav-button.shg-sld-right-over-content {
  right: 2%;
}

.shg-sld-nav-button.shg-sld-disabled {
  cursor: default;
  opacity: 0.2;
}

.shg-sld-item {
  display: none;
}

.shg-sld-item.shg-sld-active {
  display: block;
}

.shg-sld-dots {
  margin-top: 10px;
  text-align: center;
  z-index: 1;
  position: relative;
}

.shg-sld-dots-on-top {
  margin-top: -30px !important;
}

.shg-sld-dot {
  cursor: pointer;
  display: inline-block !important;
  height: 14px;
  width: 14px;
  border-radius: 100%;
  margin-left: 5px;
  opacity: 0.5;
}

.shg-sld-dot:first-child {
  margin-left: 0px;
}

.shg-sld-dot.shg-sld-active {
  opacity: 1;
}

@keyframes shg-sld-fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

#s-02c613d1-3864-4195-8570-2384bd2b8db9 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-02c613d1-3864-4195-8570-2384bd2b8db9 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-02c613d1-3864-4195-8570-2384bd2b8db9 .shg-sld-nav-button.shg-sld-left,
#s-02c613d1-3864-4195-8570-2384bd2b8db9 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 {
  margin-left: auto;
margin-right: auto;
max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 {
  margin: 0 !important;
  overflow: visible;
}

#s-cc720793-6f4a-4f45-a81c-5d32e3dbb642-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 img.shogun-image {
  /* Add background color handling */
  
}

#s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 .shogun-image-content {
  
    justify-content: center;
  
}

.s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image {
  box-sizing: border-box;
}



.s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image-container {
      position: relative;
    }

    .s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 {
  margin: 0 !important;
  overflow: visible;
}

#s-cc720793-6f4a-4f45-a81c-5d32e3dbb642-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 img.shogun-image {
  /* Add background color handling */
  
}

#s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 .shogun-image-content {
  
    justify-content: center;
  
}

.s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image {
  box-sizing: border-box;
}



.s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image-container {
      position: relative;
    }

    .s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 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-cc720793-6f4a-4f45-a81c-5d32e3dbb642 {
  margin: 0 !important;
  overflow: visible;
}

#s-cc720793-6f4a-4f45-a81c-5d32e3dbb642-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 img.shogun-image {
  /* Add background color handling */
  
}

#s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 .shogun-image-content {
  
    justify-content: center;
  
}

.s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image {
  box-sizing: border-box;
}



.s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image-container {
      position: relative;
    }

    .s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 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-cc720793-6f4a-4f45-a81c-5d32e3dbb642 {
  margin: 0 !important;
  overflow: visible;
}

#s-cc720793-6f4a-4f45-a81c-5d32e3dbb642-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 img.shogun-image {
  /* Add background color handling */
  
}

#s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 .shogun-image-content {
  
    justify-content: center;
  
}

.s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image {
  box-sizing: border-box;
}



.s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image-container {
      position: relative;
    }

    .s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 {
  margin: 0 !important;
  overflow: visible;
}

#s-cc720793-6f4a-4f45-a81c-5d32e3dbb642-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 img.shogun-image {
  /* Add background color handling */
  
}

#s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 .shogun-image-content {
  
    justify-content: center;
  
}

.s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image {
  box-sizing: border-box;
}



.s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image-container {
      position: relative;
    }

    .s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cc720793-6f4a-4f45-a81c-5d32e3dbb642.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cc720793-6f4a-4f45-a81c-5d32e3dbb642 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 {
  margin: 0 !important;
  overflow: visible;
}

#s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 img.shogun-image {
  /* Add background color handling */
  
}

#s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image {
  box-sizing: border-box;
}



.s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image-container {
      position: relative;
    }

    .s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 {
  margin: 0 !important;
  overflow: visible;
}

#s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 img.shogun-image {
  /* Add background color handling */
  
}

#s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image {
  box-sizing: border-box;
}



.s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image-container {
      position: relative;
    }

    .s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 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-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 {
  margin: 0 !important;
  overflow: visible;
}

#s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 img.shogun-image {
  /* Add background color handling */
  
}

#s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image {
  box-sizing: border-box;
}



.s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image-container {
      position: relative;
    }

    .s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 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-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 {
  margin: 0 !important;
  overflow: visible;
}

#s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 img.shogun-image {
  /* Add background color handling */
  
}

#s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image {
  box-sizing: border-box;
}



.s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image-container {
      position: relative;
    }

    .s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 {
  margin: 0 !important;
  overflow: visible;
}

#s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 img.shogun-image {
  /* Add background color handling */
  
}

#s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image {
  box-sizing: border-box;
}



.s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image-container {
      position: relative;
    }

    .s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5e9a6f6f-a5f4-4cca-b09c-7a44502c45f8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 {
  margin: 0 !important;
  overflow: visible;
}

#s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 img.shogun-image {
  /* Add background color handling */
  
}

#s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 .shogun-image-content {
  
    justify-content: center;
  
}

.s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shg-align-container {
  display: flex;
  justify-content: center
}

.s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image {
  box-sizing: border-box;
}



.s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image-container {
      position: relative;
    }

    .s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 {
  margin: 0 !important;
  overflow: visible;
}

#s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 img.shogun-image {
  /* Add background color handling */
  
}

#s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 .shogun-image-content {
  
    justify-content: center;
  
}

.s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shg-align-container {
  display: flex;
  justify-content: center
}

.s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image {
  box-sizing: border-box;
}



.s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image-container {
      position: relative;
    }

    .s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 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-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 {
  margin: 0 !important;
  overflow: visible;
}

#s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 img.shogun-image {
  /* Add background color handling */
  
}

#s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 .shogun-image-content {
  
    justify-content: center;
  
}

.s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shg-align-container {
  display: flex;
  justify-content: center
}

.s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image {
  box-sizing: border-box;
}



.s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image-container {
      position: relative;
    }

    .s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 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-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 {
  margin: 0 !important;
  overflow: visible;
}

#s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 img.shogun-image {
  /* Add background color handling */
  
}

#s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 .shogun-image-content {
  
    justify-content: center;
  
}

.s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shg-align-container {
  display: flex;
  justify-content: center
}

.s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image {
  box-sizing: border-box;
}



.s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image-container {
      position: relative;
    }

    .s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 {
  margin: 0 !important;
  overflow: visible;
}

#s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 img.shogun-image {
  /* Add background color handling */
  
}

#s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 .shogun-image-content {
  
    justify-content: center;
  
}

.s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shg-align-container {
  display: flex;
  justify-content: center
}

.s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image {
  box-sizing: border-box;
}



.s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image-container {
      position: relative;
    }

    .s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-36e6ad08-6873-47b1-ae63-7cd8e23b3d40 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-542bcaf2-b5bd-40f5-9248-3586a86309b9 {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-542bcaf2-b5bd-40f5-9248-3586a86309b9 {
  margin: 0 !important;
  overflow: visible;
}

#s-542bcaf2-b5bd-40f5-9248-3586a86309b9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-542bcaf2-b5bd-40f5-9248-3586a86309b9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-542bcaf2-b5bd-40f5-9248-3586a86309b9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-542bcaf2-b5bd-40f5-9248-3586a86309b9 img.shogun-image {
  /* Add background color handling */
  
}

#s-542bcaf2-b5bd-40f5-9248-3586a86309b9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-542bcaf2-b5bd-40f5-9248-3586a86309b9 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-542bcaf2-b5bd-40f5-9248-3586a86309b9 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-542bcaf2-b5bd-40f5-9248-3586a86309b9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-542bcaf2-b5bd-40f5-9248-3586a86309b9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-542bcaf2-b5bd-40f5-9248-3586a86309b9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image {
  box-sizing: border-box;
}



.s-542bcaf2-b5bd-40f5-9248-3586a86309b9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-542bcaf2-b5bd-40f5-9248-3586a86309b9 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image-container {
      position: relative;
    }

    .s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-542bcaf2-b5bd-40f5-9248-3586a86309b9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-542bcaf2-b5bd-40f5-9248-3586a86309b9 {
  margin: 0 !important;
  overflow: visible;
}

#s-542bcaf2-b5bd-40f5-9248-3586a86309b9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-542bcaf2-b5bd-40f5-9248-3586a86309b9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-542bcaf2-b5bd-40f5-9248-3586a86309b9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-542bcaf2-b5bd-40f5-9248-3586a86309b9 img.shogun-image {
  /* Add background color handling */
  
}

#s-542bcaf2-b5bd-40f5-9248-3586a86309b9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-542bcaf2-b5bd-40f5-9248-3586a86309b9 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-542bcaf2-b5bd-40f5-9248-3586a86309b9 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-542bcaf2-b5bd-40f5-9248-3586a86309b9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-542bcaf2-b5bd-40f5-9248-3586a86309b9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-542bcaf2-b5bd-40f5-9248-3586a86309b9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image {
  box-sizing: border-box;
}



.s-542bcaf2-b5bd-40f5-9248-3586a86309b9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-542bcaf2-b5bd-40f5-9248-3586a86309b9 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image-container {
      position: relative;
    }

    .s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-542bcaf2-b5bd-40f5-9248-3586a86309b9 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-542bcaf2-b5bd-40f5-9248-3586a86309b9 {
  margin: 0 !important;
  overflow: visible;
}

#s-542bcaf2-b5bd-40f5-9248-3586a86309b9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-542bcaf2-b5bd-40f5-9248-3586a86309b9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-542bcaf2-b5bd-40f5-9248-3586a86309b9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-542bcaf2-b5bd-40f5-9248-3586a86309b9 img.shogun-image {
  /* Add background color handling */
  
}

#s-542bcaf2-b5bd-40f5-9248-3586a86309b9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-542bcaf2-b5bd-40f5-9248-3586a86309b9 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-542bcaf2-b5bd-40f5-9248-3586a86309b9 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-542bcaf2-b5bd-40f5-9248-3586a86309b9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-542bcaf2-b5bd-40f5-9248-3586a86309b9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-542bcaf2-b5bd-40f5-9248-3586a86309b9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image {
  box-sizing: border-box;
}



.s-542bcaf2-b5bd-40f5-9248-3586a86309b9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-542bcaf2-b5bd-40f5-9248-3586a86309b9 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image-container {
      position: relative;
    }

    .s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-542bcaf2-b5bd-40f5-9248-3586a86309b9 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-542bcaf2-b5bd-40f5-9248-3586a86309b9 {
  margin: 0 !important;
  overflow: visible;
}

#s-542bcaf2-b5bd-40f5-9248-3586a86309b9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-542bcaf2-b5bd-40f5-9248-3586a86309b9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-542bcaf2-b5bd-40f5-9248-3586a86309b9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-542bcaf2-b5bd-40f5-9248-3586a86309b9 img.shogun-image {
  /* Add background color handling */
  
}

#s-542bcaf2-b5bd-40f5-9248-3586a86309b9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-542bcaf2-b5bd-40f5-9248-3586a86309b9 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-542bcaf2-b5bd-40f5-9248-3586a86309b9 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-542bcaf2-b5bd-40f5-9248-3586a86309b9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-542bcaf2-b5bd-40f5-9248-3586a86309b9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-542bcaf2-b5bd-40f5-9248-3586a86309b9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image {
  box-sizing: border-box;
}



.s-542bcaf2-b5bd-40f5-9248-3586a86309b9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-542bcaf2-b5bd-40f5-9248-3586a86309b9 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image-container {
      position: relative;
    }

    .s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-542bcaf2-b5bd-40f5-9248-3586a86309b9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-542bcaf2-b5bd-40f5-9248-3586a86309b9 {
  margin: 0 !important;
  overflow: visible;
}

#s-542bcaf2-b5bd-40f5-9248-3586a86309b9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-542bcaf2-b5bd-40f5-9248-3586a86309b9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-542bcaf2-b5bd-40f5-9248-3586a86309b9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-542bcaf2-b5bd-40f5-9248-3586a86309b9 img.shogun-image {
  /* Add background color handling */
  
}

#s-542bcaf2-b5bd-40f5-9248-3586a86309b9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-542bcaf2-b5bd-40f5-9248-3586a86309b9 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-542bcaf2-b5bd-40f5-9248-3586a86309b9 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-542bcaf2-b5bd-40f5-9248-3586a86309b9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-542bcaf2-b5bd-40f5-9248-3586a86309b9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-542bcaf2-b5bd-40f5-9248-3586a86309b9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image {
  box-sizing: border-box;
}



.s-542bcaf2-b5bd-40f5-9248-3586a86309b9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-542bcaf2-b5bd-40f5-9248-3586a86309b9 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image-container {
      position: relative;
    }

    .s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-542bcaf2-b5bd-40f5-9248-3586a86309b9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-542bcaf2-b5bd-40f5-9248-3586a86309b9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-0434d84b-8bf3-42ce-809f-45d50d2ce878 {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-0434d84b-8bf3-42ce-809f-45d50d2ce878 {
  margin: 0 !important;
  overflow: visible;
}

#s-0434d84b-8bf3-42ce-809f-45d50d2ce878-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0434d84b-8bf3-42ce-809f-45d50d2ce878 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0434d84b-8bf3-42ce-809f-45d50d2ce878 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0434d84b-8bf3-42ce-809f-45d50d2ce878 img.shogun-image {
  /* Add background color handling */
  
}

#s-0434d84b-8bf3-42ce-809f-45d50d2ce878 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0434d84b-8bf3-42ce-809f-45d50d2ce878 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0434d84b-8bf3-42ce-809f-45d50d2ce878 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0434d84b-8bf3-42ce-809f-45d50d2ce878 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0434d84b-8bf3-42ce-809f-45d50d2ce878 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0434d84b-8bf3-42ce-809f-45d50d2ce878 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image {
  box-sizing: border-box;
}



.s-0434d84b-8bf3-42ce-809f-45d50d2ce878 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0434d84b-8bf3-42ce-809f-45d50d2ce878 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image-container {
      position: relative;
    }

    .s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0434d84b-8bf3-42ce-809f-45d50d2ce878 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-0434d84b-8bf3-42ce-809f-45d50d2ce878 {
  margin: 0 !important;
  overflow: visible;
}

#s-0434d84b-8bf3-42ce-809f-45d50d2ce878-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0434d84b-8bf3-42ce-809f-45d50d2ce878 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0434d84b-8bf3-42ce-809f-45d50d2ce878 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0434d84b-8bf3-42ce-809f-45d50d2ce878 img.shogun-image {
  /* Add background color handling */
  
}

#s-0434d84b-8bf3-42ce-809f-45d50d2ce878 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0434d84b-8bf3-42ce-809f-45d50d2ce878 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0434d84b-8bf3-42ce-809f-45d50d2ce878 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0434d84b-8bf3-42ce-809f-45d50d2ce878 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0434d84b-8bf3-42ce-809f-45d50d2ce878 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0434d84b-8bf3-42ce-809f-45d50d2ce878 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image {
  box-sizing: border-box;
}



.s-0434d84b-8bf3-42ce-809f-45d50d2ce878 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0434d84b-8bf3-42ce-809f-45d50d2ce878 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image-container {
      position: relative;
    }

    .s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0434d84b-8bf3-42ce-809f-45d50d2ce878 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-0434d84b-8bf3-42ce-809f-45d50d2ce878 {
  margin: 0 !important;
  overflow: visible;
}

#s-0434d84b-8bf3-42ce-809f-45d50d2ce878-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0434d84b-8bf3-42ce-809f-45d50d2ce878 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0434d84b-8bf3-42ce-809f-45d50d2ce878 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0434d84b-8bf3-42ce-809f-45d50d2ce878 img.shogun-image {
  /* Add background color handling */
  
}

#s-0434d84b-8bf3-42ce-809f-45d50d2ce878 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0434d84b-8bf3-42ce-809f-45d50d2ce878 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0434d84b-8bf3-42ce-809f-45d50d2ce878 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0434d84b-8bf3-42ce-809f-45d50d2ce878 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0434d84b-8bf3-42ce-809f-45d50d2ce878 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0434d84b-8bf3-42ce-809f-45d50d2ce878 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image {
  box-sizing: border-box;
}



.s-0434d84b-8bf3-42ce-809f-45d50d2ce878 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0434d84b-8bf3-42ce-809f-45d50d2ce878 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image-container {
      position: relative;
    }

    .s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0434d84b-8bf3-42ce-809f-45d50d2ce878 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-0434d84b-8bf3-42ce-809f-45d50d2ce878 {
  margin: 0 !important;
  overflow: visible;
}

#s-0434d84b-8bf3-42ce-809f-45d50d2ce878-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0434d84b-8bf3-42ce-809f-45d50d2ce878 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0434d84b-8bf3-42ce-809f-45d50d2ce878 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0434d84b-8bf3-42ce-809f-45d50d2ce878 img.shogun-image {
  /* Add background color handling */
  
}

#s-0434d84b-8bf3-42ce-809f-45d50d2ce878 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0434d84b-8bf3-42ce-809f-45d50d2ce878 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0434d84b-8bf3-42ce-809f-45d50d2ce878 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0434d84b-8bf3-42ce-809f-45d50d2ce878 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0434d84b-8bf3-42ce-809f-45d50d2ce878 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0434d84b-8bf3-42ce-809f-45d50d2ce878 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image {
  box-sizing: border-box;
}



.s-0434d84b-8bf3-42ce-809f-45d50d2ce878 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0434d84b-8bf3-42ce-809f-45d50d2ce878 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image-container {
      position: relative;
    }

    .s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0434d84b-8bf3-42ce-809f-45d50d2ce878 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-0434d84b-8bf3-42ce-809f-45d50d2ce878 {
  margin: 0 !important;
  overflow: visible;
}

#s-0434d84b-8bf3-42ce-809f-45d50d2ce878-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0434d84b-8bf3-42ce-809f-45d50d2ce878 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0434d84b-8bf3-42ce-809f-45d50d2ce878 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0434d84b-8bf3-42ce-809f-45d50d2ce878 img.shogun-image {
  /* Add background color handling */
  
}

#s-0434d84b-8bf3-42ce-809f-45d50d2ce878 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0434d84b-8bf3-42ce-809f-45d50d2ce878 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0434d84b-8bf3-42ce-809f-45d50d2ce878 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0434d84b-8bf3-42ce-809f-45d50d2ce878 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0434d84b-8bf3-42ce-809f-45d50d2ce878 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0434d84b-8bf3-42ce-809f-45d50d2ce878 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image {
  box-sizing: border-box;
}



.s-0434d84b-8bf3-42ce-809f-45d50d2ce878 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0434d84b-8bf3-42ce-809f-45d50d2ce878 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image-container {
      position: relative;
    }

    .s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0434d84b-8bf3-42ce-809f-45d50d2ce878.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0434d84b-8bf3-42ce-809f-45d50d2ce878 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-a66c8e30-1743-4bad-9afb-2eafd57e5462 {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-a66c8e30-1743-4bad-9afb-2eafd57e5462 {
  margin: 0 !important;
  overflow: visible;
}

#s-a66c8e30-1743-4bad-9afb-2eafd57e5462-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a66c8e30-1743-4bad-9afb-2eafd57e5462 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a66c8e30-1743-4bad-9afb-2eafd57e5462 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a66c8e30-1743-4bad-9afb-2eafd57e5462 img.shogun-image {
  /* Add background color handling */
  
}

#s-a66c8e30-1743-4bad-9afb-2eafd57e5462 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a66c8e30-1743-4bad-9afb-2eafd57e5462 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-a66c8e30-1743-4bad-9afb-2eafd57e5462 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a66c8e30-1743-4bad-9afb-2eafd57e5462 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a66c8e30-1743-4bad-9afb-2eafd57e5462 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-a66c8e30-1743-4bad-9afb-2eafd57e5462 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image {
  box-sizing: border-box;
}



.s-a66c8e30-1743-4bad-9afb-2eafd57e5462 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a66c8e30-1743-4bad-9afb-2eafd57e5462 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image-container {
      position: relative;
    }

    .s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a66c8e30-1743-4bad-9afb-2eafd57e5462 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-a66c8e30-1743-4bad-9afb-2eafd57e5462 {
  margin: 0 !important;
  overflow: visible;
}

#s-a66c8e30-1743-4bad-9afb-2eafd57e5462-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a66c8e30-1743-4bad-9afb-2eafd57e5462 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a66c8e30-1743-4bad-9afb-2eafd57e5462 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a66c8e30-1743-4bad-9afb-2eafd57e5462 img.shogun-image {
  /* Add background color handling */
  
}

#s-a66c8e30-1743-4bad-9afb-2eafd57e5462 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a66c8e30-1743-4bad-9afb-2eafd57e5462 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-a66c8e30-1743-4bad-9afb-2eafd57e5462 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a66c8e30-1743-4bad-9afb-2eafd57e5462 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a66c8e30-1743-4bad-9afb-2eafd57e5462 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-a66c8e30-1743-4bad-9afb-2eafd57e5462 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image {
  box-sizing: border-box;
}



.s-a66c8e30-1743-4bad-9afb-2eafd57e5462 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a66c8e30-1743-4bad-9afb-2eafd57e5462 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image-container {
      position: relative;
    }

    .s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a66c8e30-1743-4bad-9afb-2eafd57e5462 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-a66c8e30-1743-4bad-9afb-2eafd57e5462 {
  margin: 0 !important;
  overflow: visible;
}

#s-a66c8e30-1743-4bad-9afb-2eafd57e5462-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a66c8e30-1743-4bad-9afb-2eafd57e5462 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a66c8e30-1743-4bad-9afb-2eafd57e5462 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a66c8e30-1743-4bad-9afb-2eafd57e5462 img.shogun-image {
  /* Add background color handling */
  
}

#s-a66c8e30-1743-4bad-9afb-2eafd57e5462 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a66c8e30-1743-4bad-9afb-2eafd57e5462 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-a66c8e30-1743-4bad-9afb-2eafd57e5462 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a66c8e30-1743-4bad-9afb-2eafd57e5462 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a66c8e30-1743-4bad-9afb-2eafd57e5462 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-a66c8e30-1743-4bad-9afb-2eafd57e5462 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image {
  box-sizing: border-box;
}



.s-a66c8e30-1743-4bad-9afb-2eafd57e5462 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a66c8e30-1743-4bad-9afb-2eafd57e5462 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image-container {
      position: relative;
    }

    .s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a66c8e30-1743-4bad-9afb-2eafd57e5462 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-a66c8e30-1743-4bad-9afb-2eafd57e5462 {
  margin: 0 !important;
  overflow: visible;
}

#s-a66c8e30-1743-4bad-9afb-2eafd57e5462-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a66c8e30-1743-4bad-9afb-2eafd57e5462 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a66c8e30-1743-4bad-9afb-2eafd57e5462 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a66c8e30-1743-4bad-9afb-2eafd57e5462 img.shogun-image {
  /* Add background color handling */
  
}

#s-a66c8e30-1743-4bad-9afb-2eafd57e5462 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a66c8e30-1743-4bad-9afb-2eafd57e5462 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-a66c8e30-1743-4bad-9afb-2eafd57e5462 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a66c8e30-1743-4bad-9afb-2eafd57e5462 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a66c8e30-1743-4bad-9afb-2eafd57e5462 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-a66c8e30-1743-4bad-9afb-2eafd57e5462 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image {
  box-sizing: border-box;
}



.s-a66c8e30-1743-4bad-9afb-2eafd57e5462 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a66c8e30-1743-4bad-9afb-2eafd57e5462 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image-container {
      position: relative;
    }

    .s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a66c8e30-1743-4bad-9afb-2eafd57e5462 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-a66c8e30-1743-4bad-9afb-2eafd57e5462 {
  margin: 0 !important;
  overflow: visible;
}

#s-a66c8e30-1743-4bad-9afb-2eafd57e5462-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a66c8e30-1743-4bad-9afb-2eafd57e5462 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a66c8e30-1743-4bad-9afb-2eafd57e5462 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a66c8e30-1743-4bad-9afb-2eafd57e5462 img.shogun-image {
  /* Add background color handling */
  
}

#s-a66c8e30-1743-4bad-9afb-2eafd57e5462 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a66c8e30-1743-4bad-9afb-2eafd57e5462 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-a66c8e30-1743-4bad-9afb-2eafd57e5462 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a66c8e30-1743-4bad-9afb-2eafd57e5462 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a66c8e30-1743-4bad-9afb-2eafd57e5462 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-a66c8e30-1743-4bad-9afb-2eafd57e5462 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image {
  box-sizing: border-box;
}



.s-a66c8e30-1743-4bad-9afb-2eafd57e5462 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a66c8e30-1743-4bad-9afb-2eafd57e5462 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image-container {
      position: relative;
    }

    .s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a66c8e30-1743-4bad-9afb-2eafd57e5462.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a66c8e30-1743-4bad-9afb-2eafd57e5462 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 {
  margin: 0 !important;
  overflow: visible;
}

#s-9eab24a2-644d-4f6b-a221-2ccb114afdb0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 img.shogun-image {
  /* Add background color handling */
  
}

#s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image {
  box-sizing: border-box;
}



.s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image-container {
      position: relative;
    }

    .s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 {
  margin: 0 !important;
  overflow: visible;
}

#s-9eab24a2-644d-4f6b-a221-2ccb114afdb0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 img.shogun-image {
  /* Add background color handling */
  
}

#s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image {
  box-sizing: border-box;
}



.s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image-container {
      position: relative;
    }

    .s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 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-9eab24a2-644d-4f6b-a221-2ccb114afdb0 {
  margin: 0 !important;
  overflow: visible;
}

#s-9eab24a2-644d-4f6b-a221-2ccb114afdb0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 img.shogun-image {
  /* Add background color handling */
  
}

#s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image {
  box-sizing: border-box;
}



.s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image-container {
      position: relative;
    }

    .s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 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-9eab24a2-644d-4f6b-a221-2ccb114afdb0 {
  margin: 0 !important;
  overflow: visible;
}

#s-9eab24a2-644d-4f6b-a221-2ccb114afdb0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 img.shogun-image {
  /* Add background color handling */
  
}

#s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image {
  box-sizing: border-box;
}



.s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image-container {
      position: relative;
    }

    .s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 {
  margin: 0 !important;
  overflow: visible;
}

#s-9eab24a2-644d-4f6b-a221-2ccb114afdb0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 img.shogun-image {
  /* Add background color handling */
  
}

#s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image {
  box-sizing: border-box;
}



.s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image-container {
      position: relative;
    }

    .s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9eab24a2-644d-4f6b-a221-2ccb114afdb0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9eab24a2-644d-4f6b-a221-2ccb114afdb0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-f84aef9b-8752-42ad-b46c-bce45c56b239 {
  max-width: 1464px;
text-align: center;
}

#s-f84aef9b-8752-42ad-b46c-bce45c56b239 {
  margin: 0 !important;
  overflow: visible;
}

#s-f84aef9b-8752-42ad-b46c-bce45c56b239-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f84aef9b-8752-42ad-b46c-bce45c56b239 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f84aef9b-8752-42ad-b46c-bce45c56b239 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f84aef9b-8752-42ad-b46c-bce45c56b239 img.shogun-image {
  /* Add background color handling */
  
}

#s-f84aef9b-8752-42ad-b46c-bce45c56b239 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-f84aef9b-8752-42ad-b46c-bce45c56b239 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f84aef9b-8752-42ad-b46c-bce45c56b239.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f84aef9b-8752-42ad-b46c-bce45c56b239.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f84aef9b-8752-42ad-b46c-bce45c56b239.shogun-image {
  box-sizing: border-box;
}



.s-f84aef9b-8752-42ad-b46c-bce45c56b239 img.shogun-image {
  
}


@media (min-width: 1200px){#s-f84aef9b-8752-42ad-b46c-bce45c56b239 {
  margin: 0 !important;
  overflow: visible;
}

#s-f84aef9b-8752-42ad-b46c-bce45c56b239-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f84aef9b-8752-42ad-b46c-bce45c56b239 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f84aef9b-8752-42ad-b46c-bce45c56b239 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f84aef9b-8752-42ad-b46c-bce45c56b239 img.shogun-image {
  /* Add background color handling */
  
}

#s-f84aef9b-8752-42ad-b46c-bce45c56b239 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-f84aef9b-8752-42ad-b46c-bce45c56b239 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f84aef9b-8752-42ad-b46c-bce45c56b239.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f84aef9b-8752-42ad-b46c-bce45c56b239.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f84aef9b-8752-42ad-b46c-bce45c56b239.shogun-image {
  box-sizing: border-box;
}



.s-f84aef9b-8752-42ad-b46c-bce45c56b239 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-f84aef9b-8752-42ad-b46c-bce45c56b239 {
  margin: 0 !important;
  overflow: visible;
}

#s-f84aef9b-8752-42ad-b46c-bce45c56b239-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f84aef9b-8752-42ad-b46c-bce45c56b239 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f84aef9b-8752-42ad-b46c-bce45c56b239 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f84aef9b-8752-42ad-b46c-bce45c56b239 img.shogun-image {
  /* Add background color handling */
  
}

#s-f84aef9b-8752-42ad-b46c-bce45c56b239 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-f84aef9b-8752-42ad-b46c-bce45c56b239 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f84aef9b-8752-42ad-b46c-bce45c56b239.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f84aef9b-8752-42ad-b46c-bce45c56b239.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f84aef9b-8752-42ad-b46c-bce45c56b239.shogun-image {
  box-sizing: border-box;
}



.s-f84aef9b-8752-42ad-b46c-bce45c56b239 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-f84aef9b-8752-42ad-b46c-bce45c56b239 {
  margin: 0 !important;
  overflow: visible;
}

#s-f84aef9b-8752-42ad-b46c-bce45c56b239-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f84aef9b-8752-42ad-b46c-bce45c56b239 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f84aef9b-8752-42ad-b46c-bce45c56b239 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f84aef9b-8752-42ad-b46c-bce45c56b239 img.shogun-image {
  /* Add background color handling */
  
}

#s-f84aef9b-8752-42ad-b46c-bce45c56b239 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-f84aef9b-8752-42ad-b46c-bce45c56b239 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f84aef9b-8752-42ad-b46c-bce45c56b239.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f84aef9b-8752-42ad-b46c-bce45c56b239.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f84aef9b-8752-42ad-b46c-bce45c56b239.shogun-image {
  box-sizing: border-box;
}



.s-f84aef9b-8752-42ad-b46c-bce45c56b239 img.shogun-image {
  
}


}@media (max-width: 767px){#s-f84aef9b-8752-42ad-b46c-bce45c56b239 {
  margin: 0 !important;
  overflow: visible;
}

#s-f84aef9b-8752-42ad-b46c-bce45c56b239-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f84aef9b-8752-42ad-b46c-bce45c56b239 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f84aef9b-8752-42ad-b46c-bce45c56b239 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f84aef9b-8752-42ad-b46c-bce45c56b239 img.shogun-image {
  /* Add background color handling */
  
}

#s-f84aef9b-8752-42ad-b46c-bce45c56b239 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-f84aef9b-8752-42ad-b46c-bce45c56b239 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f84aef9b-8752-42ad-b46c-bce45c56b239.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f84aef9b-8752-42ad-b46c-bce45c56b239.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f84aef9b-8752-42ad-b46c-bce45c56b239.shogun-image {
  box-sizing: border-box;
}



.s-f84aef9b-8752-42ad-b46c-bce45c56b239 img.shogun-image {
  
}


}
#s-33ae6458-b015-4b22-9583-1a69ef96ea4c {
  max-width: 1464px;
text-align: center;
}

#s-33ae6458-b015-4b22-9583-1a69ef96ea4c {
  margin: 0 !important;
  overflow: visible;
}

#s-33ae6458-b015-4b22-9583-1a69ef96ea4c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-33ae6458-b015-4b22-9583-1a69ef96ea4c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-33ae6458-b015-4b22-9583-1a69ef96ea4c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-33ae6458-b015-4b22-9583-1a69ef96ea4c img.shogun-image {
  /* Add background color handling */
  
}

#s-33ae6458-b015-4b22-9583-1a69ef96ea4c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-33ae6458-b015-4b22-9583-1a69ef96ea4c .shogun-image-content {
  
    justify-content: center;
  
}

.s-33ae6458-b015-4b22-9583-1a69ef96ea4c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33ae6458-b015-4b22-9583-1a69ef96ea4c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33ae6458-b015-4b22-9583-1a69ef96ea4c.shogun-image {
  box-sizing: border-box;
}



.s-33ae6458-b015-4b22-9583-1a69ef96ea4c img.shogun-image {
  
}


@media (min-width: 1200px){#s-33ae6458-b015-4b22-9583-1a69ef96ea4c {
  margin: 0 !important;
  overflow: visible;
}

#s-33ae6458-b015-4b22-9583-1a69ef96ea4c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-33ae6458-b015-4b22-9583-1a69ef96ea4c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-33ae6458-b015-4b22-9583-1a69ef96ea4c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-33ae6458-b015-4b22-9583-1a69ef96ea4c img.shogun-image {
  /* Add background color handling */
  
}

#s-33ae6458-b015-4b22-9583-1a69ef96ea4c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-33ae6458-b015-4b22-9583-1a69ef96ea4c .shogun-image-content {
  
    justify-content: center;
  
}

.s-33ae6458-b015-4b22-9583-1a69ef96ea4c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33ae6458-b015-4b22-9583-1a69ef96ea4c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33ae6458-b015-4b22-9583-1a69ef96ea4c.shogun-image {
  box-sizing: border-box;
}



.s-33ae6458-b015-4b22-9583-1a69ef96ea4c img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-33ae6458-b015-4b22-9583-1a69ef96ea4c {
  margin: 0 !important;
  overflow: visible;
}

#s-33ae6458-b015-4b22-9583-1a69ef96ea4c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-33ae6458-b015-4b22-9583-1a69ef96ea4c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-33ae6458-b015-4b22-9583-1a69ef96ea4c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-33ae6458-b015-4b22-9583-1a69ef96ea4c img.shogun-image {
  /* Add background color handling */
  
}

#s-33ae6458-b015-4b22-9583-1a69ef96ea4c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-33ae6458-b015-4b22-9583-1a69ef96ea4c .shogun-image-content {
  
    justify-content: center;
  
}

.s-33ae6458-b015-4b22-9583-1a69ef96ea4c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33ae6458-b015-4b22-9583-1a69ef96ea4c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33ae6458-b015-4b22-9583-1a69ef96ea4c.shogun-image {
  box-sizing: border-box;
}



.s-33ae6458-b015-4b22-9583-1a69ef96ea4c img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-33ae6458-b015-4b22-9583-1a69ef96ea4c {
  margin: 0 !important;
  overflow: visible;
}

#s-33ae6458-b015-4b22-9583-1a69ef96ea4c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-33ae6458-b015-4b22-9583-1a69ef96ea4c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-33ae6458-b015-4b22-9583-1a69ef96ea4c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-33ae6458-b015-4b22-9583-1a69ef96ea4c img.shogun-image {
  /* Add background color handling */
  
}

#s-33ae6458-b015-4b22-9583-1a69ef96ea4c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-33ae6458-b015-4b22-9583-1a69ef96ea4c .shogun-image-content {
  
    justify-content: center;
  
}

.s-33ae6458-b015-4b22-9583-1a69ef96ea4c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33ae6458-b015-4b22-9583-1a69ef96ea4c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33ae6458-b015-4b22-9583-1a69ef96ea4c.shogun-image {
  box-sizing: border-box;
}



.s-33ae6458-b015-4b22-9583-1a69ef96ea4c img.shogun-image {
  
}


}@media (max-width: 767px){#s-33ae6458-b015-4b22-9583-1a69ef96ea4c {
  margin: 0 !important;
  overflow: visible;
}

#s-33ae6458-b015-4b22-9583-1a69ef96ea4c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-33ae6458-b015-4b22-9583-1a69ef96ea4c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-33ae6458-b015-4b22-9583-1a69ef96ea4c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-33ae6458-b015-4b22-9583-1a69ef96ea4c img.shogun-image {
  /* Add background color handling */
  
}

#s-33ae6458-b015-4b22-9583-1a69ef96ea4c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-33ae6458-b015-4b22-9583-1a69ef96ea4c .shogun-image-content {
  
    justify-content: center;
  
}

.s-33ae6458-b015-4b22-9583-1a69ef96ea4c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33ae6458-b015-4b22-9583-1a69ef96ea4c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33ae6458-b015-4b22-9583-1a69ef96ea4c.shogun-image {
  box-sizing: border-box;
}



.s-33ae6458-b015-4b22-9583-1a69ef96ea4c img.shogun-image {
  
}


}
@media (min-width: 0px) {
[id="s-f5907c10-373b-4b3f-935a-97a9b01fb6e4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f5907c10-373b-4b3f-935a-97a9b01fb6e4"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f5907c10-373b-4b3f-935a-97a9b01fb6e4"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f5907c10-373b-4b3f-935a-97a9b01fb6e4"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-530e8d24-d192-4e29-a8f8-bcfbaae95cd2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-530e8d24-d192-4e29-a8f8-bcfbaae95cd2"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-530e8d24-d192-4e29-a8f8-bcfbaae95cd2"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-530e8d24-d192-4e29-a8f8-bcfbaae95cd2"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-530e8d24-d192-4e29-a8f8-bcfbaae95cd2"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-530e8d24-d192-4e29-a8f8-bcfbaae95cd2"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-530e8d24-d192-4e29-a8f8-bcfbaae95cd2"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-24758167-d461-41f1-b04d-dcd428f3e97e {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-79f7e0fa-ca7f-4400-89d8-796219db4af6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-79f7e0fa-ca7f-4400-89d8-796219db4af6"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-79f7e0fa-ca7f-4400-89d8-796219db4af6"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-79f7e0fa-ca7f-4400-89d8-796219db4af6"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-79f7e0fa-ca7f-4400-89d8-796219db4af6"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-79f7e0fa-ca7f-4400-89d8-796219db4af6"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-79f7e0fa-ca7f-4400-89d8-796219db4af6"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-0935bb7e-6e9c-497c-ad43-86e39803b70e {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-a648af33-8971-4e16-970f-797d7430fefb {
  margin-top: -8px;
margin-bottom: -8px;
min-height: 50px;
}








#s-a648af33-8971-4e16-970f-797d7430fefb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a648af33-8971-4e16-970f-797d7430fefb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-245e7362-62d2-47cb-a1df-d7473512a0b7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-245e7362-62d2-47cb-a1df-d7473512a0b7 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-8b0fb9d2-e910-45e4-b297-fe38bf2ce848 {
  margin-top: -8px;
margin-bottom: -8px;
min-height: 50px;
}








#s-8b0fb9d2-e910-45e4-b297-fe38bf2ce848 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8b0fb9d2-e910-45e4-b297-fe38bf2ce848.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-f4a5c6cc-f482-4e0f-b7da-323ee84478fd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f4a5c6cc-f482-4e0f-b7da-323ee84478fd"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f4a5c6cc-f482-4e0f-b7da-323ee84478fd"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f4a5c6cc-f482-4e0f-b7da-323ee84478fd"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 {
  max-width: 610px;
aspect-ratio: 610/208;
text-align: center;
}
@media (min-width: 1200px){#s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 {
  max-width: 200px;
}
}
#s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 {
  margin: 0 !important;
  overflow: visible;
}

#s-f618f90e-8ea4-427e-ae3f-2d17c9b71551-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 img.shogun-image {
  /* Add background color handling */
  
}

#s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 .shg-image-content-wrapper {
      aspect-ratio: 610/208;
      min-width: 100%;
      height: auto;
    }

    #s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 .shogun-image-link {
      aspect-ratio: 610/208;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 610px;
  }



  img.s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image {
    
    
    
    max-height: 610px;
  }


.s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image {
  box-sizing: border-box;
}



.s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 {
      --shg-aspect-ratio: calc(610/208); 
    }

    .s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image-container {
      position: relative;
    }

    .s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 610px;
    }
  }

@media (min-width: 1200px){#s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 {
  margin: 0 !important;
  overflow: visible;
}

#s-f618f90e-8ea4-427e-ae3f-2d17c9b71551-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 img.shogun-image {
  /* Add background color handling */
  
}

#s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 .shg-image-content-wrapper {
      aspect-ratio: 610/208;
      min-width: 100%;
      height: auto;
    }

    #s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 .shogun-image-link {
      aspect-ratio: 610/208;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 610px;
  }



  img.s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image {
    
    
    
    max-height: 610px;
  }


.s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image {
  box-sizing: border-box;
}



.s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 {
      --shg-aspect-ratio: calc(610/208); 
    }

    .s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image-container {
      position: relative;
    }

    .s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 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-f618f90e-8ea4-427e-ae3f-2d17c9b71551 {
  margin: 0 !important;
  overflow: visible;
}

#s-f618f90e-8ea4-427e-ae3f-2d17c9b71551-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 img.shogun-image {
  /* Add background color handling */
  
}

#s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 .shg-image-content-wrapper {
      aspect-ratio: 610/208;
      min-width: 100%;
      height: auto;
    }

    #s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 .shogun-image-link {
      aspect-ratio: 610/208;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 610px;
  }



  img.s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image {
    
    
    
    max-height: 610px;
  }


.s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image {
  box-sizing: border-box;
}



.s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 {
      --shg-aspect-ratio: calc(610/208); 
    }

    .s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image-container {
      position: relative;
    }

    .s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 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-f618f90e-8ea4-427e-ae3f-2d17c9b71551 {
  margin: 0 !important;
  overflow: visible;
}

#s-f618f90e-8ea4-427e-ae3f-2d17c9b71551-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 img.shogun-image {
  /* Add background color handling */
  
}

#s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 .shg-image-content-wrapper {
      aspect-ratio: 610/208;
      min-width: 100%;
      height: auto;
    }

    #s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 .shogun-image-link {
      aspect-ratio: 610/208;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 610px;
  }



  img.s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image {
    
    
    
    max-height: 610px;
  }


.s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image {
  box-sizing: border-box;
}



.s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 {
      --shg-aspect-ratio: calc(610/208); 
    }

    .s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image-container {
      position: relative;
    }

    .s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 610px;
    }
  }

}@media (max-width: 767px){#s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 {
  margin: 0 !important;
  overflow: visible;
}

#s-f618f90e-8ea4-427e-ae3f-2d17c9b71551-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 img.shogun-image {
  /* Add background color handling */
  
}

#s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 .shg-image-content-wrapper {
      aspect-ratio: 610/208;
      min-width: 100%;
      height: auto;
    }

    #s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 .shogun-image-link {
      aspect-ratio: 610/208;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 610px;
  }



  img.s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image {
    
    
    
    max-height: 610px;
  }


.s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image {
  box-sizing: border-box;
}



.s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 {
      --shg-aspect-ratio: calc(610/208); 
    }

    .s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image-container {
      position: relative;
    }

    .s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f618f90e-8ea4-427e-ae3f-2d17c9b71551.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f618f90e-8ea4-427e-ae3f-2d17c9b71551 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 610px;
    }
  }

}
@media (min-width: 1200px){#s-a683c527-2679-4a85-96e1-4125b7b30650 {
  margin-top: 10px;
margin-left: 5%;
margin-bottom: 10px;
margin-right: 5%;
min-height: 0px;
}
}
#s-0e772d1b-018c-46af-80e9-60e60b51a22e {
  margin-top: -8px;
margin-bottom: -8px;
min-height: 50px;
}








#s-0e772d1b-018c-46af-80e9-60e60b51a22e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0e772d1b-018c-46af-80e9-60e60b51a22e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-292387f2-82b7-4407-b791-834461db0463 {
  margin-top: -8px;
margin-bottom: -8px;
min-height: 50px;
}








#s-292387f2-82b7-4407-b791-834461db0463 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-292387f2-82b7-4407-b791-834461db0463.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-e45313ff-873a-4e14-8692-40cbae1523f0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e45313ff-873a-4e14-8692-40cbae1523f0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-e45313ff-873a-4e14-8692-40cbae1523f0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-e45313ff-873a-4e14-8692-40cbae1523f0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-35cab22b-c4d1-442c-b5cb-a748677f060e {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-35cab22b-c4d1-442c-b5cb-a748677f060e {
  margin: 0 !important;
  overflow: visible;
}

#s-35cab22b-c4d1-442c-b5cb-a748677f060e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-35cab22b-c4d1-442c-b5cb-a748677f060e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-35cab22b-c4d1-442c-b5cb-a748677f060e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-35cab22b-c4d1-442c-b5cb-a748677f060e img.shogun-image {
  /* Add background color handling */
  
}

#s-35cab22b-c4d1-442c-b5cb-a748677f060e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-35cab22b-c4d1-442c-b5cb-a748677f060e .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-35cab22b-c4d1-442c-b5cb-a748677f060e .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-35cab22b-c4d1-442c-b5cb-a748677f060e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-35cab22b-c4d1-442c-b5cb-a748677f060e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-35cab22b-c4d1-442c-b5cb-a748677f060e .shogun-image-content {
  
    justify-content: center;
  
}

.s-35cab22b-c4d1-442c-b5cb-a748677f060e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image {
  box-sizing: border-box;
}



.s-35cab22b-c4d1-442c-b5cb-a748677f060e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-35cab22b-c4d1-442c-b5cb-a748677f060e {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image-container {
      position: relative;
    }

    .s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-35cab22b-c4d1-442c-b5cb-a748677f060e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-35cab22b-c4d1-442c-b5cb-a748677f060e {
  margin: 0 !important;
  overflow: visible;
}

#s-35cab22b-c4d1-442c-b5cb-a748677f060e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-35cab22b-c4d1-442c-b5cb-a748677f060e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-35cab22b-c4d1-442c-b5cb-a748677f060e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-35cab22b-c4d1-442c-b5cb-a748677f060e img.shogun-image {
  /* Add background color handling */
  
}

#s-35cab22b-c4d1-442c-b5cb-a748677f060e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-35cab22b-c4d1-442c-b5cb-a748677f060e .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-35cab22b-c4d1-442c-b5cb-a748677f060e .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-35cab22b-c4d1-442c-b5cb-a748677f060e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-35cab22b-c4d1-442c-b5cb-a748677f060e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-35cab22b-c4d1-442c-b5cb-a748677f060e .shogun-image-content {
  
    justify-content: center;
  
}

.s-35cab22b-c4d1-442c-b5cb-a748677f060e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image {
  box-sizing: border-box;
}



.s-35cab22b-c4d1-442c-b5cb-a748677f060e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-35cab22b-c4d1-442c-b5cb-a748677f060e {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image-container {
      position: relative;
    }

    .s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-35cab22b-c4d1-442c-b5cb-a748677f060e 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-35cab22b-c4d1-442c-b5cb-a748677f060e {
  margin: 0 !important;
  overflow: visible;
}

#s-35cab22b-c4d1-442c-b5cb-a748677f060e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-35cab22b-c4d1-442c-b5cb-a748677f060e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-35cab22b-c4d1-442c-b5cb-a748677f060e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-35cab22b-c4d1-442c-b5cb-a748677f060e img.shogun-image {
  /* Add background color handling */
  
}

#s-35cab22b-c4d1-442c-b5cb-a748677f060e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-35cab22b-c4d1-442c-b5cb-a748677f060e .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-35cab22b-c4d1-442c-b5cb-a748677f060e .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-35cab22b-c4d1-442c-b5cb-a748677f060e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-35cab22b-c4d1-442c-b5cb-a748677f060e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-35cab22b-c4d1-442c-b5cb-a748677f060e .shogun-image-content {
  
    justify-content: center;
  
}

.s-35cab22b-c4d1-442c-b5cb-a748677f060e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image {
  box-sizing: border-box;
}



.s-35cab22b-c4d1-442c-b5cb-a748677f060e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-35cab22b-c4d1-442c-b5cb-a748677f060e {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image-container {
      position: relative;
    }

    .s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-35cab22b-c4d1-442c-b5cb-a748677f060e 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-35cab22b-c4d1-442c-b5cb-a748677f060e {
  margin: 0 !important;
  overflow: visible;
}

#s-35cab22b-c4d1-442c-b5cb-a748677f060e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-35cab22b-c4d1-442c-b5cb-a748677f060e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-35cab22b-c4d1-442c-b5cb-a748677f060e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-35cab22b-c4d1-442c-b5cb-a748677f060e img.shogun-image {
  /* Add background color handling */
  
}

#s-35cab22b-c4d1-442c-b5cb-a748677f060e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-35cab22b-c4d1-442c-b5cb-a748677f060e .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-35cab22b-c4d1-442c-b5cb-a748677f060e .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-35cab22b-c4d1-442c-b5cb-a748677f060e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-35cab22b-c4d1-442c-b5cb-a748677f060e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-35cab22b-c4d1-442c-b5cb-a748677f060e .shogun-image-content {
  
    justify-content: center;
  
}

.s-35cab22b-c4d1-442c-b5cb-a748677f060e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image {
  box-sizing: border-box;
}



.s-35cab22b-c4d1-442c-b5cb-a748677f060e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-35cab22b-c4d1-442c-b5cb-a748677f060e {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image-container {
      position: relative;
    }

    .s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-35cab22b-c4d1-442c-b5cb-a748677f060e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-35cab22b-c4d1-442c-b5cb-a748677f060e {
  margin: 0 !important;
  overflow: visible;
}

#s-35cab22b-c4d1-442c-b5cb-a748677f060e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-35cab22b-c4d1-442c-b5cb-a748677f060e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-35cab22b-c4d1-442c-b5cb-a748677f060e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-35cab22b-c4d1-442c-b5cb-a748677f060e img.shogun-image {
  /* Add background color handling */
  
}

#s-35cab22b-c4d1-442c-b5cb-a748677f060e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-35cab22b-c4d1-442c-b5cb-a748677f060e .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-35cab22b-c4d1-442c-b5cb-a748677f060e .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-35cab22b-c4d1-442c-b5cb-a748677f060e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-35cab22b-c4d1-442c-b5cb-a748677f060e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-35cab22b-c4d1-442c-b5cb-a748677f060e .shogun-image-content {
  
    justify-content: center;
  
}

.s-35cab22b-c4d1-442c-b5cb-a748677f060e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image {
  box-sizing: border-box;
}



.s-35cab22b-c4d1-442c-b5cb-a748677f060e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-35cab22b-c4d1-442c-b5cb-a748677f060e {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image-container {
      position: relative;
    }

    .s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-35cab22b-c4d1-442c-b5cb-a748677f060e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-35cab22b-c4d1-442c-b5cb-a748677f060e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-88058c49-5604-42c9-b328-3608042f75fb {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-88058c49-5604-42c9-b328-3608042f75fb {
  margin: 0 !important;
  overflow: visible;
}

#s-88058c49-5604-42c9-b328-3608042f75fb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-88058c49-5604-42c9-b328-3608042f75fb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-88058c49-5604-42c9-b328-3608042f75fb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-88058c49-5604-42c9-b328-3608042f75fb img.shogun-image {
  /* Add background color handling */
  
}

#s-88058c49-5604-42c9-b328-3608042f75fb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-88058c49-5604-42c9-b328-3608042f75fb .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-88058c49-5604-42c9-b328-3608042f75fb .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-88058c49-5604-42c9-b328-3608042f75fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-88058c49-5604-42c9-b328-3608042f75fb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-88058c49-5604-42c9-b328-3608042f75fb .shogun-image-content {
  
    justify-content: center;
  
}

.s-88058c49-5604-42c9-b328-3608042f75fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image {
  box-sizing: border-box;
}



.s-88058c49-5604-42c9-b328-3608042f75fb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-88058c49-5604-42c9-b328-3608042f75fb {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image-container {
      position: relative;
    }

    .s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-88058c49-5604-42c9-b328-3608042f75fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-88058c49-5604-42c9-b328-3608042f75fb {
  margin: 0 !important;
  overflow: visible;
}

#s-88058c49-5604-42c9-b328-3608042f75fb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-88058c49-5604-42c9-b328-3608042f75fb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-88058c49-5604-42c9-b328-3608042f75fb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-88058c49-5604-42c9-b328-3608042f75fb img.shogun-image {
  /* Add background color handling */
  
}

#s-88058c49-5604-42c9-b328-3608042f75fb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-88058c49-5604-42c9-b328-3608042f75fb .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-88058c49-5604-42c9-b328-3608042f75fb .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-88058c49-5604-42c9-b328-3608042f75fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-88058c49-5604-42c9-b328-3608042f75fb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-88058c49-5604-42c9-b328-3608042f75fb .shogun-image-content {
  
    justify-content: center;
  
}

.s-88058c49-5604-42c9-b328-3608042f75fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image {
  box-sizing: border-box;
}



.s-88058c49-5604-42c9-b328-3608042f75fb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-88058c49-5604-42c9-b328-3608042f75fb {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image-container {
      position: relative;
    }

    .s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-88058c49-5604-42c9-b328-3608042f75fb 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-88058c49-5604-42c9-b328-3608042f75fb {
  margin: 0 !important;
  overflow: visible;
}

#s-88058c49-5604-42c9-b328-3608042f75fb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-88058c49-5604-42c9-b328-3608042f75fb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-88058c49-5604-42c9-b328-3608042f75fb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-88058c49-5604-42c9-b328-3608042f75fb img.shogun-image {
  /* Add background color handling */
  
}

#s-88058c49-5604-42c9-b328-3608042f75fb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-88058c49-5604-42c9-b328-3608042f75fb .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-88058c49-5604-42c9-b328-3608042f75fb .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-88058c49-5604-42c9-b328-3608042f75fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-88058c49-5604-42c9-b328-3608042f75fb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-88058c49-5604-42c9-b328-3608042f75fb .shogun-image-content {
  
    justify-content: center;
  
}

.s-88058c49-5604-42c9-b328-3608042f75fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image {
  box-sizing: border-box;
}



.s-88058c49-5604-42c9-b328-3608042f75fb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-88058c49-5604-42c9-b328-3608042f75fb {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image-container {
      position: relative;
    }

    .s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-88058c49-5604-42c9-b328-3608042f75fb 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-88058c49-5604-42c9-b328-3608042f75fb {
  margin: 0 !important;
  overflow: visible;
}

#s-88058c49-5604-42c9-b328-3608042f75fb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-88058c49-5604-42c9-b328-3608042f75fb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-88058c49-5604-42c9-b328-3608042f75fb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-88058c49-5604-42c9-b328-3608042f75fb img.shogun-image {
  /* Add background color handling */
  
}

#s-88058c49-5604-42c9-b328-3608042f75fb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-88058c49-5604-42c9-b328-3608042f75fb .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-88058c49-5604-42c9-b328-3608042f75fb .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-88058c49-5604-42c9-b328-3608042f75fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-88058c49-5604-42c9-b328-3608042f75fb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-88058c49-5604-42c9-b328-3608042f75fb .shogun-image-content {
  
    justify-content: center;
  
}

.s-88058c49-5604-42c9-b328-3608042f75fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image {
  box-sizing: border-box;
}



.s-88058c49-5604-42c9-b328-3608042f75fb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-88058c49-5604-42c9-b328-3608042f75fb {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image-container {
      position: relative;
    }

    .s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-88058c49-5604-42c9-b328-3608042f75fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-88058c49-5604-42c9-b328-3608042f75fb {
  margin: 0 !important;
  overflow: visible;
}

#s-88058c49-5604-42c9-b328-3608042f75fb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-88058c49-5604-42c9-b328-3608042f75fb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-88058c49-5604-42c9-b328-3608042f75fb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-88058c49-5604-42c9-b328-3608042f75fb img.shogun-image {
  /* Add background color handling */
  
}

#s-88058c49-5604-42c9-b328-3608042f75fb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-88058c49-5604-42c9-b328-3608042f75fb .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-88058c49-5604-42c9-b328-3608042f75fb .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-88058c49-5604-42c9-b328-3608042f75fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-88058c49-5604-42c9-b328-3608042f75fb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-88058c49-5604-42c9-b328-3608042f75fb .shogun-image-content {
  
    justify-content: center;
  
}

.s-88058c49-5604-42c9-b328-3608042f75fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image {
  box-sizing: border-box;
}



.s-88058c49-5604-42c9-b328-3608042f75fb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-88058c49-5604-42c9-b328-3608042f75fb {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image-container {
      position: relative;
    }

    .s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-88058c49-5604-42c9-b328-3608042f75fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-88058c49-5604-42c9-b328-3608042f75fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
@media (min-width: 0px) {
[id="s-af0bd437-e30f-47ff-a176-988a7e59972f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-af0bd437-e30f-47ff-a176-988a7e59972f"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-af0bd437-e30f-47ff-a176-988a7e59972f"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-af0bd437-e30f-47ff-a176-988a7e59972f"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-bea08b47-586a-4b55-b8fe-23d6ee86124b {
  max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-bea08b47-586a-4b55-b8fe-23d6ee86124b {
  margin: 0 !important;
  overflow: visible;
}

#s-bea08b47-586a-4b55-b8fe-23d6ee86124b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bea08b47-586a-4b55-b8fe-23d6ee86124b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bea08b47-586a-4b55-b8fe-23d6ee86124b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bea08b47-586a-4b55-b8fe-23d6ee86124b img.shogun-image {
  /* Add background color handling */
  
}

#s-bea08b47-586a-4b55-b8fe-23d6ee86124b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bea08b47-586a-4b55-b8fe-23d6ee86124b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bea08b47-586a-4b55-b8fe-23d6ee86124b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bea08b47-586a-4b55-b8fe-23d6ee86124b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bea08b47-586a-4b55-b8fe-23d6ee86124b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-bea08b47-586a-4b55-b8fe-23d6ee86124b .shogun-image-content {
  
    justify-content: center;
  
}

.s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image {
  box-sizing: border-box;
}



.s-bea08b47-586a-4b55-b8fe-23d6ee86124b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bea08b47-586a-4b55-b8fe-23d6ee86124b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image-container {
      position: relative;
    }

    .s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bea08b47-586a-4b55-b8fe-23d6ee86124b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-bea08b47-586a-4b55-b8fe-23d6ee86124b {
  margin: 0 !important;
  overflow: visible;
}

#s-bea08b47-586a-4b55-b8fe-23d6ee86124b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bea08b47-586a-4b55-b8fe-23d6ee86124b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bea08b47-586a-4b55-b8fe-23d6ee86124b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bea08b47-586a-4b55-b8fe-23d6ee86124b img.shogun-image {
  /* Add background color handling */
  
}

#s-bea08b47-586a-4b55-b8fe-23d6ee86124b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bea08b47-586a-4b55-b8fe-23d6ee86124b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bea08b47-586a-4b55-b8fe-23d6ee86124b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bea08b47-586a-4b55-b8fe-23d6ee86124b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bea08b47-586a-4b55-b8fe-23d6ee86124b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-bea08b47-586a-4b55-b8fe-23d6ee86124b .shogun-image-content {
  
    justify-content: center;
  
}

.s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image {
  box-sizing: border-box;
}



.s-bea08b47-586a-4b55-b8fe-23d6ee86124b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bea08b47-586a-4b55-b8fe-23d6ee86124b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image-container {
      position: relative;
    }

    .s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bea08b47-586a-4b55-b8fe-23d6ee86124b 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-bea08b47-586a-4b55-b8fe-23d6ee86124b {
  margin: 0 !important;
  overflow: visible;
}

#s-bea08b47-586a-4b55-b8fe-23d6ee86124b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bea08b47-586a-4b55-b8fe-23d6ee86124b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bea08b47-586a-4b55-b8fe-23d6ee86124b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bea08b47-586a-4b55-b8fe-23d6ee86124b img.shogun-image {
  /* Add background color handling */
  
}

#s-bea08b47-586a-4b55-b8fe-23d6ee86124b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bea08b47-586a-4b55-b8fe-23d6ee86124b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bea08b47-586a-4b55-b8fe-23d6ee86124b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bea08b47-586a-4b55-b8fe-23d6ee86124b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bea08b47-586a-4b55-b8fe-23d6ee86124b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-bea08b47-586a-4b55-b8fe-23d6ee86124b .shogun-image-content {
  
    justify-content: center;
  
}

.s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image {
  box-sizing: border-box;
}



.s-bea08b47-586a-4b55-b8fe-23d6ee86124b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bea08b47-586a-4b55-b8fe-23d6ee86124b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image-container {
      position: relative;
    }

    .s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bea08b47-586a-4b55-b8fe-23d6ee86124b 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-bea08b47-586a-4b55-b8fe-23d6ee86124b {
  margin: 0 !important;
  overflow: visible;
}

#s-bea08b47-586a-4b55-b8fe-23d6ee86124b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bea08b47-586a-4b55-b8fe-23d6ee86124b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bea08b47-586a-4b55-b8fe-23d6ee86124b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bea08b47-586a-4b55-b8fe-23d6ee86124b img.shogun-image {
  /* Add background color handling */
  
}

#s-bea08b47-586a-4b55-b8fe-23d6ee86124b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bea08b47-586a-4b55-b8fe-23d6ee86124b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bea08b47-586a-4b55-b8fe-23d6ee86124b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bea08b47-586a-4b55-b8fe-23d6ee86124b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bea08b47-586a-4b55-b8fe-23d6ee86124b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-bea08b47-586a-4b55-b8fe-23d6ee86124b .shogun-image-content {
  
    justify-content: center;
  
}

.s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image {
  box-sizing: border-box;
}



.s-bea08b47-586a-4b55-b8fe-23d6ee86124b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bea08b47-586a-4b55-b8fe-23d6ee86124b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image-container {
      position: relative;
    }

    .s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bea08b47-586a-4b55-b8fe-23d6ee86124b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-bea08b47-586a-4b55-b8fe-23d6ee86124b {
  margin: 0 !important;
  overflow: visible;
}

#s-bea08b47-586a-4b55-b8fe-23d6ee86124b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bea08b47-586a-4b55-b8fe-23d6ee86124b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bea08b47-586a-4b55-b8fe-23d6ee86124b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bea08b47-586a-4b55-b8fe-23d6ee86124b img.shogun-image {
  /* Add background color handling */
  
}

#s-bea08b47-586a-4b55-b8fe-23d6ee86124b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bea08b47-586a-4b55-b8fe-23d6ee86124b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bea08b47-586a-4b55-b8fe-23d6ee86124b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bea08b47-586a-4b55-b8fe-23d6ee86124b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bea08b47-586a-4b55-b8fe-23d6ee86124b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-bea08b47-586a-4b55-b8fe-23d6ee86124b .shogun-image-content {
  
    justify-content: center;
  
}

.s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image {
  box-sizing: border-box;
}



.s-bea08b47-586a-4b55-b8fe-23d6ee86124b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bea08b47-586a-4b55-b8fe-23d6ee86124b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image-container {
      position: relative;
    }

    .s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bea08b47-586a-4b55-b8fe-23d6ee86124b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bea08b47-586a-4b55-b8fe-23d6ee86124b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 {
  max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 {
  margin: 0 !important;
  overflow: visible;
}

#s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 img.shogun-image {
  /* Add background color handling */
  
}

#s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image {
  box-sizing: border-box;
}



.s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image-container {
      position: relative;
    }

    .s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 {
  margin: 0 !important;
  overflow: visible;
}

#s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 img.shogun-image {
  /* Add background color handling */
  
}

#s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image {
  box-sizing: border-box;
}



.s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image-container {
      position: relative;
    }

    .s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 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-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 {
  margin: 0 !important;
  overflow: visible;
}

#s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 img.shogun-image {
  /* Add background color handling */
  
}

#s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image {
  box-sizing: border-box;
}



.s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image-container {
      position: relative;
    }

    .s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 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-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 {
  margin: 0 !important;
  overflow: visible;
}

#s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 img.shogun-image {
  /* Add background color handling */
  
}

#s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image {
  box-sizing: border-box;
}



.s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image-container {
      position: relative;
    }

    .s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 {
  margin: 0 !important;
  overflow: visible;
}

#s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 img.shogun-image {
  /* Add background color handling */
  
}

#s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image {
  box-sizing: border-box;
}



.s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image-container {
      position: relative;
    }

    .s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6660a15b-2d2d-47fe-8178-1f4c1a1e0dc8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-f1950d03-a167-47a6-97d1-5250d835b54e {
  max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-f1950d03-a167-47a6-97d1-5250d835b54e {
  margin: 0 !important;
  overflow: visible;
}

#s-f1950d03-a167-47a6-97d1-5250d835b54e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f1950d03-a167-47a6-97d1-5250d835b54e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f1950d03-a167-47a6-97d1-5250d835b54e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f1950d03-a167-47a6-97d1-5250d835b54e img.shogun-image {
  /* Add background color handling */
  
}

#s-f1950d03-a167-47a6-97d1-5250d835b54e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f1950d03-a167-47a6-97d1-5250d835b54e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f1950d03-a167-47a6-97d1-5250d835b54e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f1950d03-a167-47a6-97d1-5250d835b54e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f1950d03-a167-47a6-97d1-5250d835b54e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-f1950d03-a167-47a6-97d1-5250d835b54e .shogun-image-content {
  
    justify-content: center;
  
}

.s-f1950d03-a167-47a6-97d1-5250d835b54e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image {
  box-sizing: border-box;
}



.s-f1950d03-a167-47a6-97d1-5250d835b54e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f1950d03-a167-47a6-97d1-5250d835b54e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image-container {
      position: relative;
    }

    .s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f1950d03-a167-47a6-97d1-5250d835b54e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-f1950d03-a167-47a6-97d1-5250d835b54e {
  margin: 0 !important;
  overflow: visible;
}

#s-f1950d03-a167-47a6-97d1-5250d835b54e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f1950d03-a167-47a6-97d1-5250d835b54e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f1950d03-a167-47a6-97d1-5250d835b54e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f1950d03-a167-47a6-97d1-5250d835b54e img.shogun-image {
  /* Add background color handling */
  
}

#s-f1950d03-a167-47a6-97d1-5250d835b54e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f1950d03-a167-47a6-97d1-5250d835b54e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f1950d03-a167-47a6-97d1-5250d835b54e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f1950d03-a167-47a6-97d1-5250d835b54e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f1950d03-a167-47a6-97d1-5250d835b54e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-f1950d03-a167-47a6-97d1-5250d835b54e .shogun-image-content {
  
    justify-content: center;
  
}

.s-f1950d03-a167-47a6-97d1-5250d835b54e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image {
  box-sizing: border-box;
}



.s-f1950d03-a167-47a6-97d1-5250d835b54e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f1950d03-a167-47a6-97d1-5250d835b54e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image-container {
      position: relative;
    }

    .s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f1950d03-a167-47a6-97d1-5250d835b54e 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-f1950d03-a167-47a6-97d1-5250d835b54e {
  margin: 0 !important;
  overflow: visible;
}

#s-f1950d03-a167-47a6-97d1-5250d835b54e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f1950d03-a167-47a6-97d1-5250d835b54e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f1950d03-a167-47a6-97d1-5250d835b54e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f1950d03-a167-47a6-97d1-5250d835b54e img.shogun-image {
  /* Add background color handling */
  
}

#s-f1950d03-a167-47a6-97d1-5250d835b54e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f1950d03-a167-47a6-97d1-5250d835b54e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f1950d03-a167-47a6-97d1-5250d835b54e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f1950d03-a167-47a6-97d1-5250d835b54e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f1950d03-a167-47a6-97d1-5250d835b54e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-f1950d03-a167-47a6-97d1-5250d835b54e .shogun-image-content {
  
    justify-content: center;
  
}

.s-f1950d03-a167-47a6-97d1-5250d835b54e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image {
  box-sizing: border-box;
}



.s-f1950d03-a167-47a6-97d1-5250d835b54e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f1950d03-a167-47a6-97d1-5250d835b54e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image-container {
      position: relative;
    }

    .s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f1950d03-a167-47a6-97d1-5250d835b54e 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-f1950d03-a167-47a6-97d1-5250d835b54e {
  margin: 0 !important;
  overflow: visible;
}

#s-f1950d03-a167-47a6-97d1-5250d835b54e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f1950d03-a167-47a6-97d1-5250d835b54e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f1950d03-a167-47a6-97d1-5250d835b54e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f1950d03-a167-47a6-97d1-5250d835b54e img.shogun-image {
  /* Add background color handling */
  
}

#s-f1950d03-a167-47a6-97d1-5250d835b54e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f1950d03-a167-47a6-97d1-5250d835b54e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f1950d03-a167-47a6-97d1-5250d835b54e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f1950d03-a167-47a6-97d1-5250d835b54e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f1950d03-a167-47a6-97d1-5250d835b54e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-f1950d03-a167-47a6-97d1-5250d835b54e .shogun-image-content {
  
    justify-content: center;
  
}

.s-f1950d03-a167-47a6-97d1-5250d835b54e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image {
  box-sizing: border-box;
}



.s-f1950d03-a167-47a6-97d1-5250d835b54e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f1950d03-a167-47a6-97d1-5250d835b54e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image-container {
      position: relative;
    }

    .s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f1950d03-a167-47a6-97d1-5250d835b54e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-f1950d03-a167-47a6-97d1-5250d835b54e {
  margin: 0 !important;
  overflow: visible;
}

#s-f1950d03-a167-47a6-97d1-5250d835b54e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f1950d03-a167-47a6-97d1-5250d835b54e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f1950d03-a167-47a6-97d1-5250d835b54e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f1950d03-a167-47a6-97d1-5250d835b54e img.shogun-image {
  /* Add background color handling */
  
}

#s-f1950d03-a167-47a6-97d1-5250d835b54e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f1950d03-a167-47a6-97d1-5250d835b54e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f1950d03-a167-47a6-97d1-5250d835b54e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f1950d03-a167-47a6-97d1-5250d835b54e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f1950d03-a167-47a6-97d1-5250d835b54e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-f1950d03-a167-47a6-97d1-5250d835b54e .shogun-image-content {
  
    justify-content: center;
  
}

.s-f1950d03-a167-47a6-97d1-5250d835b54e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image {
  box-sizing: border-box;
}



.s-f1950d03-a167-47a6-97d1-5250d835b54e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f1950d03-a167-47a6-97d1-5250d835b54e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image-container {
      position: relative;
    }

    .s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f1950d03-a167-47a6-97d1-5250d835b54e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f1950d03-a167-47a6-97d1-5250d835b54e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-0e213b88-a27d-4fde-8682-c91a934e08c6 {
  max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-0e213b88-a27d-4fde-8682-c91a934e08c6 {
  margin: 0 !important;
  overflow: visible;
}

#s-0e213b88-a27d-4fde-8682-c91a934e08c6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0e213b88-a27d-4fde-8682-c91a934e08c6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0e213b88-a27d-4fde-8682-c91a934e08c6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0e213b88-a27d-4fde-8682-c91a934e08c6 img.shogun-image {
  /* Add background color handling */
  
}

#s-0e213b88-a27d-4fde-8682-c91a934e08c6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0e213b88-a27d-4fde-8682-c91a934e08c6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0e213b88-a27d-4fde-8682-c91a934e08c6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0e213b88-a27d-4fde-8682-c91a934e08c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0e213b88-a27d-4fde-8682-c91a934e08c6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0e213b88-a27d-4fde-8682-c91a934e08c6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0e213b88-a27d-4fde-8682-c91a934e08c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image {
  box-sizing: border-box;
}



.s-0e213b88-a27d-4fde-8682-c91a934e08c6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0e213b88-a27d-4fde-8682-c91a934e08c6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image-container {
      position: relative;
    }

    .s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0e213b88-a27d-4fde-8682-c91a934e08c6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-0e213b88-a27d-4fde-8682-c91a934e08c6 {
  margin: 0 !important;
  overflow: visible;
}

#s-0e213b88-a27d-4fde-8682-c91a934e08c6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0e213b88-a27d-4fde-8682-c91a934e08c6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0e213b88-a27d-4fde-8682-c91a934e08c6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0e213b88-a27d-4fde-8682-c91a934e08c6 img.shogun-image {
  /* Add background color handling */
  
}

#s-0e213b88-a27d-4fde-8682-c91a934e08c6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0e213b88-a27d-4fde-8682-c91a934e08c6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0e213b88-a27d-4fde-8682-c91a934e08c6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0e213b88-a27d-4fde-8682-c91a934e08c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0e213b88-a27d-4fde-8682-c91a934e08c6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0e213b88-a27d-4fde-8682-c91a934e08c6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0e213b88-a27d-4fde-8682-c91a934e08c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image {
  box-sizing: border-box;
}



.s-0e213b88-a27d-4fde-8682-c91a934e08c6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0e213b88-a27d-4fde-8682-c91a934e08c6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image-container {
      position: relative;
    }

    .s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0e213b88-a27d-4fde-8682-c91a934e08c6 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-0e213b88-a27d-4fde-8682-c91a934e08c6 {
  margin: 0 !important;
  overflow: visible;
}

#s-0e213b88-a27d-4fde-8682-c91a934e08c6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0e213b88-a27d-4fde-8682-c91a934e08c6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0e213b88-a27d-4fde-8682-c91a934e08c6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0e213b88-a27d-4fde-8682-c91a934e08c6 img.shogun-image {
  /* Add background color handling */
  
}

#s-0e213b88-a27d-4fde-8682-c91a934e08c6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0e213b88-a27d-4fde-8682-c91a934e08c6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0e213b88-a27d-4fde-8682-c91a934e08c6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0e213b88-a27d-4fde-8682-c91a934e08c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0e213b88-a27d-4fde-8682-c91a934e08c6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0e213b88-a27d-4fde-8682-c91a934e08c6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0e213b88-a27d-4fde-8682-c91a934e08c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image {
  box-sizing: border-box;
}



.s-0e213b88-a27d-4fde-8682-c91a934e08c6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0e213b88-a27d-4fde-8682-c91a934e08c6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image-container {
      position: relative;
    }

    .s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0e213b88-a27d-4fde-8682-c91a934e08c6 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-0e213b88-a27d-4fde-8682-c91a934e08c6 {
  margin: 0 !important;
  overflow: visible;
}

#s-0e213b88-a27d-4fde-8682-c91a934e08c6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0e213b88-a27d-4fde-8682-c91a934e08c6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0e213b88-a27d-4fde-8682-c91a934e08c6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0e213b88-a27d-4fde-8682-c91a934e08c6 img.shogun-image {
  /* Add background color handling */
  
}

#s-0e213b88-a27d-4fde-8682-c91a934e08c6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0e213b88-a27d-4fde-8682-c91a934e08c6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0e213b88-a27d-4fde-8682-c91a934e08c6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0e213b88-a27d-4fde-8682-c91a934e08c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0e213b88-a27d-4fde-8682-c91a934e08c6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0e213b88-a27d-4fde-8682-c91a934e08c6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0e213b88-a27d-4fde-8682-c91a934e08c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image {
  box-sizing: border-box;
}



.s-0e213b88-a27d-4fde-8682-c91a934e08c6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0e213b88-a27d-4fde-8682-c91a934e08c6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image-container {
      position: relative;
    }

    .s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0e213b88-a27d-4fde-8682-c91a934e08c6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-0e213b88-a27d-4fde-8682-c91a934e08c6 {
  margin: 0 !important;
  overflow: visible;
}

#s-0e213b88-a27d-4fde-8682-c91a934e08c6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0e213b88-a27d-4fde-8682-c91a934e08c6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0e213b88-a27d-4fde-8682-c91a934e08c6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0e213b88-a27d-4fde-8682-c91a934e08c6 img.shogun-image {
  /* Add background color handling */
  
}

#s-0e213b88-a27d-4fde-8682-c91a934e08c6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0e213b88-a27d-4fde-8682-c91a934e08c6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0e213b88-a27d-4fde-8682-c91a934e08c6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0e213b88-a27d-4fde-8682-c91a934e08c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0e213b88-a27d-4fde-8682-c91a934e08c6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0e213b88-a27d-4fde-8682-c91a934e08c6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0e213b88-a27d-4fde-8682-c91a934e08c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image {
  box-sizing: border-box;
}



.s-0e213b88-a27d-4fde-8682-c91a934e08c6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0e213b88-a27d-4fde-8682-c91a934e08c6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image-container {
      position: relative;
    }

    .s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0e213b88-a27d-4fde-8682-c91a934e08c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0e213b88-a27d-4fde-8682-c91a934e08c6 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;
}
