.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-9c8ed942-c92a-4d68-8acf-05b7991b5b50 {
  min-height: 50px;
}








#s-9c8ed942-c92a-4d68-8acf-05b7991b5b50 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9c8ed942-c92a-4d68-8acf-05b7991b5b50.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-7037b442-9d96-4bbe-8193-f0fe243f6312 {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-7037b442-9d96-4bbe-8193-f0fe243f6312 {
  margin: 0 !important;
  overflow: visible;
}

#s-7037b442-9d96-4bbe-8193-f0fe243f6312-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7037b442-9d96-4bbe-8193-f0fe243f6312 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7037b442-9d96-4bbe-8193-f0fe243f6312 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7037b442-9d96-4bbe-8193-f0fe243f6312 img.shogun-image {
  /* Add background color handling */
  
}

#s-7037b442-9d96-4bbe-8193-f0fe243f6312 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7037b442-9d96-4bbe-8193-f0fe243f6312 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-7037b442-9d96-4bbe-8193-f0fe243f6312 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7037b442-9d96-4bbe-8193-f0fe243f6312 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7037b442-9d96-4bbe-8193-f0fe243f6312 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-7037b442-9d96-4bbe-8193-f0fe243f6312 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7037b442-9d96-4bbe-8193-f0fe243f6312.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image {
  box-sizing: border-box;
}



.s-7037b442-9d96-4bbe-8193-f0fe243f6312 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7037b442-9d96-4bbe-8193-f0fe243f6312 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image-container {
      position: relative;
    }

    .s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7037b442-9d96-4bbe-8193-f0fe243f6312 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-7037b442-9d96-4bbe-8193-f0fe243f6312 {
  margin: 0 !important;
  overflow: visible;
}

#s-7037b442-9d96-4bbe-8193-f0fe243f6312-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7037b442-9d96-4bbe-8193-f0fe243f6312 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7037b442-9d96-4bbe-8193-f0fe243f6312 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7037b442-9d96-4bbe-8193-f0fe243f6312 img.shogun-image {
  /* Add background color handling */
  
}

#s-7037b442-9d96-4bbe-8193-f0fe243f6312 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7037b442-9d96-4bbe-8193-f0fe243f6312 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-7037b442-9d96-4bbe-8193-f0fe243f6312 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7037b442-9d96-4bbe-8193-f0fe243f6312 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7037b442-9d96-4bbe-8193-f0fe243f6312 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-7037b442-9d96-4bbe-8193-f0fe243f6312 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7037b442-9d96-4bbe-8193-f0fe243f6312.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image {
  box-sizing: border-box;
}



.s-7037b442-9d96-4bbe-8193-f0fe243f6312 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7037b442-9d96-4bbe-8193-f0fe243f6312 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image-container {
      position: relative;
    }

    .s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7037b442-9d96-4bbe-8193-f0fe243f6312 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-7037b442-9d96-4bbe-8193-f0fe243f6312 {
  margin: 0 !important;
  overflow: visible;
}

#s-7037b442-9d96-4bbe-8193-f0fe243f6312-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7037b442-9d96-4bbe-8193-f0fe243f6312 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7037b442-9d96-4bbe-8193-f0fe243f6312 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7037b442-9d96-4bbe-8193-f0fe243f6312 img.shogun-image {
  /* Add background color handling */
  
}

#s-7037b442-9d96-4bbe-8193-f0fe243f6312 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7037b442-9d96-4bbe-8193-f0fe243f6312 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-7037b442-9d96-4bbe-8193-f0fe243f6312 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7037b442-9d96-4bbe-8193-f0fe243f6312 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7037b442-9d96-4bbe-8193-f0fe243f6312 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-7037b442-9d96-4bbe-8193-f0fe243f6312 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7037b442-9d96-4bbe-8193-f0fe243f6312.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image {
  box-sizing: border-box;
}



.s-7037b442-9d96-4bbe-8193-f0fe243f6312 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7037b442-9d96-4bbe-8193-f0fe243f6312 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image-container {
      position: relative;
    }

    .s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7037b442-9d96-4bbe-8193-f0fe243f6312 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-7037b442-9d96-4bbe-8193-f0fe243f6312 {
  margin: 0 !important;
  overflow: visible;
}

#s-7037b442-9d96-4bbe-8193-f0fe243f6312-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7037b442-9d96-4bbe-8193-f0fe243f6312 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7037b442-9d96-4bbe-8193-f0fe243f6312 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7037b442-9d96-4bbe-8193-f0fe243f6312 img.shogun-image {
  /* Add background color handling */
  
}

#s-7037b442-9d96-4bbe-8193-f0fe243f6312 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7037b442-9d96-4bbe-8193-f0fe243f6312 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-7037b442-9d96-4bbe-8193-f0fe243f6312 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7037b442-9d96-4bbe-8193-f0fe243f6312 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7037b442-9d96-4bbe-8193-f0fe243f6312 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-7037b442-9d96-4bbe-8193-f0fe243f6312 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7037b442-9d96-4bbe-8193-f0fe243f6312.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image {
  box-sizing: border-box;
}



.s-7037b442-9d96-4bbe-8193-f0fe243f6312 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7037b442-9d96-4bbe-8193-f0fe243f6312 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image-container {
      position: relative;
    }

    .s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7037b442-9d96-4bbe-8193-f0fe243f6312 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-7037b442-9d96-4bbe-8193-f0fe243f6312 {
  margin: 0 !important;
  overflow: visible;
}

#s-7037b442-9d96-4bbe-8193-f0fe243f6312-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7037b442-9d96-4bbe-8193-f0fe243f6312 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7037b442-9d96-4bbe-8193-f0fe243f6312 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7037b442-9d96-4bbe-8193-f0fe243f6312 img.shogun-image {
  /* Add background color handling */
  
}

#s-7037b442-9d96-4bbe-8193-f0fe243f6312 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7037b442-9d96-4bbe-8193-f0fe243f6312 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-7037b442-9d96-4bbe-8193-f0fe243f6312 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7037b442-9d96-4bbe-8193-f0fe243f6312 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7037b442-9d96-4bbe-8193-f0fe243f6312 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-7037b442-9d96-4bbe-8193-f0fe243f6312 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7037b442-9d96-4bbe-8193-f0fe243f6312.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image {
  box-sizing: border-box;
}



.s-7037b442-9d96-4bbe-8193-f0fe243f6312 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7037b442-9d96-4bbe-8193-f0fe243f6312 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image-container {
      position: relative;
    }

    .s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7037b442-9d96-4bbe-8193-f0fe243f6312.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7037b442-9d96-4bbe-8193-f0fe243f6312 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-0bf0442e-f10b-4fed-951d-552758c0cf45 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0bf0442e-f10b-4fed-951d-552758c0cf45 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-ad3c95c4-74dc-4d42-af52-c158bc7eaf4d {
  min-height: 50px;
}








#s-ad3c95c4-74dc-4d42-af52-c158bc7eaf4d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ad3c95c4-74dc-4d42-af52-c158bc7eaf4d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f33ee1d7-2ba1-4323-9e9c-cd2fe44b69a1 {
  min-height: 50px;
}








#s-f33ee1d7-2ba1-4323-9e9c-cd2fe44b69a1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f33ee1d7-2ba1-4323-9e9c-cd2fe44b69a1.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-7c6df4a9-f751-41bf-a2bf-e9bf3aefe6b8 {
  margin-top: -8px;
margin-bottom: -8px;
min-height: 50px;
}








#s-7c6df4a9-f751-41bf-a2bf-e9bf3aefe6b8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7c6df4a9-f751-41bf-a2bf-e9bf3aefe6b8.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%;
}

#s-98406b1c-eef4-458d-a033-f213773331e4 {
  min-height: 50px;
}








#s-98406b1c-eef4-458d-a033-f213773331e4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-98406b1c-eef4-458d-a033-f213773331e4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a4213669-c033-4db1-b34c-6a64d20bbe0d {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-a4213669-c033-4db1-b34c-6a64d20bbe0d {
  margin: 0 !important;
  overflow: visible;
}

#s-a4213669-c033-4db1-b34c-6a64d20bbe0d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a4213669-c033-4db1-b34c-6a64d20bbe0d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a4213669-c033-4db1-b34c-6a64d20bbe0d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a4213669-c033-4db1-b34c-6a64d20bbe0d img.shogun-image {
  /* Add background color handling */
  
}

#s-a4213669-c033-4db1-b34c-6a64d20bbe0d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a4213669-c033-4db1-b34c-6a64d20bbe0d .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-a4213669-c033-4db1-b34c-6a64d20bbe0d .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a4213669-c033-4db1-b34c-6a64d20bbe0d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a4213669-c033-4db1-b34c-6a64d20bbe0d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-a4213669-c033-4db1-b34c-6a64d20bbe0d .shogun-image-content {
  
    justify-content: center;
  
}

.s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image {
  box-sizing: border-box;
}



.s-a4213669-c033-4db1-b34c-6a64d20bbe0d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a4213669-c033-4db1-b34c-6a64d20bbe0d {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image-container {
      position: relative;
    }

    .s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a4213669-c033-4db1-b34c-6a64d20bbe0d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-a4213669-c033-4db1-b34c-6a64d20bbe0d {
  margin: 0 !important;
  overflow: visible;
}

#s-a4213669-c033-4db1-b34c-6a64d20bbe0d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a4213669-c033-4db1-b34c-6a64d20bbe0d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a4213669-c033-4db1-b34c-6a64d20bbe0d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a4213669-c033-4db1-b34c-6a64d20bbe0d img.shogun-image {
  /* Add background color handling */
  
}

#s-a4213669-c033-4db1-b34c-6a64d20bbe0d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a4213669-c033-4db1-b34c-6a64d20bbe0d .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-a4213669-c033-4db1-b34c-6a64d20bbe0d .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a4213669-c033-4db1-b34c-6a64d20bbe0d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a4213669-c033-4db1-b34c-6a64d20bbe0d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-a4213669-c033-4db1-b34c-6a64d20bbe0d .shogun-image-content {
  
    justify-content: center;
  
}

.s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image {
  box-sizing: border-box;
}



.s-a4213669-c033-4db1-b34c-6a64d20bbe0d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a4213669-c033-4db1-b34c-6a64d20bbe0d {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image-container {
      position: relative;
    }

    .s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a4213669-c033-4db1-b34c-6a64d20bbe0d 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-a4213669-c033-4db1-b34c-6a64d20bbe0d {
  margin: 0 !important;
  overflow: visible;
}

#s-a4213669-c033-4db1-b34c-6a64d20bbe0d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a4213669-c033-4db1-b34c-6a64d20bbe0d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a4213669-c033-4db1-b34c-6a64d20bbe0d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a4213669-c033-4db1-b34c-6a64d20bbe0d img.shogun-image {
  /* Add background color handling */
  
}

#s-a4213669-c033-4db1-b34c-6a64d20bbe0d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a4213669-c033-4db1-b34c-6a64d20bbe0d .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-a4213669-c033-4db1-b34c-6a64d20bbe0d .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a4213669-c033-4db1-b34c-6a64d20bbe0d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a4213669-c033-4db1-b34c-6a64d20bbe0d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-a4213669-c033-4db1-b34c-6a64d20bbe0d .shogun-image-content {
  
    justify-content: center;
  
}

.s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image {
  box-sizing: border-box;
}



.s-a4213669-c033-4db1-b34c-6a64d20bbe0d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a4213669-c033-4db1-b34c-6a64d20bbe0d {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image-container {
      position: relative;
    }

    .s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a4213669-c033-4db1-b34c-6a64d20bbe0d 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-a4213669-c033-4db1-b34c-6a64d20bbe0d {
  margin: 0 !important;
  overflow: visible;
}

#s-a4213669-c033-4db1-b34c-6a64d20bbe0d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a4213669-c033-4db1-b34c-6a64d20bbe0d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a4213669-c033-4db1-b34c-6a64d20bbe0d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a4213669-c033-4db1-b34c-6a64d20bbe0d img.shogun-image {
  /* Add background color handling */
  
}

#s-a4213669-c033-4db1-b34c-6a64d20bbe0d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a4213669-c033-4db1-b34c-6a64d20bbe0d .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-a4213669-c033-4db1-b34c-6a64d20bbe0d .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a4213669-c033-4db1-b34c-6a64d20bbe0d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a4213669-c033-4db1-b34c-6a64d20bbe0d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-a4213669-c033-4db1-b34c-6a64d20bbe0d .shogun-image-content {
  
    justify-content: center;
  
}

.s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image {
  box-sizing: border-box;
}



.s-a4213669-c033-4db1-b34c-6a64d20bbe0d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a4213669-c033-4db1-b34c-6a64d20bbe0d {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image-container {
      position: relative;
    }

    .s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a4213669-c033-4db1-b34c-6a64d20bbe0d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-a4213669-c033-4db1-b34c-6a64d20bbe0d {
  margin: 0 !important;
  overflow: visible;
}

#s-a4213669-c033-4db1-b34c-6a64d20bbe0d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a4213669-c033-4db1-b34c-6a64d20bbe0d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a4213669-c033-4db1-b34c-6a64d20bbe0d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a4213669-c033-4db1-b34c-6a64d20bbe0d img.shogun-image {
  /* Add background color handling */
  
}

#s-a4213669-c033-4db1-b34c-6a64d20bbe0d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a4213669-c033-4db1-b34c-6a64d20bbe0d .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-a4213669-c033-4db1-b34c-6a64d20bbe0d .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a4213669-c033-4db1-b34c-6a64d20bbe0d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a4213669-c033-4db1-b34c-6a64d20bbe0d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-a4213669-c033-4db1-b34c-6a64d20bbe0d .shogun-image-content {
  
    justify-content: center;
  
}

.s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image {
  box-sizing: border-box;
}



.s-a4213669-c033-4db1-b34c-6a64d20bbe0d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a4213669-c033-4db1-b34c-6a64d20bbe0d {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image-container {
      position: relative;
    }

    .s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a4213669-c033-4db1-b34c-6a64d20bbe0d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a4213669-c033-4db1-b34c-6a64d20bbe0d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
@media (min-width: 0px) {
[id="s-e6319139-b46b-4d5c-a6c2-eb41ff437b44"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e6319139-b46b-4d5c-a6c2-eb41ff437b44"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e6319139-b46b-4d5c-a6c2-eb41ff437b44"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e6319139-b46b-4d5c-a6c2-eb41ff437b44"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-c0bfb0a5-d305-4cde-a88a-c3c01a18a261"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c0bfb0a5-d305-4cde-a88a-c3c01a18a261"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c0bfb0a5-d305-4cde-a88a-c3c01a18a261"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c0bfb0a5-d305-4cde-a88a-c3c01a18a261"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c0bfb0a5-d305-4cde-a88a-c3c01a18a261"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c0bfb0a5-d305-4cde-a88a-c3c01a18a261"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c0bfb0a5-d305-4cde-a88a-c3c01a18a261"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-51d0c5a3-09db-451f-95d8-6680ef7b1722 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-c9ba5e3f-051b-4561-a4ae-24d08874df11"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c9ba5e3f-051b-4561-a4ae-24d08874df11"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c9ba5e3f-051b-4561-a4ae-24d08874df11"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c9ba5e3f-051b-4561-a4ae-24d08874df11"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c9ba5e3f-051b-4561-a4ae-24d08874df11"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c9ba5e3f-051b-4561-a4ae-24d08874df11"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c9ba5e3f-051b-4561-a4ae-24d08874df11"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-f77cf6a9-ca8a-4e15-b6d5-86dddf0820aa {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-d765c337-356e-488b-be14-0afbb61b3a35 {
  max-width: 1200px;
aspect-ratio: 1200/430;
text-align: center;
}

#s-d765c337-356e-488b-be14-0afbb61b3a35 {
  margin: 0 !important;
  overflow: visible;
}

#s-d765c337-356e-488b-be14-0afbb61b3a35-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d765c337-356e-488b-be14-0afbb61b3a35 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d765c337-356e-488b-be14-0afbb61b3a35 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d765c337-356e-488b-be14-0afbb61b3a35 img.shogun-image {
  /* Add background color handling */
  
}

#s-d765c337-356e-488b-be14-0afbb61b3a35 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d765c337-356e-488b-be14-0afbb61b3a35 .shg-image-content-wrapper {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }

    #s-d765c337-356e-488b-be14-0afbb61b3a35 .shogun-image-link {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d765c337-356e-488b-be14-0afbb61b3a35 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d765c337-356e-488b-be14-0afbb61b3a35 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-d765c337-356e-488b-be14-0afbb61b3a35 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d765c337-356e-488b-be14-0afbb61b3a35.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image {
  box-sizing: border-box;
}



.s-d765c337-356e-488b-be14-0afbb61b3a35 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d765c337-356e-488b-be14-0afbb61b3a35 {
      --shg-aspect-ratio: calc(1200/430); 
    }

    .s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image-container {
      position: relative;
    }

    .s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d765c337-356e-488b-be14-0afbb61b3a35 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

@media (min-width: 1200px){#s-d765c337-356e-488b-be14-0afbb61b3a35 {
  margin: 0 !important;
  overflow: visible;
}

#s-d765c337-356e-488b-be14-0afbb61b3a35-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d765c337-356e-488b-be14-0afbb61b3a35 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d765c337-356e-488b-be14-0afbb61b3a35 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d765c337-356e-488b-be14-0afbb61b3a35 img.shogun-image {
  /* Add background color handling */
  
}

#s-d765c337-356e-488b-be14-0afbb61b3a35 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d765c337-356e-488b-be14-0afbb61b3a35 .shg-image-content-wrapper {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }

    #s-d765c337-356e-488b-be14-0afbb61b3a35 .shogun-image-link {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d765c337-356e-488b-be14-0afbb61b3a35 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d765c337-356e-488b-be14-0afbb61b3a35 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-d765c337-356e-488b-be14-0afbb61b3a35 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d765c337-356e-488b-be14-0afbb61b3a35.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image {
  box-sizing: border-box;
}



.s-d765c337-356e-488b-be14-0afbb61b3a35 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d765c337-356e-488b-be14-0afbb61b3a35 {
      --shg-aspect-ratio: calc(1200/430); 
    }

    .s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image-container {
      position: relative;
    }

    .s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d765c337-356e-488b-be14-0afbb61b3a35 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-d765c337-356e-488b-be14-0afbb61b3a35 {
  margin: 0 !important;
  overflow: visible;
}

#s-d765c337-356e-488b-be14-0afbb61b3a35-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d765c337-356e-488b-be14-0afbb61b3a35 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d765c337-356e-488b-be14-0afbb61b3a35 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d765c337-356e-488b-be14-0afbb61b3a35 img.shogun-image {
  /* Add background color handling */
  
}

#s-d765c337-356e-488b-be14-0afbb61b3a35 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d765c337-356e-488b-be14-0afbb61b3a35 .shg-image-content-wrapper {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }

    #s-d765c337-356e-488b-be14-0afbb61b3a35 .shogun-image-link {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d765c337-356e-488b-be14-0afbb61b3a35 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d765c337-356e-488b-be14-0afbb61b3a35 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-d765c337-356e-488b-be14-0afbb61b3a35 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d765c337-356e-488b-be14-0afbb61b3a35.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image {
  box-sizing: border-box;
}



.s-d765c337-356e-488b-be14-0afbb61b3a35 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d765c337-356e-488b-be14-0afbb61b3a35 {
      --shg-aspect-ratio: calc(1200/430); 
    }

    .s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image-container {
      position: relative;
    }

    .s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d765c337-356e-488b-be14-0afbb61b3a35 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-d765c337-356e-488b-be14-0afbb61b3a35 {
  margin: 0 !important;
  overflow: visible;
}

#s-d765c337-356e-488b-be14-0afbb61b3a35-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d765c337-356e-488b-be14-0afbb61b3a35 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d765c337-356e-488b-be14-0afbb61b3a35 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d765c337-356e-488b-be14-0afbb61b3a35 img.shogun-image {
  /* Add background color handling */
  
}

#s-d765c337-356e-488b-be14-0afbb61b3a35 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d765c337-356e-488b-be14-0afbb61b3a35 .shg-image-content-wrapper {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }

    #s-d765c337-356e-488b-be14-0afbb61b3a35 .shogun-image-link {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d765c337-356e-488b-be14-0afbb61b3a35 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d765c337-356e-488b-be14-0afbb61b3a35 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-d765c337-356e-488b-be14-0afbb61b3a35 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d765c337-356e-488b-be14-0afbb61b3a35.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image {
  box-sizing: border-box;
}



.s-d765c337-356e-488b-be14-0afbb61b3a35 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d765c337-356e-488b-be14-0afbb61b3a35 {
      --shg-aspect-ratio: calc(1200/430); 
    }

    .s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image-container {
      position: relative;
    }

    .s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d765c337-356e-488b-be14-0afbb61b3a35 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

}@media (max-width: 767px){#s-d765c337-356e-488b-be14-0afbb61b3a35 {
  margin: 0 !important;
  overflow: visible;
}

#s-d765c337-356e-488b-be14-0afbb61b3a35-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d765c337-356e-488b-be14-0afbb61b3a35 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d765c337-356e-488b-be14-0afbb61b3a35 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d765c337-356e-488b-be14-0afbb61b3a35 img.shogun-image {
  /* Add background color handling */
  
}

#s-d765c337-356e-488b-be14-0afbb61b3a35 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d765c337-356e-488b-be14-0afbb61b3a35 .shg-image-content-wrapper {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }

    #s-d765c337-356e-488b-be14-0afbb61b3a35 .shogun-image-link {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d765c337-356e-488b-be14-0afbb61b3a35 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d765c337-356e-488b-be14-0afbb61b3a35 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-d765c337-356e-488b-be14-0afbb61b3a35 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d765c337-356e-488b-be14-0afbb61b3a35.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image {
  box-sizing: border-box;
}



.s-d765c337-356e-488b-be14-0afbb61b3a35 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d765c337-356e-488b-be14-0afbb61b3a35 {
      --shg-aspect-ratio: calc(1200/430); 
    }

    .s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image-container {
      position: relative;
    }

    .s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d765c337-356e-488b-be14-0afbb61b3a35.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d765c337-356e-488b-be14-0afbb61b3a35 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-d54c0756-31c5-43f4-b84b-cdbe974e49ed {
  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-d54c0756-31c5-43f4-b84b-cdbe974e49ed:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d54c0756-31c5-43f4-b84b-cdbe974e49ed:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-d54c0756-31c5-43f4-b84b-cdbe974e49ed {
  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-d54c0756-31c5-43f4-b84b-cdbe974e49ed-root {
    text-align: center;
  }


#s-d54c0756-31c5-43f4-b84b-cdbe974e49ed.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-d54c0756-31c5-43f4-b84b-cdbe974e49ed-root {
    text-align: left;
  }


#s-d54c0756-31c5-43f4-b84b-cdbe974e49ed.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d54c0756-31c5-43f4-b84b-cdbe974e49ed-root {
    text-align: center;
  }


#s-d54c0756-31c5-43f4-b84b-cdbe974e49ed.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d54c0756-31c5-43f4-b84b-cdbe974e49ed-root {
    text-align: center;
  }


#s-d54c0756-31c5-43f4-b84b-cdbe974e49ed.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-d54c0756-31c5-43f4-b84b-cdbe974e49ed-root {
    text-align: center;
  }


#s-d54c0756-31c5-43f4-b84b-cdbe974e49ed.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-9429947f-2dbd-415d-a23a-8034f3c3e5f8 {
  min-height: 50px;
}








#s-9429947f-2dbd-415d-a23a-8034f3c3e5f8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9429947f-2dbd-415d-a23a-8034f3c3e5f8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5b084909-a095-4fea-bb59-1686746e75f3 {
  max-width: 1500px;
aspect-ratio: 1500/563;
text-align: center;
}

#s-5b084909-a095-4fea-bb59-1686746e75f3 {
  margin: 0 !important;
  overflow: visible;
}

#s-5b084909-a095-4fea-bb59-1686746e75f3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5b084909-a095-4fea-bb59-1686746e75f3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5b084909-a095-4fea-bb59-1686746e75f3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5b084909-a095-4fea-bb59-1686746e75f3 img.shogun-image {
  /* Add background color handling */
  
}

#s-5b084909-a095-4fea-bb59-1686746e75f3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5b084909-a095-4fea-bb59-1686746e75f3 .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-5b084909-a095-4fea-bb59-1686746e75f3 .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b084909-a095-4fea-bb59-1686746e75f3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5b084909-a095-4fea-bb59-1686746e75f3 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-5b084909-a095-4fea-bb59-1686746e75f3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5b084909-a095-4fea-bb59-1686746e75f3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image {
  box-sizing: border-box;
}



.s-5b084909-a095-4fea-bb59-1686746e75f3 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5b084909-a095-4fea-bb59-1686746e75f3 {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image-container {
      position: relative;
    }

    .s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b084909-a095-4fea-bb59-1686746e75f3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-5b084909-a095-4fea-bb59-1686746e75f3 {
  margin: 0 !important;
  overflow: visible;
}

#s-5b084909-a095-4fea-bb59-1686746e75f3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5b084909-a095-4fea-bb59-1686746e75f3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5b084909-a095-4fea-bb59-1686746e75f3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5b084909-a095-4fea-bb59-1686746e75f3 img.shogun-image {
  /* Add background color handling */
  
}

#s-5b084909-a095-4fea-bb59-1686746e75f3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5b084909-a095-4fea-bb59-1686746e75f3 .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-5b084909-a095-4fea-bb59-1686746e75f3 .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b084909-a095-4fea-bb59-1686746e75f3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5b084909-a095-4fea-bb59-1686746e75f3 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-5b084909-a095-4fea-bb59-1686746e75f3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5b084909-a095-4fea-bb59-1686746e75f3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image {
  box-sizing: border-box;
}



.s-5b084909-a095-4fea-bb59-1686746e75f3 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5b084909-a095-4fea-bb59-1686746e75f3 {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image-container {
      position: relative;
    }

    .s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b084909-a095-4fea-bb59-1686746e75f3 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-5b084909-a095-4fea-bb59-1686746e75f3 {
  margin: 0 !important;
  overflow: visible;
}

#s-5b084909-a095-4fea-bb59-1686746e75f3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5b084909-a095-4fea-bb59-1686746e75f3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5b084909-a095-4fea-bb59-1686746e75f3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5b084909-a095-4fea-bb59-1686746e75f3 img.shogun-image {
  /* Add background color handling */
  
}

#s-5b084909-a095-4fea-bb59-1686746e75f3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5b084909-a095-4fea-bb59-1686746e75f3 .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-5b084909-a095-4fea-bb59-1686746e75f3 .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b084909-a095-4fea-bb59-1686746e75f3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5b084909-a095-4fea-bb59-1686746e75f3 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-5b084909-a095-4fea-bb59-1686746e75f3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5b084909-a095-4fea-bb59-1686746e75f3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image {
  box-sizing: border-box;
}



.s-5b084909-a095-4fea-bb59-1686746e75f3 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5b084909-a095-4fea-bb59-1686746e75f3 {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image-container {
      position: relative;
    }

    .s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b084909-a095-4fea-bb59-1686746e75f3 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-5b084909-a095-4fea-bb59-1686746e75f3 {
  margin: 0 !important;
  overflow: visible;
}

#s-5b084909-a095-4fea-bb59-1686746e75f3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5b084909-a095-4fea-bb59-1686746e75f3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5b084909-a095-4fea-bb59-1686746e75f3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5b084909-a095-4fea-bb59-1686746e75f3 img.shogun-image {
  /* Add background color handling */
  
}

#s-5b084909-a095-4fea-bb59-1686746e75f3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5b084909-a095-4fea-bb59-1686746e75f3 .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-5b084909-a095-4fea-bb59-1686746e75f3 .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b084909-a095-4fea-bb59-1686746e75f3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5b084909-a095-4fea-bb59-1686746e75f3 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-5b084909-a095-4fea-bb59-1686746e75f3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5b084909-a095-4fea-bb59-1686746e75f3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image {
  box-sizing: border-box;
}



.s-5b084909-a095-4fea-bb59-1686746e75f3 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5b084909-a095-4fea-bb59-1686746e75f3 {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image-container {
      position: relative;
    }

    .s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b084909-a095-4fea-bb59-1686746e75f3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-5b084909-a095-4fea-bb59-1686746e75f3 {
  margin: 0 !important;
  overflow: visible;
}

#s-5b084909-a095-4fea-bb59-1686746e75f3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5b084909-a095-4fea-bb59-1686746e75f3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5b084909-a095-4fea-bb59-1686746e75f3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5b084909-a095-4fea-bb59-1686746e75f3 img.shogun-image {
  /* Add background color handling */
  
}

#s-5b084909-a095-4fea-bb59-1686746e75f3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5b084909-a095-4fea-bb59-1686746e75f3 .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-5b084909-a095-4fea-bb59-1686746e75f3 .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b084909-a095-4fea-bb59-1686746e75f3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5b084909-a095-4fea-bb59-1686746e75f3 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-5b084909-a095-4fea-bb59-1686746e75f3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5b084909-a095-4fea-bb59-1686746e75f3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image {
  box-sizing: border-box;
}



.s-5b084909-a095-4fea-bb59-1686746e75f3 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5b084909-a095-4fea-bb59-1686746e75f3 {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image-container {
      position: relative;
    }

    .s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b084909-a095-4fea-bb59-1686746e75f3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b084909-a095-4fea-bb59-1686746e75f3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
@media (min-width: 0px) {
[id="s-9ec3993a-d4db-403d-8197-4cbb9e46c628"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-9ec3993a-d4db-403d-8197-4cbb9e46c628"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-9ec3993a-d4db-403d-8197-4cbb9e46c628"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-9ec3993a-d4db-403d-8197-4cbb9e46c628"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-75f6f658-6e58-4d61-ac85-67ec3ab3587e {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-75f6f658-6e58-4d61-ac85-67ec3ab3587e {
  margin: 0 !important;
  overflow: visible;
}

#s-75f6f658-6e58-4d61-ac85-67ec3ab3587e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-75f6f658-6e58-4d61-ac85-67ec3ab3587e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-75f6f658-6e58-4d61-ac85-67ec3ab3587e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-75f6f658-6e58-4d61-ac85-67ec3ab3587e img.shogun-image {
  /* Add background color handling */
  
}

#s-75f6f658-6e58-4d61-ac85-67ec3ab3587e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-75f6f658-6e58-4d61-ac85-67ec3ab3587e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-75f6f658-6e58-4d61-ac85-67ec3ab3587e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-75f6f658-6e58-4d61-ac85-67ec3ab3587e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-75f6f658-6e58-4d61-ac85-67ec3ab3587e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-75f6f658-6e58-4d61-ac85-67ec3ab3587e .shogun-image-content {
  
    justify-content: center;
  
}

.s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image {
  box-sizing: border-box;
}



.s-75f6f658-6e58-4d61-ac85-67ec3ab3587e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-75f6f658-6e58-4d61-ac85-67ec3ab3587e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image-container {
      position: relative;
    }

    .s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75f6f658-6e58-4d61-ac85-67ec3ab3587e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-75f6f658-6e58-4d61-ac85-67ec3ab3587e {
  margin: 0 !important;
  overflow: visible;
}

#s-75f6f658-6e58-4d61-ac85-67ec3ab3587e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-75f6f658-6e58-4d61-ac85-67ec3ab3587e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-75f6f658-6e58-4d61-ac85-67ec3ab3587e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-75f6f658-6e58-4d61-ac85-67ec3ab3587e img.shogun-image {
  /* Add background color handling */
  
}

#s-75f6f658-6e58-4d61-ac85-67ec3ab3587e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-75f6f658-6e58-4d61-ac85-67ec3ab3587e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-75f6f658-6e58-4d61-ac85-67ec3ab3587e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-75f6f658-6e58-4d61-ac85-67ec3ab3587e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-75f6f658-6e58-4d61-ac85-67ec3ab3587e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-75f6f658-6e58-4d61-ac85-67ec3ab3587e .shogun-image-content {
  
    justify-content: center;
  
}

.s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image {
  box-sizing: border-box;
}



.s-75f6f658-6e58-4d61-ac85-67ec3ab3587e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-75f6f658-6e58-4d61-ac85-67ec3ab3587e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image-container {
      position: relative;
    }

    .s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75f6f658-6e58-4d61-ac85-67ec3ab3587e 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-75f6f658-6e58-4d61-ac85-67ec3ab3587e {
  margin: 0 !important;
  overflow: visible;
}

#s-75f6f658-6e58-4d61-ac85-67ec3ab3587e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-75f6f658-6e58-4d61-ac85-67ec3ab3587e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-75f6f658-6e58-4d61-ac85-67ec3ab3587e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-75f6f658-6e58-4d61-ac85-67ec3ab3587e img.shogun-image {
  /* Add background color handling */
  
}

#s-75f6f658-6e58-4d61-ac85-67ec3ab3587e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-75f6f658-6e58-4d61-ac85-67ec3ab3587e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-75f6f658-6e58-4d61-ac85-67ec3ab3587e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-75f6f658-6e58-4d61-ac85-67ec3ab3587e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-75f6f658-6e58-4d61-ac85-67ec3ab3587e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-75f6f658-6e58-4d61-ac85-67ec3ab3587e .shogun-image-content {
  
    justify-content: center;
  
}

.s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image {
  box-sizing: border-box;
}



.s-75f6f658-6e58-4d61-ac85-67ec3ab3587e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-75f6f658-6e58-4d61-ac85-67ec3ab3587e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image-container {
      position: relative;
    }

    .s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75f6f658-6e58-4d61-ac85-67ec3ab3587e 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-75f6f658-6e58-4d61-ac85-67ec3ab3587e {
  margin: 0 !important;
  overflow: visible;
}

#s-75f6f658-6e58-4d61-ac85-67ec3ab3587e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-75f6f658-6e58-4d61-ac85-67ec3ab3587e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-75f6f658-6e58-4d61-ac85-67ec3ab3587e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-75f6f658-6e58-4d61-ac85-67ec3ab3587e img.shogun-image {
  /* Add background color handling */
  
}

#s-75f6f658-6e58-4d61-ac85-67ec3ab3587e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-75f6f658-6e58-4d61-ac85-67ec3ab3587e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-75f6f658-6e58-4d61-ac85-67ec3ab3587e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-75f6f658-6e58-4d61-ac85-67ec3ab3587e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-75f6f658-6e58-4d61-ac85-67ec3ab3587e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-75f6f658-6e58-4d61-ac85-67ec3ab3587e .shogun-image-content {
  
    justify-content: center;
  
}

.s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image {
  box-sizing: border-box;
}



.s-75f6f658-6e58-4d61-ac85-67ec3ab3587e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-75f6f658-6e58-4d61-ac85-67ec3ab3587e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image-container {
      position: relative;
    }

    .s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75f6f658-6e58-4d61-ac85-67ec3ab3587e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-75f6f658-6e58-4d61-ac85-67ec3ab3587e {
  margin: 0 !important;
  overflow: visible;
}

#s-75f6f658-6e58-4d61-ac85-67ec3ab3587e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-75f6f658-6e58-4d61-ac85-67ec3ab3587e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-75f6f658-6e58-4d61-ac85-67ec3ab3587e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-75f6f658-6e58-4d61-ac85-67ec3ab3587e img.shogun-image {
  /* Add background color handling */
  
}

#s-75f6f658-6e58-4d61-ac85-67ec3ab3587e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-75f6f658-6e58-4d61-ac85-67ec3ab3587e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-75f6f658-6e58-4d61-ac85-67ec3ab3587e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-75f6f658-6e58-4d61-ac85-67ec3ab3587e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-75f6f658-6e58-4d61-ac85-67ec3ab3587e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-75f6f658-6e58-4d61-ac85-67ec3ab3587e .shogun-image-content {
  
    justify-content: center;
  
}

.s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image {
  box-sizing: border-box;
}



.s-75f6f658-6e58-4d61-ac85-67ec3ab3587e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-75f6f658-6e58-4d61-ac85-67ec3ab3587e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image-container {
      position: relative;
    }

    .s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75f6f658-6e58-4d61-ac85-67ec3ab3587e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75f6f658-6e58-4d61-ac85-67ec3ab3587e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-5dea947d-4d97-4a2e-9165-d24c45b99c70 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-5dea947d-4d97-4a2e-9165-d24c45b99c70 {
  margin: 0 !important;
  overflow: visible;
}

#s-5dea947d-4d97-4a2e-9165-d24c45b99c70-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5dea947d-4d97-4a2e-9165-d24c45b99c70 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5dea947d-4d97-4a2e-9165-d24c45b99c70 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5dea947d-4d97-4a2e-9165-d24c45b99c70 img.shogun-image {
  /* Add background color handling */
  
}

#s-5dea947d-4d97-4a2e-9165-d24c45b99c70 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5dea947d-4d97-4a2e-9165-d24c45b99c70 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5dea947d-4d97-4a2e-9165-d24c45b99c70 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5dea947d-4d97-4a2e-9165-d24c45b99c70 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5dea947d-4d97-4a2e-9165-d24c45b99c70 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-5dea947d-4d97-4a2e-9165-d24c45b99c70 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image {
  box-sizing: border-box;
}



.s-5dea947d-4d97-4a2e-9165-d24c45b99c70 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5dea947d-4d97-4a2e-9165-d24c45b99c70 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image-container {
      position: relative;
    }

    .s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5dea947d-4d97-4a2e-9165-d24c45b99c70 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-5dea947d-4d97-4a2e-9165-d24c45b99c70 {
  margin: 0 !important;
  overflow: visible;
}

#s-5dea947d-4d97-4a2e-9165-d24c45b99c70-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5dea947d-4d97-4a2e-9165-d24c45b99c70 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5dea947d-4d97-4a2e-9165-d24c45b99c70 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5dea947d-4d97-4a2e-9165-d24c45b99c70 img.shogun-image {
  /* Add background color handling */
  
}

#s-5dea947d-4d97-4a2e-9165-d24c45b99c70 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5dea947d-4d97-4a2e-9165-d24c45b99c70 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5dea947d-4d97-4a2e-9165-d24c45b99c70 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5dea947d-4d97-4a2e-9165-d24c45b99c70 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5dea947d-4d97-4a2e-9165-d24c45b99c70 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-5dea947d-4d97-4a2e-9165-d24c45b99c70 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image {
  box-sizing: border-box;
}



.s-5dea947d-4d97-4a2e-9165-d24c45b99c70 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5dea947d-4d97-4a2e-9165-d24c45b99c70 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image-container {
      position: relative;
    }

    .s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5dea947d-4d97-4a2e-9165-d24c45b99c70 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-5dea947d-4d97-4a2e-9165-d24c45b99c70 {
  margin: 0 !important;
  overflow: visible;
}

#s-5dea947d-4d97-4a2e-9165-d24c45b99c70-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5dea947d-4d97-4a2e-9165-d24c45b99c70 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5dea947d-4d97-4a2e-9165-d24c45b99c70 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5dea947d-4d97-4a2e-9165-d24c45b99c70 img.shogun-image {
  /* Add background color handling */
  
}

#s-5dea947d-4d97-4a2e-9165-d24c45b99c70 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5dea947d-4d97-4a2e-9165-d24c45b99c70 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5dea947d-4d97-4a2e-9165-d24c45b99c70 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5dea947d-4d97-4a2e-9165-d24c45b99c70 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5dea947d-4d97-4a2e-9165-d24c45b99c70 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-5dea947d-4d97-4a2e-9165-d24c45b99c70 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image {
  box-sizing: border-box;
}



.s-5dea947d-4d97-4a2e-9165-d24c45b99c70 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5dea947d-4d97-4a2e-9165-d24c45b99c70 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image-container {
      position: relative;
    }

    .s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5dea947d-4d97-4a2e-9165-d24c45b99c70 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-5dea947d-4d97-4a2e-9165-d24c45b99c70 {
  margin: 0 !important;
  overflow: visible;
}

#s-5dea947d-4d97-4a2e-9165-d24c45b99c70-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5dea947d-4d97-4a2e-9165-d24c45b99c70 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5dea947d-4d97-4a2e-9165-d24c45b99c70 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5dea947d-4d97-4a2e-9165-d24c45b99c70 img.shogun-image {
  /* Add background color handling */
  
}

#s-5dea947d-4d97-4a2e-9165-d24c45b99c70 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5dea947d-4d97-4a2e-9165-d24c45b99c70 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5dea947d-4d97-4a2e-9165-d24c45b99c70 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5dea947d-4d97-4a2e-9165-d24c45b99c70 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5dea947d-4d97-4a2e-9165-d24c45b99c70 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-5dea947d-4d97-4a2e-9165-d24c45b99c70 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image {
  box-sizing: border-box;
}



.s-5dea947d-4d97-4a2e-9165-d24c45b99c70 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5dea947d-4d97-4a2e-9165-d24c45b99c70 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image-container {
      position: relative;
    }

    .s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5dea947d-4d97-4a2e-9165-d24c45b99c70 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-5dea947d-4d97-4a2e-9165-d24c45b99c70 {
  margin: 0 !important;
  overflow: visible;
}

#s-5dea947d-4d97-4a2e-9165-d24c45b99c70-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5dea947d-4d97-4a2e-9165-d24c45b99c70 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5dea947d-4d97-4a2e-9165-d24c45b99c70 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5dea947d-4d97-4a2e-9165-d24c45b99c70 img.shogun-image {
  /* Add background color handling */
  
}

#s-5dea947d-4d97-4a2e-9165-d24c45b99c70 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5dea947d-4d97-4a2e-9165-d24c45b99c70 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5dea947d-4d97-4a2e-9165-d24c45b99c70 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5dea947d-4d97-4a2e-9165-d24c45b99c70 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5dea947d-4d97-4a2e-9165-d24c45b99c70 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-5dea947d-4d97-4a2e-9165-d24c45b99c70 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image {
  box-sizing: border-box;
}



.s-5dea947d-4d97-4a2e-9165-d24c45b99c70 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5dea947d-4d97-4a2e-9165-d24c45b99c70 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image-container {
      position: relative;
    }

    .s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5dea947d-4d97-4a2e-9165-d24c45b99c70.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5dea947d-4d97-4a2e-9165-d24c45b99c70 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-b0d28819-6704-4ebb-8cb9-68a94ac09617 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-b0d28819-6704-4ebb-8cb9-68a94ac09617 {
  margin: 0 !important;
  overflow: visible;
}

#s-b0d28819-6704-4ebb-8cb9-68a94ac09617-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b0d28819-6704-4ebb-8cb9-68a94ac09617 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b0d28819-6704-4ebb-8cb9-68a94ac09617 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b0d28819-6704-4ebb-8cb9-68a94ac09617 img.shogun-image {
  /* Add background color handling */
  
}

#s-b0d28819-6704-4ebb-8cb9-68a94ac09617 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b0d28819-6704-4ebb-8cb9-68a94ac09617 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b0d28819-6704-4ebb-8cb9-68a94ac09617 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b0d28819-6704-4ebb-8cb9-68a94ac09617 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b0d28819-6704-4ebb-8cb9-68a94ac09617 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-b0d28819-6704-4ebb-8cb9-68a94ac09617 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image {
  box-sizing: border-box;
}



.s-b0d28819-6704-4ebb-8cb9-68a94ac09617 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b0d28819-6704-4ebb-8cb9-68a94ac09617 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image-container {
      position: relative;
    }

    .s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b0d28819-6704-4ebb-8cb9-68a94ac09617 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-b0d28819-6704-4ebb-8cb9-68a94ac09617 {
  margin: 0 !important;
  overflow: visible;
}

#s-b0d28819-6704-4ebb-8cb9-68a94ac09617-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b0d28819-6704-4ebb-8cb9-68a94ac09617 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b0d28819-6704-4ebb-8cb9-68a94ac09617 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b0d28819-6704-4ebb-8cb9-68a94ac09617 img.shogun-image {
  /* Add background color handling */
  
}

#s-b0d28819-6704-4ebb-8cb9-68a94ac09617 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b0d28819-6704-4ebb-8cb9-68a94ac09617 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b0d28819-6704-4ebb-8cb9-68a94ac09617 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b0d28819-6704-4ebb-8cb9-68a94ac09617 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b0d28819-6704-4ebb-8cb9-68a94ac09617 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-b0d28819-6704-4ebb-8cb9-68a94ac09617 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image {
  box-sizing: border-box;
}



.s-b0d28819-6704-4ebb-8cb9-68a94ac09617 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b0d28819-6704-4ebb-8cb9-68a94ac09617 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image-container {
      position: relative;
    }

    .s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b0d28819-6704-4ebb-8cb9-68a94ac09617 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-b0d28819-6704-4ebb-8cb9-68a94ac09617 {
  margin: 0 !important;
  overflow: visible;
}

#s-b0d28819-6704-4ebb-8cb9-68a94ac09617-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b0d28819-6704-4ebb-8cb9-68a94ac09617 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b0d28819-6704-4ebb-8cb9-68a94ac09617 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b0d28819-6704-4ebb-8cb9-68a94ac09617 img.shogun-image {
  /* Add background color handling */
  
}

#s-b0d28819-6704-4ebb-8cb9-68a94ac09617 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b0d28819-6704-4ebb-8cb9-68a94ac09617 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b0d28819-6704-4ebb-8cb9-68a94ac09617 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b0d28819-6704-4ebb-8cb9-68a94ac09617 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b0d28819-6704-4ebb-8cb9-68a94ac09617 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-b0d28819-6704-4ebb-8cb9-68a94ac09617 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image {
  box-sizing: border-box;
}



.s-b0d28819-6704-4ebb-8cb9-68a94ac09617 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b0d28819-6704-4ebb-8cb9-68a94ac09617 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image-container {
      position: relative;
    }

    .s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b0d28819-6704-4ebb-8cb9-68a94ac09617 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-b0d28819-6704-4ebb-8cb9-68a94ac09617 {
  margin: 0 !important;
  overflow: visible;
}

#s-b0d28819-6704-4ebb-8cb9-68a94ac09617-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b0d28819-6704-4ebb-8cb9-68a94ac09617 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b0d28819-6704-4ebb-8cb9-68a94ac09617 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b0d28819-6704-4ebb-8cb9-68a94ac09617 img.shogun-image {
  /* Add background color handling */
  
}

#s-b0d28819-6704-4ebb-8cb9-68a94ac09617 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b0d28819-6704-4ebb-8cb9-68a94ac09617 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b0d28819-6704-4ebb-8cb9-68a94ac09617 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b0d28819-6704-4ebb-8cb9-68a94ac09617 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b0d28819-6704-4ebb-8cb9-68a94ac09617 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-b0d28819-6704-4ebb-8cb9-68a94ac09617 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image {
  box-sizing: border-box;
}



.s-b0d28819-6704-4ebb-8cb9-68a94ac09617 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b0d28819-6704-4ebb-8cb9-68a94ac09617 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image-container {
      position: relative;
    }

    .s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b0d28819-6704-4ebb-8cb9-68a94ac09617 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-b0d28819-6704-4ebb-8cb9-68a94ac09617 {
  margin: 0 !important;
  overflow: visible;
}

#s-b0d28819-6704-4ebb-8cb9-68a94ac09617-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b0d28819-6704-4ebb-8cb9-68a94ac09617 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b0d28819-6704-4ebb-8cb9-68a94ac09617 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b0d28819-6704-4ebb-8cb9-68a94ac09617 img.shogun-image {
  /* Add background color handling */
  
}

#s-b0d28819-6704-4ebb-8cb9-68a94ac09617 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b0d28819-6704-4ebb-8cb9-68a94ac09617 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b0d28819-6704-4ebb-8cb9-68a94ac09617 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b0d28819-6704-4ebb-8cb9-68a94ac09617 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b0d28819-6704-4ebb-8cb9-68a94ac09617 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-b0d28819-6704-4ebb-8cb9-68a94ac09617 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image {
  box-sizing: border-box;
}



.s-b0d28819-6704-4ebb-8cb9-68a94ac09617 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b0d28819-6704-4ebb-8cb9-68a94ac09617 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image-container {
      position: relative;
    }

    .s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b0d28819-6704-4ebb-8cb9-68a94ac09617.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b0d28819-6704-4ebb-8cb9-68a94ac09617 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-79207b58-22e4-412f-aa21-05504988a14c {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-79207b58-22e4-412f-aa21-05504988a14c {
  margin: 0 !important;
  overflow: visible;
}

#s-79207b58-22e4-412f-aa21-05504988a14c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-79207b58-22e4-412f-aa21-05504988a14c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-79207b58-22e4-412f-aa21-05504988a14c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-79207b58-22e4-412f-aa21-05504988a14c img.shogun-image {
  /* Add background color handling */
  
}

#s-79207b58-22e4-412f-aa21-05504988a14c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-79207b58-22e4-412f-aa21-05504988a14c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-79207b58-22e4-412f-aa21-05504988a14c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-79207b58-22e4-412f-aa21-05504988a14c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-79207b58-22e4-412f-aa21-05504988a14c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-79207b58-22e4-412f-aa21-05504988a14c .shogun-image-content {
  
    justify-content: center;
  
}

.s-79207b58-22e4-412f-aa21-05504988a14c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image {
  box-sizing: border-box;
}



.s-79207b58-22e4-412f-aa21-05504988a14c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-79207b58-22e4-412f-aa21-05504988a14c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image-container {
      position: relative;
    }

    .s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-79207b58-22e4-412f-aa21-05504988a14c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-79207b58-22e4-412f-aa21-05504988a14c {
  margin: 0 !important;
  overflow: visible;
}

#s-79207b58-22e4-412f-aa21-05504988a14c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-79207b58-22e4-412f-aa21-05504988a14c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-79207b58-22e4-412f-aa21-05504988a14c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-79207b58-22e4-412f-aa21-05504988a14c img.shogun-image {
  /* Add background color handling */
  
}

#s-79207b58-22e4-412f-aa21-05504988a14c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-79207b58-22e4-412f-aa21-05504988a14c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-79207b58-22e4-412f-aa21-05504988a14c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-79207b58-22e4-412f-aa21-05504988a14c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-79207b58-22e4-412f-aa21-05504988a14c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-79207b58-22e4-412f-aa21-05504988a14c .shogun-image-content {
  
    justify-content: center;
  
}

.s-79207b58-22e4-412f-aa21-05504988a14c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image {
  box-sizing: border-box;
}



.s-79207b58-22e4-412f-aa21-05504988a14c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-79207b58-22e4-412f-aa21-05504988a14c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image-container {
      position: relative;
    }

    .s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-79207b58-22e4-412f-aa21-05504988a14c 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-79207b58-22e4-412f-aa21-05504988a14c {
  margin: 0 !important;
  overflow: visible;
}

#s-79207b58-22e4-412f-aa21-05504988a14c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-79207b58-22e4-412f-aa21-05504988a14c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-79207b58-22e4-412f-aa21-05504988a14c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-79207b58-22e4-412f-aa21-05504988a14c img.shogun-image {
  /* Add background color handling */
  
}

#s-79207b58-22e4-412f-aa21-05504988a14c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-79207b58-22e4-412f-aa21-05504988a14c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-79207b58-22e4-412f-aa21-05504988a14c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-79207b58-22e4-412f-aa21-05504988a14c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-79207b58-22e4-412f-aa21-05504988a14c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-79207b58-22e4-412f-aa21-05504988a14c .shogun-image-content {
  
    justify-content: center;
  
}

.s-79207b58-22e4-412f-aa21-05504988a14c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image {
  box-sizing: border-box;
}



.s-79207b58-22e4-412f-aa21-05504988a14c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-79207b58-22e4-412f-aa21-05504988a14c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image-container {
      position: relative;
    }

    .s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-79207b58-22e4-412f-aa21-05504988a14c 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-79207b58-22e4-412f-aa21-05504988a14c {
  margin: 0 !important;
  overflow: visible;
}

#s-79207b58-22e4-412f-aa21-05504988a14c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-79207b58-22e4-412f-aa21-05504988a14c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-79207b58-22e4-412f-aa21-05504988a14c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-79207b58-22e4-412f-aa21-05504988a14c img.shogun-image {
  /* Add background color handling */
  
}

#s-79207b58-22e4-412f-aa21-05504988a14c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-79207b58-22e4-412f-aa21-05504988a14c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-79207b58-22e4-412f-aa21-05504988a14c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-79207b58-22e4-412f-aa21-05504988a14c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-79207b58-22e4-412f-aa21-05504988a14c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-79207b58-22e4-412f-aa21-05504988a14c .shogun-image-content {
  
    justify-content: center;
  
}

.s-79207b58-22e4-412f-aa21-05504988a14c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image {
  box-sizing: border-box;
}



.s-79207b58-22e4-412f-aa21-05504988a14c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-79207b58-22e4-412f-aa21-05504988a14c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image-container {
      position: relative;
    }

    .s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-79207b58-22e4-412f-aa21-05504988a14c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-79207b58-22e4-412f-aa21-05504988a14c {
  margin: 0 !important;
  overflow: visible;
}

#s-79207b58-22e4-412f-aa21-05504988a14c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-79207b58-22e4-412f-aa21-05504988a14c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-79207b58-22e4-412f-aa21-05504988a14c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-79207b58-22e4-412f-aa21-05504988a14c img.shogun-image {
  /* Add background color handling */
  
}

#s-79207b58-22e4-412f-aa21-05504988a14c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-79207b58-22e4-412f-aa21-05504988a14c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-79207b58-22e4-412f-aa21-05504988a14c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-79207b58-22e4-412f-aa21-05504988a14c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-79207b58-22e4-412f-aa21-05504988a14c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-79207b58-22e4-412f-aa21-05504988a14c .shogun-image-content {
  
    justify-content: center;
  
}

.s-79207b58-22e4-412f-aa21-05504988a14c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image {
  box-sizing: border-box;
}



.s-79207b58-22e4-412f-aa21-05504988a14c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-79207b58-22e4-412f-aa21-05504988a14c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image-container {
      position: relative;
    }

    .s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-79207b58-22e4-412f-aa21-05504988a14c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-79207b58-22e4-412f-aa21-05504988a14c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
@media (min-width: 0px) {
[id="s-9cc23370-1855-4d84-ae52-de1f40d4bb4d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9cc23370-1855-4d84-ae52-de1f40d4bb4d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9cc23370-1855-4d84-ae52-de1f40d4bb4d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9cc23370-1855-4d84-ae52-de1f40d4bb4d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-25c39c28-be8c-463a-80ae-a7c19dfe6045"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-25c39c28-be8c-463a-80ae-a7c19dfe6045"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-25c39c28-be8c-463a-80ae-a7c19dfe6045"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-25c39c28-be8c-463a-80ae-a7c19dfe6045"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-25c39c28-be8c-463a-80ae-a7c19dfe6045"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-25c39c28-be8c-463a-80ae-a7c19dfe6045"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-25c39c28-be8c-463a-80ae-a7c19dfe6045"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-e7f6e1b2-05ee-4df8-a635-064d674d9391 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-577bafbd-a013-4295-9ccd-b5b4760384b9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-577bafbd-a013-4295-9ccd-b5b4760384b9"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-577bafbd-a013-4295-9ccd-b5b4760384b9"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-577bafbd-a013-4295-9ccd-b5b4760384b9"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-577bafbd-a013-4295-9ccd-b5b4760384b9"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-577bafbd-a013-4295-9ccd-b5b4760384b9"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-577bafbd-a013-4295-9ccd-b5b4760384b9"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-9097585f-991b-4858-aa67-4739d640074d {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-3182ff7d-99f1-4ce9-9054-80baaf1ad65c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3182ff7d-99f1-4ce9-9054-80baaf1ad65c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3182ff7d-99f1-4ce9-9054-80baaf1ad65c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3182ff7d-99f1-4ce9-9054-80baaf1ad65c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-dcb5b3f8-a6b9-4740-af19-cffae992a842"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-dcb5b3f8-a6b9-4740-af19-cffae992a842"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-dcb5b3f8-a6b9-4740-af19-cffae992a842"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-dcb5b3f8-a6b9-4740-af19-cffae992a842"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-dcb5b3f8-a6b9-4740-af19-cffae992a842"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-dcb5b3f8-a6b9-4740-af19-cffae992a842"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-dcb5b3f8-a6b9-4740-af19-cffae992a842"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-3d3f3d36-7572-42e7-9184-f1f25ab14d4b {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-bcf7edd2-8717-472e-aeae-ac4f59091798"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bcf7edd2-8717-472e-aeae-ac4f59091798"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-bcf7edd2-8717-472e-aeae-ac4f59091798"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-bcf7edd2-8717-472e-aeae-ac4f59091798"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-bcf7edd2-8717-472e-aeae-ac4f59091798"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-bcf7edd2-8717-472e-aeae-ac4f59091798"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-bcf7edd2-8717-472e-aeae-ac4f59091798"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-ca5f6205-71a2-462a-a764-b6af6bb1b701 {
  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-85885382-c221-47d0-8292-034169335210"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-85885382-c221-47d0-8292-034169335210"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-85885382-c221-47d0-8292-034169335210"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-85885382-c221-47d0-8292-034169335210"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-b6340179-4ea4-460f-ae08-c56d75cbfeba"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b6340179-4ea4-460f-ae08-c56d75cbfeba"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-b6340179-4ea4-460f-ae08-c56d75cbfeba"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b6340179-4ea4-460f-ae08-c56d75cbfeba"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-b6340179-4ea4-460f-ae08-c56d75cbfeba"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b6340179-4ea4-460f-ae08-c56d75cbfeba"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-b6340179-4ea4-460f-ae08-c56d75cbfeba"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-24e9c3c8-a214-4a25-bfe9-dc6f07517eab {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-86a0a2f1-32bb-4040-a7f9-99d82bb85954"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-86a0a2f1-32bb-4040-a7f9-99d82bb85954"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-86a0a2f1-32bb-4040-a7f9-99d82bb85954"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-86a0a2f1-32bb-4040-a7f9-99d82bb85954"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-86a0a2f1-32bb-4040-a7f9-99d82bb85954"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-86a0a2f1-32bb-4040-a7f9-99d82bb85954"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-86a0a2f1-32bb-4040-a7f9-99d82bb85954"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-d03dc05c-f9fd-46ee-9afe-28322e68f03e {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-e879b234-4a7d-4d07-9346-c0f8dbf4bd08"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e879b234-4a7d-4d07-9346-c0f8dbf4bd08"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e879b234-4a7d-4d07-9346-c0f8dbf4bd08"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e879b234-4a7d-4d07-9346-c0f8dbf4bd08"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-78ed1cbc-73fd-451f-b81a-efab9dba8249"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-78ed1cbc-73fd-451f-b81a-efab9dba8249"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-78ed1cbc-73fd-451f-b81a-efab9dba8249"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-78ed1cbc-73fd-451f-b81a-efab9dba8249"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-78ed1cbc-73fd-451f-b81a-efab9dba8249"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-78ed1cbc-73fd-451f-b81a-efab9dba8249"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-78ed1cbc-73fd-451f-b81a-efab9dba8249"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-756fc0ae-18c1-437f-8de1-5e9a0c97f263 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-688e9319-b9c0-419c-964d-6a59d854ffa8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-688e9319-b9c0-419c-964d-6a59d854ffa8"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-688e9319-b9c0-419c-964d-6a59d854ffa8"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-688e9319-b9c0-419c-964d-6a59d854ffa8"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-688e9319-b9c0-419c-964d-6a59d854ffa8"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-688e9319-b9c0-419c-964d-6a59d854ffa8"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-688e9319-b9c0-419c-964d-6a59d854ffa8"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-3d3d1b1a-bae9-4b90-9eba-e9edf1948a24 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-ae785e1d-3529-4fdd-aa5b-d05a63e22c19"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-ae785e1d-3529-4fdd-aa5b-d05a63e22c19"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-ae785e1d-3529-4fdd-aa5b-d05a63e22c19"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-ae785e1d-3529-4fdd-aa5b-d05a63e22c19"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-70ffb35c-d9a1-4a47-a253-6467fc49e08c {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-70ffb35c-d9a1-4a47-a253-6467fc49e08c {
  margin: 0 !important;
  overflow: visible;
}

#s-70ffb35c-d9a1-4a47-a253-6467fc49e08c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-70ffb35c-d9a1-4a47-a253-6467fc49e08c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-70ffb35c-d9a1-4a47-a253-6467fc49e08c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-70ffb35c-d9a1-4a47-a253-6467fc49e08c img.shogun-image {
  /* Add background color handling */
  
}

#s-70ffb35c-d9a1-4a47-a253-6467fc49e08c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-70ffb35c-d9a1-4a47-a253-6467fc49e08c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-70ffb35c-d9a1-4a47-a253-6467fc49e08c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70ffb35c-d9a1-4a47-a253-6467fc49e08c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-70ffb35c-d9a1-4a47-a253-6467fc49e08c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-70ffb35c-d9a1-4a47-a253-6467fc49e08c .shogun-image-content {
  
    justify-content: center;
  
}

.s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image {
  box-sizing: border-box;
}



.s-70ffb35c-d9a1-4a47-a253-6467fc49e08c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-70ffb35c-d9a1-4a47-a253-6467fc49e08c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image-container {
      position: relative;
    }

    .s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70ffb35c-d9a1-4a47-a253-6467fc49e08c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-70ffb35c-d9a1-4a47-a253-6467fc49e08c {
  margin: 0 !important;
  overflow: visible;
}

#s-70ffb35c-d9a1-4a47-a253-6467fc49e08c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-70ffb35c-d9a1-4a47-a253-6467fc49e08c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-70ffb35c-d9a1-4a47-a253-6467fc49e08c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-70ffb35c-d9a1-4a47-a253-6467fc49e08c img.shogun-image {
  /* Add background color handling */
  
}

#s-70ffb35c-d9a1-4a47-a253-6467fc49e08c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-70ffb35c-d9a1-4a47-a253-6467fc49e08c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-70ffb35c-d9a1-4a47-a253-6467fc49e08c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70ffb35c-d9a1-4a47-a253-6467fc49e08c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-70ffb35c-d9a1-4a47-a253-6467fc49e08c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-70ffb35c-d9a1-4a47-a253-6467fc49e08c .shogun-image-content {
  
    justify-content: center;
  
}

.s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image {
  box-sizing: border-box;
}



.s-70ffb35c-d9a1-4a47-a253-6467fc49e08c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-70ffb35c-d9a1-4a47-a253-6467fc49e08c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image-container {
      position: relative;
    }

    .s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70ffb35c-d9a1-4a47-a253-6467fc49e08c 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-70ffb35c-d9a1-4a47-a253-6467fc49e08c {
  margin: 0 !important;
  overflow: visible;
}

#s-70ffb35c-d9a1-4a47-a253-6467fc49e08c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-70ffb35c-d9a1-4a47-a253-6467fc49e08c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-70ffb35c-d9a1-4a47-a253-6467fc49e08c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-70ffb35c-d9a1-4a47-a253-6467fc49e08c img.shogun-image {
  /* Add background color handling */
  
}

#s-70ffb35c-d9a1-4a47-a253-6467fc49e08c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-70ffb35c-d9a1-4a47-a253-6467fc49e08c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-70ffb35c-d9a1-4a47-a253-6467fc49e08c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70ffb35c-d9a1-4a47-a253-6467fc49e08c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-70ffb35c-d9a1-4a47-a253-6467fc49e08c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-70ffb35c-d9a1-4a47-a253-6467fc49e08c .shogun-image-content {
  
    justify-content: center;
  
}

.s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image {
  box-sizing: border-box;
}



.s-70ffb35c-d9a1-4a47-a253-6467fc49e08c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-70ffb35c-d9a1-4a47-a253-6467fc49e08c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image-container {
      position: relative;
    }

    .s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70ffb35c-d9a1-4a47-a253-6467fc49e08c 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-70ffb35c-d9a1-4a47-a253-6467fc49e08c {
  margin: 0 !important;
  overflow: visible;
}

#s-70ffb35c-d9a1-4a47-a253-6467fc49e08c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-70ffb35c-d9a1-4a47-a253-6467fc49e08c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-70ffb35c-d9a1-4a47-a253-6467fc49e08c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-70ffb35c-d9a1-4a47-a253-6467fc49e08c img.shogun-image {
  /* Add background color handling */
  
}

#s-70ffb35c-d9a1-4a47-a253-6467fc49e08c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-70ffb35c-d9a1-4a47-a253-6467fc49e08c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-70ffb35c-d9a1-4a47-a253-6467fc49e08c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70ffb35c-d9a1-4a47-a253-6467fc49e08c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-70ffb35c-d9a1-4a47-a253-6467fc49e08c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-70ffb35c-d9a1-4a47-a253-6467fc49e08c .shogun-image-content {
  
    justify-content: center;
  
}

.s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image {
  box-sizing: border-box;
}



.s-70ffb35c-d9a1-4a47-a253-6467fc49e08c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-70ffb35c-d9a1-4a47-a253-6467fc49e08c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image-container {
      position: relative;
    }

    .s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70ffb35c-d9a1-4a47-a253-6467fc49e08c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-70ffb35c-d9a1-4a47-a253-6467fc49e08c {
  margin: 0 !important;
  overflow: visible;
}

#s-70ffb35c-d9a1-4a47-a253-6467fc49e08c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-70ffb35c-d9a1-4a47-a253-6467fc49e08c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-70ffb35c-d9a1-4a47-a253-6467fc49e08c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-70ffb35c-d9a1-4a47-a253-6467fc49e08c img.shogun-image {
  /* Add background color handling */
  
}

#s-70ffb35c-d9a1-4a47-a253-6467fc49e08c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-70ffb35c-d9a1-4a47-a253-6467fc49e08c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-70ffb35c-d9a1-4a47-a253-6467fc49e08c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70ffb35c-d9a1-4a47-a253-6467fc49e08c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-70ffb35c-d9a1-4a47-a253-6467fc49e08c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-70ffb35c-d9a1-4a47-a253-6467fc49e08c .shogun-image-content {
  
    justify-content: center;
  
}

.s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image {
  box-sizing: border-box;
}



.s-70ffb35c-d9a1-4a47-a253-6467fc49e08c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-70ffb35c-d9a1-4a47-a253-6467fc49e08c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image-container {
      position: relative;
    }

    .s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70ffb35c-d9a1-4a47-a253-6467fc49e08c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70ffb35c-d9a1-4a47-a253-6467fc49e08c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 {
  margin: 0 !important;
  overflow: visible;
}

#s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 img.shogun-image {
  /* Add background color handling */
  
}

#s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image {
  box-sizing: border-box;
}



.s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image-container {
      position: relative;
    }

    .s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 {
  margin: 0 !important;
  overflow: visible;
}

#s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 img.shogun-image {
  /* Add background color handling */
  
}

#s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image {
  box-sizing: border-box;
}



.s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image-container {
      position: relative;
    }

    .s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 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-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 {
  margin: 0 !important;
  overflow: visible;
}

#s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 img.shogun-image {
  /* Add background color handling */
  
}

#s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image {
  box-sizing: border-box;
}



.s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image-container {
      position: relative;
    }

    .s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 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-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 {
  margin: 0 !important;
  overflow: visible;
}

#s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 img.shogun-image {
  /* Add background color handling */
  
}

#s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image {
  box-sizing: border-box;
}



.s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image-container {
      position: relative;
    }

    .s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 {
  margin: 0 !important;
  overflow: visible;
}

#s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 img.shogun-image {
  /* Add background color handling */
  
}

#s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image {
  box-sizing: border-box;
}



.s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image-container {
      position: relative;
    }

    .s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e5e29bfe-02d9-4c07-8db7-aed48a1e2167 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-bcbee888-739a-4f69-a3db-2fd6361a205d {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-bcbee888-739a-4f69-a3db-2fd6361a205d {
  margin: 0 !important;
  overflow: visible;
}

#s-bcbee888-739a-4f69-a3db-2fd6361a205d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bcbee888-739a-4f69-a3db-2fd6361a205d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bcbee888-739a-4f69-a3db-2fd6361a205d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bcbee888-739a-4f69-a3db-2fd6361a205d img.shogun-image {
  /* Add background color handling */
  
}

#s-bcbee888-739a-4f69-a3db-2fd6361a205d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bcbee888-739a-4f69-a3db-2fd6361a205d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bcbee888-739a-4f69-a3db-2fd6361a205d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bcbee888-739a-4f69-a3db-2fd6361a205d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bcbee888-739a-4f69-a3db-2fd6361a205d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-bcbee888-739a-4f69-a3db-2fd6361a205d .shogun-image-content {
  
    justify-content: center;
  
}

.s-bcbee888-739a-4f69-a3db-2fd6361a205d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image {
  box-sizing: border-box;
}



.s-bcbee888-739a-4f69-a3db-2fd6361a205d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bcbee888-739a-4f69-a3db-2fd6361a205d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image-container {
      position: relative;
    }

    .s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bcbee888-739a-4f69-a3db-2fd6361a205d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-bcbee888-739a-4f69-a3db-2fd6361a205d {
  margin: 0 !important;
  overflow: visible;
}

#s-bcbee888-739a-4f69-a3db-2fd6361a205d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bcbee888-739a-4f69-a3db-2fd6361a205d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bcbee888-739a-4f69-a3db-2fd6361a205d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bcbee888-739a-4f69-a3db-2fd6361a205d img.shogun-image {
  /* Add background color handling */
  
}

#s-bcbee888-739a-4f69-a3db-2fd6361a205d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bcbee888-739a-4f69-a3db-2fd6361a205d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bcbee888-739a-4f69-a3db-2fd6361a205d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bcbee888-739a-4f69-a3db-2fd6361a205d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bcbee888-739a-4f69-a3db-2fd6361a205d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-bcbee888-739a-4f69-a3db-2fd6361a205d .shogun-image-content {
  
    justify-content: center;
  
}

.s-bcbee888-739a-4f69-a3db-2fd6361a205d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image {
  box-sizing: border-box;
}



.s-bcbee888-739a-4f69-a3db-2fd6361a205d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bcbee888-739a-4f69-a3db-2fd6361a205d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image-container {
      position: relative;
    }

    .s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bcbee888-739a-4f69-a3db-2fd6361a205d 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-bcbee888-739a-4f69-a3db-2fd6361a205d {
  margin: 0 !important;
  overflow: visible;
}

#s-bcbee888-739a-4f69-a3db-2fd6361a205d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bcbee888-739a-4f69-a3db-2fd6361a205d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bcbee888-739a-4f69-a3db-2fd6361a205d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bcbee888-739a-4f69-a3db-2fd6361a205d img.shogun-image {
  /* Add background color handling */
  
}

#s-bcbee888-739a-4f69-a3db-2fd6361a205d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bcbee888-739a-4f69-a3db-2fd6361a205d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bcbee888-739a-4f69-a3db-2fd6361a205d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bcbee888-739a-4f69-a3db-2fd6361a205d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bcbee888-739a-4f69-a3db-2fd6361a205d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-bcbee888-739a-4f69-a3db-2fd6361a205d .shogun-image-content {
  
    justify-content: center;
  
}

.s-bcbee888-739a-4f69-a3db-2fd6361a205d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image {
  box-sizing: border-box;
}



.s-bcbee888-739a-4f69-a3db-2fd6361a205d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bcbee888-739a-4f69-a3db-2fd6361a205d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image-container {
      position: relative;
    }

    .s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bcbee888-739a-4f69-a3db-2fd6361a205d 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-bcbee888-739a-4f69-a3db-2fd6361a205d {
  margin: 0 !important;
  overflow: visible;
}

#s-bcbee888-739a-4f69-a3db-2fd6361a205d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bcbee888-739a-4f69-a3db-2fd6361a205d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bcbee888-739a-4f69-a3db-2fd6361a205d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bcbee888-739a-4f69-a3db-2fd6361a205d img.shogun-image {
  /* Add background color handling */
  
}

#s-bcbee888-739a-4f69-a3db-2fd6361a205d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bcbee888-739a-4f69-a3db-2fd6361a205d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bcbee888-739a-4f69-a3db-2fd6361a205d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bcbee888-739a-4f69-a3db-2fd6361a205d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bcbee888-739a-4f69-a3db-2fd6361a205d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-bcbee888-739a-4f69-a3db-2fd6361a205d .shogun-image-content {
  
    justify-content: center;
  
}

.s-bcbee888-739a-4f69-a3db-2fd6361a205d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image {
  box-sizing: border-box;
}



.s-bcbee888-739a-4f69-a3db-2fd6361a205d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bcbee888-739a-4f69-a3db-2fd6361a205d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image-container {
      position: relative;
    }

    .s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bcbee888-739a-4f69-a3db-2fd6361a205d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-bcbee888-739a-4f69-a3db-2fd6361a205d {
  margin: 0 !important;
  overflow: visible;
}

#s-bcbee888-739a-4f69-a3db-2fd6361a205d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bcbee888-739a-4f69-a3db-2fd6361a205d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bcbee888-739a-4f69-a3db-2fd6361a205d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bcbee888-739a-4f69-a3db-2fd6361a205d img.shogun-image {
  /* Add background color handling */
  
}

#s-bcbee888-739a-4f69-a3db-2fd6361a205d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bcbee888-739a-4f69-a3db-2fd6361a205d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bcbee888-739a-4f69-a3db-2fd6361a205d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bcbee888-739a-4f69-a3db-2fd6361a205d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bcbee888-739a-4f69-a3db-2fd6361a205d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-bcbee888-739a-4f69-a3db-2fd6361a205d .shogun-image-content {
  
    justify-content: center;
  
}

.s-bcbee888-739a-4f69-a3db-2fd6361a205d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image {
  box-sizing: border-box;
}



.s-bcbee888-739a-4f69-a3db-2fd6361a205d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bcbee888-739a-4f69-a3db-2fd6361a205d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image-container {
      position: relative;
    }

    .s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bcbee888-739a-4f69-a3db-2fd6361a205d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bcbee888-739a-4f69-a3db-2fd6361a205d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-4f081180-1bb5-4836-ba00-efda6df7d56a {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-4f081180-1bb5-4836-ba00-efda6df7d56a {
  margin: 0 !important;
  overflow: visible;
}

#s-4f081180-1bb5-4836-ba00-efda6df7d56a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4f081180-1bb5-4836-ba00-efda6df7d56a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4f081180-1bb5-4836-ba00-efda6df7d56a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4f081180-1bb5-4836-ba00-efda6df7d56a img.shogun-image {
  /* Add background color handling */
  
}

#s-4f081180-1bb5-4836-ba00-efda6df7d56a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4f081180-1bb5-4836-ba00-efda6df7d56a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-4f081180-1bb5-4836-ba00-efda6df7d56a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4f081180-1bb5-4836-ba00-efda6df7d56a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4f081180-1bb5-4836-ba00-efda6df7d56a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-4f081180-1bb5-4836-ba00-efda6df7d56a .shogun-image-content {
  
    justify-content: center;
  
}

.s-4f081180-1bb5-4836-ba00-efda6df7d56a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image {
  box-sizing: border-box;
}



.s-4f081180-1bb5-4836-ba00-efda6df7d56a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4f081180-1bb5-4836-ba00-efda6df7d56a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image-container {
      position: relative;
    }

    .s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4f081180-1bb5-4836-ba00-efda6df7d56a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-4f081180-1bb5-4836-ba00-efda6df7d56a {
  margin: 0 !important;
  overflow: visible;
}

#s-4f081180-1bb5-4836-ba00-efda6df7d56a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4f081180-1bb5-4836-ba00-efda6df7d56a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4f081180-1bb5-4836-ba00-efda6df7d56a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4f081180-1bb5-4836-ba00-efda6df7d56a img.shogun-image {
  /* Add background color handling */
  
}

#s-4f081180-1bb5-4836-ba00-efda6df7d56a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4f081180-1bb5-4836-ba00-efda6df7d56a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-4f081180-1bb5-4836-ba00-efda6df7d56a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4f081180-1bb5-4836-ba00-efda6df7d56a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4f081180-1bb5-4836-ba00-efda6df7d56a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-4f081180-1bb5-4836-ba00-efda6df7d56a .shogun-image-content {
  
    justify-content: center;
  
}

.s-4f081180-1bb5-4836-ba00-efda6df7d56a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image {
  box-sizing: border-box;
}



.s-4f081180-1bb5-4836-ba00-efda6df7d56a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4f081180-1bb5-4836-ba00-efda6df7d56a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image-container {
      position: relative;
    }

    .s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4f081180-1bb5-4836-ba00-efda6df7d56a 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-4f081180-1bb5-4836-ba00-efda6df7d56a {
  margin: 0 !important;
  overflow: visible;
}

#s-4f081180-1bb5-4836-ba00-efda6df7d56a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4f081180-1bb5-4836-ba00-efda6df7d56a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4f081180-1bb5-4836-ba00-efda6df7d56a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4f081180-1bb5-4836-ba00-efda6df7d56a img.shogun-image {
  /* Add background color handling */
  
}

#s-4f081180-1bb5-4836-ba00-efda6df7d56a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4f081180-1bb5-4836-ba00-efda6df7d56a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-4f081180-1bb5-4836-ba00-efda6df7d56a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4f081180-1bb5-4836-ba00-efda6df7d56a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4f081180-1bb5-4836-ba00-efda6df7d56a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-4f081180-1bb5-4836-ba00-efda6df7d56a .shogun-image-content {
  
    justify-content: center;
  
}

.s-4f081180-1bb5-4836-ba00-efda6df7d56a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image {
  box-sizing: border-box;
}



.s-4f081180-1bb5-4836-ba00-efda6df7d56a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4f081180-1bb5-4836-ba00-efda6df7d56a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image-container {
      position: relative;
    }

    .s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4f081180-1bb5-4836-ba00-efda6df7d56a 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-4f081180-1bb5-4836-ba00-efda6df7d56a {
  margin: 0 !important;
  overflow: visible;
}

#s-4f081180-1bb5-4836-ba00-efda6df7d56a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4f081180-1bb5-4836-ba00-efda6df7d56a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4f081180-1bb5-4836-ba00-efda6df7d56a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4f081180-1bb5-4836-ba00-efda6df7d56a img.shogun-image {
  /* Add background color handling */
  
}

#s-4f081180-1bb5-4836-ba00-efda6df7d56a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4f081180-1bb5-4836-ba00-efda6df7d56a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-4f081180-1bb5-4836-ba00-efda6df7d56a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4f081180-1bb5-4836-ba00-efda6df7d56a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4f081180-1bb5-4836-ba00-efda6df7d56a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-4f081180-1bb5-4836-ba00-efda6df7d56a .shogun-image-content {
  
    justify-content: center;
  
}

.s-4f081180-1bb5-4836-ba00-efda6df7d56a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image {
  box-sizing: border-box;
}



.s-4f081180-1bb5-4836-ba00-efda6df7d56a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4f081180-1bb5-4836-ba00-efda6df7d56a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image-container {
      position: relative;
    }

    .s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4f081180-1bb5-4836-ba00-efda6df7d56a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-4f081180-1bb5-4836-ba00-efda6df7d56a {
  margin: 0 !important;
  overflow: visible;
}

#s-4f081180-1bb5-4836-ba00-efda6df7d56a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4f081180-1bb5-4836-ba00-efda6df7d56a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4f081180-1bb5-4836-ba00-efda6df7d56a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4f081180-1bb5-4836-ba00-efda6df7d56a img.shogun-image {
  /* Add background color handling */
  
}

#s-4f081180-1bb5-4836-ba00-efda6df7d56a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4f081180-1bb5-4836-ba00-efda6df7d56a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-4f081180-1bb5-4836-ba00-efda6df7d56a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4f081180-1bb5-4836-ba00-efda6df7d56a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4f081180-1bb5-4836-ba00-efda6df7d56a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-4f081180-1bb5-4836-ba00-efda6df7d56a .shogun-image-content {
  
    justify-content: center;
  
}

.s-4f081180-1bb5-4836-ba00-efda6df7d56a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image {
  box-sizing: border-box;
}



.s-4f081180-1bb5-4836-ba00-efda6df7d56a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4f081180-1bb5-4836-ba00-efda6df7d56a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image-container {
      position: relative;
    }

    .s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4f081180-1bb5-4836-ba00-efda6df7d56a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4f081180-1bb5-4836-ba00-efda6df7d56a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
@media (min-width: 0px) {
[id="s-31651358-8a18-4a91-ab84-3d46279c539a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-31651358-8a18-4a91-ab84-3d46279c539a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-31651358-8a18-4a91-ab84-3d46279c539a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-31651358-8a18-4a91-ab84-3d46279c539a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-07e43bc8-e6ac-4328-998b-c9bc45d56b64"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-07e43bc8-e6ac-4328-998b-c9bc45d56b64"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-07e43bc8-e6ac-4328-998b-c9bc45d56b64"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-07e43bc8-e6ac-4328-998b-c9bc45d56b64"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-07e43bc8-e6ac-4328-998b-c9bc45d56b64"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-07e43bc8-e6ac-4328-998b-c9bc45d56b64"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-07e43bc8-e6ac-4328-998b-c9bc45d56b64"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-1732549c-b58d-4d3d-b2a6-6e576391e835 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-4a2a9a7e-3b52-47af-8fc3-e609d37108dc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4a2a9a7e-3b52-47af-8fc3-e609d37108dc"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4a2a9a7e-3b52-47af-8fc3-e609d37108dc"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4a2a9a7e-3b52-47af-8fc3-e609d37108dc"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4a2a9a7e-3b52-47af-8fc3-e609d37108dc"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4a2a9a7e-3b52-47af-8fc3-e609d37108dc"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4a2a9a7e-3b52-47af-8fc3-e609d37108dc"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-c161c610-78ea-4bbf-91ad-fe01f735889c {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-f79c9c7b-7694-4d7c-bbb9-22630f58327b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f79c9c7b-7694-4d7c-bbb9-22630f58327b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f79c9c7b-7694-4d7c-bbb9-22630f58327b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f79c9c7b-7694-4d7c-bbb9-22630f58327b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-7143d515-8012-486e-a16c-9089762e745b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7143d515-8012-486e-a16c-9089762e745b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7143d515-8012-486e-a16c-9089762e745b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7143d515-8012-486e-a16c-9089762e745b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7143d515-8012-486e-a16c-9089762e745b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7143d515-8012-486e-a16c-9089762e745b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7143d515-8012-486e-a16c-9089762e745b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-5ff21be8-577d-45ee-a51b-eee5413b49ac {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-2af94017-758f-45f5-b2bf-2adf654f1d2c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2af94017-758f-45f5-b2bf-2adf654f1d2c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2af94017-758f-45f5-b2bf-2adf654f1d2c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2af94017-758f-45f5-b2bf-2adf654f1d2c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2af94017-758f-45f5-b2bf-2adf654f1d2c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2af94017-758f-45f5-b2bf-2adf654f1d2c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2af94017-758f-45f5-b2bf-2adf654f1d2c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-44afbf06-20c4-4125-acb5-3897b0077424 {
  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 {
  padding-left: 0%;
padding-right: 0%;
}

#s-b5dcbd14-c684-4870-ad1a-39c52240302c {
  margin-left: 3%;
margin-right: 3%;
padding-left: 1%;
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-7ec6d8bb-115f-4181-b064-baac4faa5bcb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7ec6d8bb-115f-4181-b064-baac4faa5bcb"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7ec6d8bb-115f-4181-b064-baac4faa5bcb"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7ec6d8bb-115f-4181-b064-baac4faa5bcb"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-2efc1687-05ac-4bc8-bc24-9e0580ae623e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2efc1687-05ac-4bc8-bc24-9e0580ae623e"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-2efc1687-05ac-4bc8-bc24-9e0580ae623e"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2efc1687-05ac-4bc8-bc24-9e0580ae623e"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-2efc1687-05ac-4bc8-bc24-9e0580ae623e"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2efc1687-05ac-4bc8-bc24-9e0580ae623e"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-2efc1687-05ac-4bc8-bc24-9e0580ae623e"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-1826759b-ef75-4c11-ba3b-57dec59a54a5 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-2571aa68-f6fb-4764-9ab6-5a7c6fbcdc5c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2571aa68-f6fb-4764-9ab6-5a7c6fbcdc5c"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-2571aa68-f6fb-4764-9ab6-5a7c6fbcdc5c"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2571aa68-f6fb-4764-9ab6-5a7c6fbcdc5c"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-2571aa68-f6fb-4764-9ab6-5a7c6fbcdc5c"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2571aa68-f6fb-4764-9ab6-5a7c6fbcdc5c"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-2571aa68-f6fb-4764-9ab6-5a7c6fbcdc5c"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-18b2ab43-aaa4-4e63-854d-8330456615a8 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-e8d27b70-3677-43d5-b208-60f2a24aab17"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e8d27b70-3677-43d5-b208-60f2a24aab17"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e8d27b70-3677-43d5-b208-60f2a24aab17"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e8d27b70-3677-43d5-b208-60f2a24aab17"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-60c4d2e5-d915-4caf-bba4-032982bc6acf"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-60c4d2e5-d915-4caf-bba4-032982bc6acf"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-60c4d2e5-d915-4caf-bba4-032982bc6acf"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-60c4d2e5-d915-4caf-bba4-032982bc6acf"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-60c4d2e5-d915-4caf-bba4-032982bc6acf"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-60c4d2e5-d915-4caf-bba4-032982bc6acf"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-60c4d2e5-d915-4caf-bba4-032982bc6acf"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-91e2da4b-d5b2-4ce5-b398-5ffc61776f34 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-f245d985-f901-49a7-a5ff-3c84287eed30"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f245d985-f901-49a7-a5ff-3c84287eed30"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f245d985-f901-49a7-a5ff-3c84287eed30"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f245d985-f901-49a7-a5ff-3c84287eed30"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f245d985-f901-49a7-a5ff-3c84287eed30"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f245d985-f901-49a7-a5ff-3c84287eed30"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f245d985-f901-49a7-a5ff-3c84287eed30"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-fa8da3d2-a0a2-410c-9b09-e6237f6f7db6 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-3734e078-3d53-4d09-921e-929e2f81353e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3734e078-3d53-4d09-921e-929e2f81353e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3734e078-3d53-4d09-921e-929e2f81353e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3734e078-3d53-4d09-921e-929e2f81353e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-82bc17f2-5df6-42e2-acc2-bfbb8b43f682"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-82bc17f2-5df6-42e2-acc2-bfbb8b43f682"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-82bc17f2-5df6-42e2-acc2-bfbb8b43f682"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-82bc17f2-5df6-42e2-acc2-bfbb8b43f682"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-82bc17f2-5df6-42e2-acc2-bfbb8b43f682"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-82bc17f2-5df6-42e2-acc2-bfbb8b43f682"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-82bc17f2-5df6-42e2-acc2-bfbb8b43f682"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-60f58744-172d-42a2-82f1-8fc68032a44d {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-86f25ffa-5db1-41d4-a5b8-7399b3afa91d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-86f25ffa-5db1-41d4-a5b8-7399b3afa91d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-86f25ffa-5db1-41d4-a5b8-7399b3afa91d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-86f25ffa-5db1-41d4-a5b8-7399b3afa91d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-86f25ffa-5db1-41d4-a5b8-7399b3afa91d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-86f25ffa-5db1-41d4-a5b8-7399b3afa91d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-86f25ffa-5db1-41d4-a5b8-7399b3afa91d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-9e950b69-ce81-43ea-b400-aa514cc01dda {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-54b7c680-9283-4da6-a005-e732c567fa68"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-54b7c680-9283-4da6-a005-e732c567fa68"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-54b7c680-9283-4da6-a005-e732c567fa68"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-54b7c680-9283-4da6-a005-e732c567fa68"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-c5714b00-0582-48cd-853f-6e936f666ad1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c5714b00-0582-48cd-853f-6e936f666ad1"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c5714b00-0582-48cd-853f-6e936f666ad1"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c5714b00-0582-48cd-853f-6e936f666ad1"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c5714b00-0582-48cd-853f-6e936f666ad1"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c5714b00-0582-48cd-853f-6e936f666ad1"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c5714b00-0582-48cd-853f-6e936f666ad1"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-4c1c34cc-cd8a-4fc7-8ba0-1e578239b9e6 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-84a45243-02c7-4a37-b714-08b36ead6436"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-84a45243-02c7-4a37-b714-08b36ead6436"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-84a45243-02c7-4a37-b714-08b36ead6436"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-84a45243-02c7-4a37-b714-08b36ead6436"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-84a45243-02c7-4a37-b714-08b36ead6436"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-84a45243-02c7-4a37-b714-08b36ead6436"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-84a45243-02c7-4a37-b714-08b36ead6436"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-d884b5ce-8d74-415b-9961-92f5b767038b {
  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-e06ced6a-1e46-4e15-941e-0b62ef4c0574"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e06ced6a-1e46-4e15-941e-0b62ef4c0574"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e06ced6a-1e46-4e15-941e-0b62ef4c0574"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e06ced6a-1e46-4e15-941e-0b62ef4c0574"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-563429ab-1533-4f21-9f5a-1133b6278c11"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-563429ab-1533-4f21-9f5a-1133b6278c11"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-563429ab-1533-4f21-9f5a-1133b6278c11"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-563429ab-1533-4f21-9f5a-1133b6278c11"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-563429ab-1533-4f21-9f5a-1133b6278c11"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-563429ab-1533-4f21-9f5a-1133b6278c11"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-563429ab-1533-4f21-9f5a-1133b6278c11"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-8dbbb33f-b951-4a96-9dfd-4535fafee257 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-403aef06-64cd-42b8-af85-903752155d86"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-403aef06-64cd-42b8-af85-903752155d86"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-403aef06-64cd-42b8-af85-903752155d86"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-403aef06-64cd-42b8-af85-903752155d86"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-403aef06-64cd-42b8-af85-903752155d86"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-403aef06-64cd-42b8-af85-903752155d86"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-403aef06-64cd-42b8-af85-903752155d86"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-43da6108-3892-4154-a3fe-c4e3b3ca5082 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-b7501374-1cc2-4500-a827-9bdb2d504d96"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b7501374-1cc2-4500-a827-9bdb2d504d96"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b7501374-1cc2-4500-a827-9bdb2d504d96"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b7501374-1cc2-4500-a827-9bdb2d504d96"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-391ce9cb-d6a0-4295-a5c4-4567d3ab4f67"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-391ce9cb-d6a0-4295-a5c4-4567d3ab4f67"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-391ce9cb-d6a0-4295-a5c4-4567d3ab4f67"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-391ce9cb-d6a0-4295-a5c4-4567d3ab4f67"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-391ce9cb-d6a0-4295-a5c4-4567d3ab4f67"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-391ce9cb-d6a0-4295-a5c4-4567d3ab4f67"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-391ce9cb-d6a0-4295-a5c4-4567d3ab4f67"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-a2b5cd60-709b-433d-b9ca-d45577fde3aa {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-d953bf56-b905-4105-9231-73b2d26c0e4d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d953bf56-b905-4105-9231-73b2d26c0e4d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d953bf56-b905-4105-9231-73b2d26c0e4d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d953bf56-b905-4105-9231-73b2d26c0e4d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d953bf56-b905-4105-9231-73b2d26c0e4d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d953bf56-b905-4105-9231-73b2d26c0e4d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d953bf56-b905-4105-9231-73b2d26c0e4d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-9b9de6f8-6f70-42d3-af13-bf485771d6b3 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-0a999180-19f3-4d19-ae1e-eb5480d864d4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0a999180-19f3-4d19-ae1e-eb5480d864d4"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0a999180-19f3-4d19-ae1e-eb5480d864d4"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0a999180-19f3-4d19-ae1e-eb5480d864d4"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-c566ea97-151b-4976-9d9f-ab5d213b8c41"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c566ea97-151b-4976-9d9f-ab5d213b8c41"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c566ea97-151b-4976-9d9f-ab5d213b8c41"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c566ea97-151b-4976-9d9f-ab5d213b8c41"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c566ea97-151b-4976-9d9f-ab5d213b8c41"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c566ea97-151b-4976-9d9f-ab5d213b8c41"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c566ea97-151b-4976-9d9f-ab5d213b8c41"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-506d09dd-34ff-4415-a631-238dbd7368e9 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-dc4676c0-8636-417a-9f27-088fce421c21"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-dc4676c0-8636-417a-9f27-088fce421c21"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-dc4676c0-8636-417a-9f27-088fce421c21"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-dc4676c0-8636-417a-9f27-088fce421c21"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-dc4676c0-8636-417a-9f27-088fce421c21"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-dc4676c0-8636-417a-9f27-088fce421c21"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-dc4676c0-8636-417a-9f27-088fce421c21"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-b78ae37d-ec93-41a3-b9b2-bda046e9fd51 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-ee0bcc40-c771-4d54-9d5a-7085340ed53e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ee0bcc40-c771-4d54-9d5a-7085340ed53e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ee0bcc40-c771-4d54-9d5a-7085340ed53e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ee0bcc40-c771-4d54-9d5a-7085340ed53e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-91601be2-2f8f-49bc-92ea-a7f1a7aeb3e2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-91601be2-2f8f-49bc-92ea-a7f1a7aeb3e2"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-91601be2-2f8f-49bc-92ea-a7f1a7aeb3e2"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-91601be2-2f8f-49bc-92ea-a7f1a7aeb3e2"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-91601be2-2f8f-49bc-92ea-a7f1a7aeb3e2"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-91601be2-2f8f-49bc-92ea-a7f1a7aeb3e2"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-91601be2-2f8f-49bc-92ea-a7f1a7aeb3e2"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-9564eb82-49bb-4057-bb35-165d04820fab {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-a2f434e5-200d-43cb-8e6f-45a6ce6e964d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a2f434e5-200d-43cb-8e6f-45a6ce6e964d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a2f434e5-200d-43cb-8e6f-45a6ce6e964d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a2f434e5-200d-43cb-8e6f-45a6ce6e964d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a2f434e5-200d-43cb-8e6f-45a6ce6e964d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a2f434e5-200d-43cb-8e6f-45a6ce6e964d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a2f434e5-200d-43cb-8e6f-45a6ce6e964d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-7290efa3-cff3-4aef-8979-9ae9c2504032 {
  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/950;
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/950;
      min-width: 100%;
      height: auto;
    }

    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-link {
      aspect-ratio: 1920/950;
      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/950); 
    }

    .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/950;
      min-width: 100%;
      height: auto;
    }

    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-link {
      aspect-ratio: 1920/950;
      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/950); 
    }

    .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/950;
      min-width: 100%;
      height: auto;
    }

    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-link {
      aspect-ratio: 1920/950;
      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/950); 
    }

    .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/950;
      min-width: 100%;
      height: auto;
    }

    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-link {
      aspect-ratio: 1920/950;
      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/950); 
    }

    .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/950;
      min-width: 100%;
      height: auto;
    }

    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-link {
      aspect-ratio: 1920/950;
      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/950); 
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
      position: relative;
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}
#s-6b828aca-d3d4-456f-8393-362d48823dbe {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 1%;
padding-right: 1%;
}

#s-c750f8e5-53aa-4959-8439-4bb9ed0925d7 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 20px;
padding-left: 1%;
padding-bottom: 20px;
padding-right: 1%;
}

@media (min-width: 0px) {
[id="s-17d54176-8169-4a0d-81d6-0eac5908ed1f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-17d54176-8169-4a0d-81d6-0eac5908ed1f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-17d54176-8169-4a0d-81d6-0eac5908ed1f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-17d54176-8169-4a0d-81d6-0eac5908ed1f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-04c2e3bc-9657-463c-8020-0df486411420"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-04c2e3bc-9657-463c-8020-0df486411420"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-04c2e3bc-9657-463c-8020-0df486411420"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-04c2e3bc-9657-463c-8020-0df486411420"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-04c2e3bc-9657-463c-8020-0df486411420"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-04c2e3bc-9657-463c-8020-0df486411420"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-04c2e3bc-9657-463c-8020-0df486411420"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-4dcd2631-bef7-4f0b-9cfe-eb10fbb9be0f {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-e6409d06-f478-44a0-bcc9-05620bca5819"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e6409d06-f478-44a0-bcc9-05620bca5819"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e6409d06-f478-44a0-bcc9-05620bca5819"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e6409d06-f478-44a0-bcc9-05620bca5819"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e6409d06-f478-44a0-bcc9-05620bca5819"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e6409d06-f478-44a0-bcc9-05620bca5819"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e6409d06-f478-44a0-bcc9-05620bca5819"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-8abcaa88-bb1e-4cd9-8aba-75a01f0d2a81 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-58f09608-4266-4326-a465-4ee226106a32"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-58f09608-4266-4326-a465-4ee226106a32"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-58f09608-4266-4326-a465-4ee226106a32"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-58f09608-4266-4326-a465-4ee226106a32"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-3234f258-110a-415c-bf9a-5f9cca12666e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3234f258-110a-415c-bf9a-5f9cca12666e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3234f258-110a-415c-bf9a-5f9cca12666e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3234f258-110a-415c-bf9a-5f9cca12666e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3234f258-110a-415c-bf9a-5f9cca12666e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3234f258-110a-415c-bf9a-5f9cca12666e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3234f258-110a-415c-bf9a-5f9cca12666e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-6c67f3ed-78ae-4829-81ff-d6965c244614 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-7ddb2c1b-f2de-4ee9-bcdc-9853a5b71d45"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7ddb2c1b-f2de-4ee9-bcdc-9853a5b71d45"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7ddb2c1b-f2de-4ee9-bcdc-9853a5b71d45"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7ddb2c1b-f2de-4ee9-bcdc-9853a5b71d45"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7ddb2c1b-f2de-4ee9-bcdc-9853a5b71d45"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7ddb2c1b-f2de-4ee9-bcdc-9853a5b71d45"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7ddb2c1b-f2de-4ee9-bcdc-9853a5b71d45"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-1963c224-fb56-49db-8c3f-ca1514494905 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-1e8ec0fb-229e-490a-b54f-d77e7aaff086"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1e8ec0fb-229e-490a-b54f-d77e7aaff086"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1e8ec0fb-229e-490a-b54f-d77e7aaff086"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1e8ec0fb-229e-490a-b54f-d77e7aaff086"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-7d802b0d-24fd-4e68-b2a8-8a716fbaee29"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7d802b0d-24fd-4e68-b2a8-8a716fbaee29"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7d802b0d-24fd-4e68-b2a8-8a716fbaee29"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7d802b0d-24fd-4e68-b2a8-8a716fbaee29"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7d802b0d-24fd-4e68-b2a8-8a716fbaee29"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7d802b0d-24fd-4e68-b2a8-8a716fbaee29"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7d802b0d-24fd-4e68-b2a8-8a716fbaee29"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-0b7b32fd-a227-4db1-afe3-60f62e913dad {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-cf49b8f4-8af5-4181-aef0-75f03439d0f3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cf49b8f4-8af5-4181-aef0-75f03439d0f3"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-cf49b8f4-8af5-4181-aef0-75f03439d0f3"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-cf49b8f4-8af5-4181-aef0-75f03439d0f3"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-cf49b8f4-8af5-4181-aef0-75f03439d0f3"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-cf49b8f4-8af5-4181-aef0-75f03439d0f3"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-cf49b8f4-8af5-4181-aef0-75f03439d0f3"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-6ab114b1-a21c-46a7-aac4-a4cb8cfeaba0 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-12479e6b-d231-44b5-bf43-1cfc5a0199f7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-12479e6b-d231-44b5-bf43-1cfc5a0199f7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-12479e6b-d231-44b5-bf43-1cfc5a0199f7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-12479e6b-d231-44b5-bf43-1cfc5a0199f7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-e6fc5606-5948-4228-9e75-fd29fad0ffbf"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e6fc5606-5948-4228-9e75-fd29fad0ffbf"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e6fc5606-5948-4228-9e75-fd29fad0ffbf"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e6fc5606-5948-4228-9e75-fd29fad0ffbf"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e6fc5606-5948-4228-9e75-fd29fad0ffbf"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e6fc5606-5948-4228-9e75-fd29fad0ffbf"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e6fc5606-5948-4228-9e75-fd29fad0ffbf"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-65146fe1-dd36-4438-9c44-99eb4298785d {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-f101632f-7ea8-4813-9dd1-6de235c5d7b9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f101632f-7ea8-4813-9dd1-6de235c5d7b9"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f101632f-7ea8-4813-9dd1-6de235c5d7b9"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f101632f-7ea8-4813-9dd1-6de235c5d7b9"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f101632f-7ea8-4813-9dd1-6de235c5d7b9"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f101632f-7ea8-4813-9dd1-6de235c5d7b9"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f101632f-7ea8-4813-9dd1-6de235c5d7b9"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-694e97e4-e8e7-4285-9a46-61f313caeef3 {
  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-f2b616fe-439c-49bc-9dd9-677902c5ece3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f2b616fe-439c-49bc-9dd9-677902c5ece3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f2b616fe-439c-49bc-9dd9-677902c5ece3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f2b616fe-439c-49bc-9dd9-677902c5ece3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-46034da3-9f46-4648-9064-4477962b107e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-46034da3-9f46-4648-9064-4477962b107e"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-46034da3-9f46-4648-9064-4477962b107e"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-46034da3-9f46-4648-9064-4477962b107e"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-46034da3-9f46-4648-9064-4477962b107e"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-46034da3-9f46-4648-9064-4477962b107e"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-46034da3-9f46-4648-9064-4477962b107e"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-d09c0f4f-3fc0-4d62-aeba-3b8ed3609c71 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-fa2c416f-25f0-4926-96e3-ed700edc0eab"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fa2c416f-25f0-4926-96e3-ed700edc0eab"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-fa2c416f-25f0-4926-96e3-ed700edc0eab"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-fa2c416f-25f0-4926-96e3-ed700edc0eab"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-fa2c416f-25f0-4926-96e3-ed700edc0eab"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-fa2c416f-25f0-4926-96e3-ed700edc0eab"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-fa2c416f-25f0-4926-96e3-ed700edc0eab"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-67c54b20-0798-4852-9940-3cf45a902d97 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-0b337a83-e8ed-439a-a6db-2281d4637376"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0b337a83-e8ed-439a-a6db-2281d4637376"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0b337a83-e8ed-439a-a6db-2281d4637376"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0b337a83-e8ed-439a-a6db-2281d4637376"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-07d67e81-0dc6-4334-9eb8-20f7a03b9824"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-07d67e81-0dc6-4334-9eb8-20f7a03b9824"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-07d67e81-0dc6-4334-9eb8-20f7a03b9824"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-07d67e81-0dc6-4334-9eb8-20f7a03b9824"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-07d67e81-0dc6-4334-9eb8-20f7a03b9824"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-07d67e81-0dc6-4334-9eb8-20f7a03b9824"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-07d67e81-0dc6-4334-9eb8-20f7a03b9824"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-6b5273e2-9b1c-4da9-b4f1-b387e2b89c5d {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-a0868e6d-f2f3-4417-8462-343bd2b67fb0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a0868e6d-f2f3-4417-8462-343bd2b67fb0"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a0868e6d-f2f3-4417-8462-343bd2b67fb0"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a0868e6d-f2f3-4417-8462-343bd2b67fb0"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a0868e6d-f2f3-4417-8462-343bd2b67fb0"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a0868e6d-f2f3-4417-8462-343bd2b67fb0"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a0868e6d-f2f3-4417-8462-343bd2b67fb0"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-b448df8a-0316-48d1-bb2d-0c498f01a531 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-d233296c-f5d0-4008-ae0c-6807f994826d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d233296c-f5d0-4008-ae0c-6807f994826d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d233296c-f5d0-4008-ae0c-6807f994826d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d233296c-f5d0-4008-ae0c-6807f994826d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-f1199493-e33d-4360-aa44-410405d6d310"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f1199493-e33d-4360-aa44-410405d6d310"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f1199493-e33d-4360-aa44-410405d6d310"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f1199493-e33d-4360-aa44-410405d6d310"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f1199493-e33d-4360-aa44-410405d6d310"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f1199493-e33d-4360-aa44-410405d6d310"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f1199493-e33d-4360-aa44-410405d6d310"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-b94adfb0-61d3-407f-90d8-4adc0075484a {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-e5ba5d12-a892-464a-8e4a-58e3cecfcf01"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e5ba5d12-a892-464a-8e4a-58e3cecfcf01"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e5ba5d12-a892-464a-8e4a-58e3cecfcf01"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e5ba5d12-a892-464a-8e4a-58e3cecfcf01"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e5ba5d12-a892-464a-8e4a-58e3cecfcf01"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e5ba5d12-a892-464a-8e4a-58e3cecfcf01"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e5ba5d12-a892-464a-8e4a-58e3cecfcf01"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-c3dd12ea-9f9c-4cde-b344-33b4f906faeb {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-6ae5909b-6854-4cfb-b5da-ec9ee2058fa6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6ae5909b-6854-4cfb-b5da-ec9ee2058fa6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6ae5909b-6854-4cfb-b5da-ec9ee2058fa6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6ae5909b-6854-4cfb-b5da-ec9ee2058fa6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-b9e89e89-7fd3-4f80-9514-d87bad00ab87"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b9e89e89-7fd3-4f80-9514-d87bad00ab87"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b9e89e89-7fd3-4f80-9514-d87bad00ab87"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b9e89e89-7fd3-4f80-9514-d87bad00ab87"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b9e89e89-7fd3-4f80-9514-d87bad00ab87"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b9e89e89-7fd3-4f80-9514-d87bad00ab87"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b9e89e89-7fd3-4f80-9514-d87bad00ab87"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-037e65d9-4493-4b51-a61f-bf9374b46858 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-905a482e-f104-47b0-929c-5c5a4daf1b36"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-905a482e-f104-47b0-929c-5c5a4daf1b36"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-905a482e-f104-47b0-929c-5c5a4daf1b36"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-905a482e-f104-47b0-929c-5c5a4daf1b36"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-905a482e-f104-47b0-929c-5c5a4daf1b36"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-905a482e-f104-47b0-929c-5c5a4daf1b36"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-905a482e-f104-47b0-929c-5c5a4daf1b36"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-bf17e65e-f36a-42b2-a2c4-278f2be55638 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-0182cb5a-0cbb-4fad-bdbf-c69749d990e5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0182cb5a-0cbb-4fad-bdbf-c69749d990e5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0182cb5a-0cbb-4fad-bdbf-c69749d990e5"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0182cb5a-0cbb-4fad-bdbf-c69749d990e5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0182cb5a-0cbb-4fad-bdbf-c69749d990e5"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0182cb5a-0cbb-4fad-bdbf-c69749d990e5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0182cb5a-0cbb-4fad-bdbf-c69749d990e5"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

#s-b1f03b3d-6438-459a-98b5-462562ae6955 {
  padding-left: 0%;
padding-right: 0%;
}

#s-25a13f82-cef6-488b-a792-0f73c901d434 {
  margin-left: 3%;
margin-right: 3%;
padding-left: 1%;
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-64449255-dd63-4e8e-9368-25c4734b5a47"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-64449255-dd63-4e8e-9368-25c4734b5a47"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-64449255-dd63-4e8e-9368-25c4734b5a47"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-64449255-dd63-4e8e-9368-25c4734b5a47"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-f5f1a496-19aa-44ab-83e8-6f76f558ff4d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f5f1a496-19aa-44ab-83e8-6f76f558ff4d"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f5f1a496-19aa-44ab-83e8-6f76f558ff4d"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f5f1a496-19aa-44ab-83e8-6f76f558ff4d"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f5f1a496-19aa-44ab-83e8-6f76f558ff4d"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f5f1a496-19aa-44ab-83e8-6f76f558ff4d"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f5f1a496-19aa-44ab-83e8-6f76f558ff4d"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-d53e001f-42b9-41ae-b7ce-a0e03e43dd60 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-c8692e2c-8346-469e-ab0d-7932e7086b1c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c8692e2c-8346-469e-ab0d-7932e7086b1c"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c8692e2c-8346-469e-ab0d-7932e7086b1c"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c8692e2c-8346-469e-ab0d-7932e7086b1c"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c8692e2c-8346-469e-ab0d-7932e7086b1c"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c8692e2c-8346-469e-ab0d-7932e7086b1c"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c8692e2c-8346-469e-ab0d-7932e7086b1c"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-0bcdd6cc-2fae-452d-aa51-0b59935ea3e1 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-15106619-987c-4a04-9ce0-07a656583012"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-15106619-987c-4a04-9ce0-07a656583012"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-15106619-987c-4a04-9ce0-07a656583012"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-15106619-987c-4a04-9ce0-07a656583012"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-904f0b23-0dfe-41f7-bf1f-94f25c0c75a2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-904f0b23-0dfe-41f7-bf1f-94f25c0c75a2"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-904f0b23-0dfe-41f7-bf1f-94f25c0c75a2"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-904f0b23-0dfe-41f7-bf1f-94f25c0c75a2"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-904f0b23-0dfe-41f7-bf1f-94f25c0c75a2"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-904f0b23-0dfe-41f7-bf1f-94f25c0c75a2"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-904f0b23-0dfe-41f7-bf1f-94f25c0c75a2"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-e18c689d-8ed2-4607-a59c-b0b5bd4152d6 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-c5837833-65ba-4a0e-90e7-9f6abed4c5c5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c5837833-65ba-4a0e-90e7-9f6abed4c5c5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c5837833-65ba-4a0e-90e7-9f6abed4c5c5"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c5837833-65ba-4a0e-90e7-9f6abed4c5c5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c5837833-65ba-4a0e-90e7-9f6abed4c5c5"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c5837833-65ba-4a0e-90e7-9f6abed4c5c5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c5837833-65ba-4a0e-90e7-9f6abed4c5c5"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-d0c0f221-a483-4136-8512-242aff1b0f7e {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-d0c4d224-8932-436e-93bc-5d6f4c1b07dc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d0c4d224-8932-436e-93bc-5d6f4c1b07dc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d0c4d224-8932-436e-93bc-5d6f4c1b07dc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d0c4d224-8932-436e-93bc-5d6f4c1b07dc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-8ee6b196-e1f2-4835-b87e-fa7d0167db47"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8ee6b196-e1f2-4835-b87e-fa7d0167db47"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8ee6b196-e1f2-4835-b87e-fa7d0167db47"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8ee6b196-e1f2-4835-b87e-fa7d0167db47"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8ee6b196-e1f2-4835-b87e-fa7d0167db47"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8ee6b196-e1f2-4835-b87e-fa7d0167db47"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8ee6b196-e1f2-4835-b87e-fa7d0167db47"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-3cb43af7-d4c9-4454-b1fa-5dae60062586 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-cefcf2e0-f9bd-4275-8606-56c35ee36626"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cefcf2e0-f9bd-4275-8606-56c35ee36626"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-cefcf2e0-f9bd-4275-8606-56c35ee36626"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-cefcf2e0-f9bd-4275-8606-56c35ee36626"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-cefcf2e0-f9bd-4275-8606-56c35ee36626"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-cefcf2e0-f9bd-4275-8606-56c35ee36626"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-cefcf2e0-f9bd-4275-8606-56c35ee36626"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-65200f0e-91af-417c-8ca9-ebc0fde36668 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-fd80c730-e7d5-40ea-82c5-7b853d6a10b6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fd80c730-e7d5-40ea-82c5-7b853d6a10b6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-fd80c730-e7d5-40ea-82c5-7b853d6a10b6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-fd80c730-e7d5-40ea-82c5-7b853d6a10b6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-ab867bb1-8f13-4915-952c-030220c4cc2b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ab867bb1-8f13-4915-952c-030220c4cc2b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ab867bb1-8f13-4915-952c-030220c4cc2b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ab867bb1-8f13-4915-952c-030220c4cc2b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ab867bb1-8f13-4915-952c-030220c4cc2b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ab867bb1-8f13-4915-952c-030220c4cc2b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ab867bb1-8f13-4915-952c-030220c4cc2b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-5f992f94-a405-42ab-bcb0-a2116b344925 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-5c59e42b-c960-4f72-ac4c-f5ca4a088b56"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5c59e42b-c960-4f72-ac4c-f5ca4a088b56"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5c59e42b-c960-4f72-ac4c-f5ca4a088b56"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5c59e42b-c960-4f72-ac4c-f5ca4a088b56"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5c59e42b-c960-4f72-ac4c-f5ca4a088b56"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5c59e42b-c960-4f72-ac4c-f5ca4a088b56"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5c59e42b-c960-4f72-ac4c-f5ca4a088b56"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-887cc6e8-7880-4fcf-8836-a9eea57ca668 {
  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-7597ed34-0504-4998-b6b0-19898dcc60e6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7597ed34-0504-4998-b6b0-19898dcc60e6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7597ed34-0504-4998-b6b0-19898dcc60e6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7597ed34-0504-4998-b6b0-19898dcc60e6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-8c8c2247-d828-4783-a24c-c932e0fd96bc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8c8c2247-d828-4783-a24c-c932e0fd96bc"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8c8c2247-d828-4783-a24c-c932e0fd96bc"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8c8c2247-d828-4783-a24c-c932e0fd96bc"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8c8c2247-d828-4783-a24c-c932e0fd96bc"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8c8c2247-d828-4783-a24c-c932e0fd96bc"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8c8c2247-d828-4783-a24c-c932e0fd96bc"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-3069ab38-f6df-4b9b-85a3-f0ab3dbe6974 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-bbeae1cd-ea04-450b-a25c-dbf71b806917"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bbeae1cd-ea04-450b-a25c-dbf71b806917"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-bbeae1cd-ea04-450b-a25c-dbf71b806917"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-bbeae1cd-ea04-450b-a25c-dbf71b806917"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-bbeae1cd-ea04-450b-a25c-dbf71b806917"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-bbeae1cd-ea04-450b-a25c-dbf71b806917"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-bbeae1cd-ea04-450b-a25c-dbf71b806917"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-9c6b71d0-30cc-4fef-be88-7703a749c3b0 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-f1cccbb5-22c0-482d-a27a-8594e0c1ad9f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f1cccbb5-22c0-482d-a27a-8594e0c1ad9f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f1cccbb5-22c0-482d-a27a-8594e0c1ad9f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f1cccbb5-22c0-482d-a27a-8594e0c1ad9f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-76f8ad54-3366-4867-98cc-72c4b80e4282"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-76f8ad54-3366-4867-98cc-72c4b80e4282"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-76f8ad54-3366-4867-98cc-72c4b80e4282"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-76f8ad54-3366-4867-98cc-72c4b80e4282"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-76f8ad54-3366-4867-98cc-72c4b80e4282"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-76f8ad54-3366-4867-98cc-72c4b80e4282"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-76f8ad54-3366-4867-98cc-72c4b80e4282"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-2e23bf8c-161a-46d9-90e0-9f41e1e7d461 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-ad64a844-ed62-4600-9f54-108639bfbe3c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ad64a844-ed62-4600-9f54-108639bfbe3c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ad64a844-ed62-4600-9f54-108639bfbe3c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ad64a844-ed62-4600-9f54-108639bfbe3c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ad64a844-ed62-4600-9f54-108639bfbe3c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ad64a844-ed62-4600-9f54-108639bfbe3c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ad64a844-ed62-4600-9f54-108639bfbe3c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-fdfb18f0-468b-4c14-8c1d-63024d283dca {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-7eb14ffa-b155-4392-af59-0158bb1ba9a2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7eb14ffa-b155-4392-af59-0158bb1ba9a2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7eb14ffa-b155-4392-af59-0158bb1ba9a2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7eb14ffa-b155-4392-af59-0158bb1ba9a2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-62242fa9-7524-4d2f-9dfd-907d3bcd2c46"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-62242fa9-7524-4d2f-9dfd-907d3bcd2c46"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-62242fa9-7524-4d2f-9dfd-907d3bcd2c46"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-62242fa9-7524-4d2f-9dfd-907d3bcd2c46"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-62242fa9-7524-4d2f-9dfd-907d3bcd2c46"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-62242fa9-7524-4d2f-9dfd-907d3bcd2c46"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-62242fa9-7524-4d2f-9dfd-907d3bcd2c46"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-65550cbe-f77f-4419-a43f-09c23ee8599c {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-da86ce5c-7113-4747-925e-9e29f46d1683"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-da86ce5c-7113-4747-925e-9e29f46d1683"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-da86ce5c-7113-4747-925e-9e29f46d1683"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-da86ce5c-7113-4747-925e-9e29f46d1683"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-da86ce5c-7113-4747-925e-9e29f46d1683"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-da86ce5c-7113-4747-925e-9e29f46d1683"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-da86ce5c-7113-4747-925e-9e29f46d1683"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-d0d822f6-1323-4bcc-b661-4ef5e1303c72 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-aa652ce6-b64e-48af-b347-82bcec8ab2c9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-aa652ce6-b64e-48af-b347-82bcec8ab2c9"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-aa652ce6-b64e-48af-b347-82bcec8ab2c9"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-aa652ce6-b64e-48af-b347-82bcec8ab2c9"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-aa652ce6-b64e-48af-b347-82bcec8ab2c9"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-aa652ce6-b64e-48af-b347-82bcec8ab2c9"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-aa652ce6-b64e-48af-b347-82bcec8ab2c9"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

#s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 {
  max-width: 1920px;
aspect-ratio: 1920/1095;
text-align: center;
}

#s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 {
  margin: 0 !important;
  overflow: visible;
}

#s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 img.shogun-image {
  /* Add background color handling */
  
}

#s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image {
  box-sizing: border-box;
}



.s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image-container {
      position: relative;
    }

    .s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

@media (min-width: 1200px){#s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 {
  margin: 0 !important;
  overflow: visible;
}

#s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 img.shogun-image {
  /* Add background color handling */
  
}

#s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image {
  box-sizing: border-box;
}



.s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image-container {
      position: relative;
    }

    .s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 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-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 {
  margin: 0 !important;
  overflow: visible;
}

#s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 img.shogun-image {
  /* Add background color handling */
  
}

#s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image {
  box-sizing: border-box;
}



.s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image-container {
      position: relative;
    }

    .s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 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-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 {
  margin: 0 !important;
  overflow: visible;
}

#s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 img.shogun-image {
  /* Add background color handling */
  
}

#s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image {
  box-sizing: border-box;
}



.s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image-container {
      position: relative;
    }

    .s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (max-width: 767px){#s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 {
  margin: 0 !important;
  overflow: visible;
}

#s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 img.shogun-image {
  /* Add background color handling */
  
}

#s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image {
  box-sizing: border-box;
}



.s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image-container {
      position: relative;
    }

    .s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-54fd18a6-ae95-4d6c-b2b0-f1e7aef154c9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}
#s-19fe5dd0-9f01-462e-8104-e8b90161c011 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 1%;
padding-right: 1%;
}

#s-1865bf43-260a-49c0-a488-499f00e8805e {
  margin-left: 4%;
margin-right: 4%;
padding-top: 20px;
padding-left: 1%;
padding-bottom: 20px;
padding-right: 1%;
}

@media (min-width: 0px) {
[id="s-e5ad7b23-f4d2-40f6-940f-b7c9d83c09b8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e5ad7b23-f4d2-40f6-940f-b7c9d83c09b8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e5ad7b23-f4d2-40f6-940f-b7c9d83c09b8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e5ad7b23-f4d2-40f6-940f-b7c9d83c09b8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-4435a561-9bf6-4e8d-a831-8c579b783368"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4435a561-9bf6-4e8d-a831-8c579b783368"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-4435a561-9bf6-4e8d-a831-8c579b783368"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4435a561-9bf6-4e8d-a831-8c579b783368"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-4435a561-9bf6-4e8d-a831-8c579b783368"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4435a561-9bf6-4e8d-a831-8c579b783368"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-4435a561-9bf6-4e8d-a831-8c579b783368"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-15302847-1af1-4d77-967b-272c2857ad6c {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-41a6ee39-767c-4550-b373-094804490613"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-41a6ee39-767c-4550-b373-094804490613"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-41a6ee39-767c-4550-b373-094804490613"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-41a6ee39-767c-4550-b373-094804490613"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-41a6ee39-767c-4550-b373-094804490613"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-41a6ee39-767c-4550-b373-094804490613"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-41a6ee39-767c-4550-b373-094804490613"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-e109473b-dbee-4794-826c-f9498a0f94d9 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-3c3c27dc-5e8e-4af2-9a09-8218fddbd1e2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3c3c27dc-5e8e-4af2-9a09-8218fddbd1e2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3c3c27dc-5e8e-4af2-9a09-8218fddbd1e2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3c3c27dc-5e8e-4af2-9a09-8218fddbd1e2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-ff65688f-d61a-44c7-933b-2794b0f15104"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ff65688f-d61a-44c7-933b-2794b0f15104"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ff65688f-d61a-44c7-933b-2794b0f15104"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ff65688f-d61a-44c7-933b-2794b0f15104"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ff65688f-d61a-44c7-933b-2794b0f15104"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ff65688f-d61a-44c7-933b-2794b0f15104"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ff65688f-d61a-44c7-933b-2794b0f15104"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-7379f68c-87fa-42c1-a0c5-14f62a2656d2 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-3875c647-8715-47bb-b5a4-4dde0b5d04a1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3875c647-8715-47bb-b5a4-4dde0b5d04a1"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3875c647-8715-47bb-b5a4-4dde0b5d04a1"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3875c647-8715-47bb-b5a4-4dde0b5d04a1"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3875c647-8715-47bb-b5a4-4dde0b5d04a1"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3875c647-8715-47bb-b5a4-4dde0b5d04a1"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3875c647-8715-47bb-b5a4-4dde0b5d04a1"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-2cacb19b-94e5-4943-8b40-fec06929f6c4 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-1d38d6d3-2613-4c38-a74c-a362a71f91d0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1d38d6d3-2613-4c38-a74c-a362a71f91d0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1d38d6d3-2613-4c38-a74c-a362a71f91d0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1d38d6d3-2613-4c38-a74c-a362a71f91d0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-b60bdb02-e858-4216-966c-a4777ad46a81"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b60bdb02-e858-4216-966c-a4777ad46a81"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b60bdb02-e858-4216-966c-a4777ad46a81"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b60bdb02-e858-4216-966c-a4777ad46a81"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b60bdb02-e858-4216-966c-a4777ad46a81"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b60bdb02-e858-4216-966c-a4777ad46a81"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b60bdb02-e858-4216-966c-a4777ad46a81"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-6bdfb31b-c22c-4ae6-91e6-429ba7bae3e2 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-d257a69b-a116-45b2-93ae-e803dda6f10e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d257a69b-a116-45b2-93ae-e803dda6f10e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d257a69b-a116-45b2-93ae-e803dda6f10e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d257a69b-a116-45b2-93ae-e803dda6f10e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d257a69b-a116-45b2-93ae-e803dda6f10e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d257a69b-a116-45b2-93ae-e803dda6f10e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d257a69b-a116-45b2-93ae-e803dda6f10e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-b35ba409-61d7-423c-ba96-e9a4b6b08c91 {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-878b7f3f-4602-466d-af39-583bb9deeaf3 {
  margin-top: -10px;
margin-bottom: -10px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-878b7f3f-4602-466d-af39-583bb9deeaf3 hr {
  border-top: 1px solid #ddd;
}

@media (min-width: 0px) {
[id="s-93f16d80-053c-4415-b290-16b94e122f22"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-93f16d80-053c-4415-b290-16b94e122f22"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-93f16d80-053c-4415-b290-16b94e122f22"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-93f16d80-053c-4415-b290-16b94e122f22"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-7050dd57-b3aa-478d-b27c-1d94b80acfce"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7050dd57-b3aa-478d-b27c-1d94b80acfce"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-7050dd57-b3aa-478d-b27c-1d94b80acfce"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7050dd57-b3aa-478d-b27c-1d94b80acfce"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-7050dd57-b3aa-478d-b27c-1d94b80acfce"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7050dd57-b3aa-478d-b27c-1d94b80acfce"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-7050dd57-b3aa-478d-b27c-1d94b80acfce"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-5c74ef80-fa56-40d4-871d-ef3b9f1bcb87 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-fd6fd051-0e78-4282-aa3c-fff629358b22"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fd6fd051-0e78-4282-aa3c-fff629358b22"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-fd6fd051-0e78-4282-aa3c-fff629358b22"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-fd6fd051-0e78-4282-aa3c-fff629358b22"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-fd6fd051-0e78-4282-aa3c-fff629358b22"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-fd6fd051-0e78-4282-aa3c-fff629358b22"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-fd6fd051-0e78-4282-aa3c-fff629358b22"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-77856445-c7d5-4a1f-a099-7a77c1145cef {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-d915a723-9ecc-434b-9315-f9a3e215d9d6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d915a723-9ecc-434b-9315-f9a3e215d9d6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d915a723-9ecc-434b-9315-f9a3e215d9d6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d915a723-9ecc-434b-9315-f9a3e215d9d6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-9c3f431f-b754-4c20-adaa-f4eac2f33c7b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9c3f431f-b754-4c20-adaa-f4eac2f33c7b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-9c3f431f-b754-4c20-adaa-f4eac2f33c7b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9c3f431f-b754-4c20-adaa-f4eac2f33c7b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-9c3f431f-b754-4c20-adaa-f4eac2f33c7b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9c3f431f-b754-4c20-adaa-f4eac2f33c7b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-9c3f431f-b754-4c20-adaa-f4eac2f33c7b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-e357320b-e173-41a4-8bdc-3bd955a3deb6 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-112d8c68-643b-4f14-b363-ce23ceb630c0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-112d8c68-643b-4f14-b363-ce23ceb630c0"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-112d8c68-643b-4f14-b363-ce23ceb630c0"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-112d8c68-643b-4f14-b363-ce23ceb630c0"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-112d8c68-643b-4f14-b363-ce23ceb630c0"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-112d8c68-643b-4f14-b363-ce23ceb630c0"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-112d8c68-643b-4f14-b363-ce23ceb630c0"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-f6bfe8fc-23be-4f68-9afc-4aeda60a6581 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-cf4c329e-46ff-4584-afff-748102ecffeb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cf4c329e-46ff-4584-afff-748102ecffeb"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-cf4c329e-46ff-4584-afff-748102ecffeb"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-cf4c329e-46ff-4584-afff-748102ecffeb"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-a12e8f00-273b-40a4-a958-6da8a7829c4d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a12e8f00-273b-40a4-a958-6da8a7829c4d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a12e8f00-273b-40a4-a958-6da8a7829c4d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a12e8f00-273b-40a4-a958-6da8a7829c4d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a12e8f00-273b-40a4-a958-6da8a7829c4d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a12e8f00-273b-40a4-a958-6da8a7829c4d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a12e8f00-273b-40a4-a958-6da8a7829c4d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-a1c3643a-de5d-4dcc-833b-37bd430e4f57 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-d639067e-cc43-4224-92d3-2681fc0b4a2e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d639067e-cc43-4224-92d3-2681fc0b4a2e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d639067e-cc43-4224-92d3-2681fc0b4a2e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d639067e-cc43-4224-92d3-2681fc0b4a2e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d639067e-cc43-4224-92d3-2681fc0b4a2e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d639067e-cc43-4224-92d3-2681fc0b4a2e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d639067e-cc43-4224-92d3-2681fc0b4a2e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-b14c6d6e-4566-40a3-95e3-f76d58fc8b4c {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-9de74992-acf1-4704-8e06-49049c626dca"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9de74992-acf1-4704-8e06-49049c626dca"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-9de74992-acf1-4704-8e06-49049c626dca"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9de74992-acf1-4704-8e06-49049c626dca"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-9de74992-acf1-4704-8e06-49049c626dca"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9de74992-acf1-4704-8e06-49049c626dca"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-9de74992-acf1-4704-8e06-49049c626dca"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

#s-70984a3e-e4b8-4759-945e-f79486e743d7 {
  padding-left: 0%;
padding-right: 0%;
}

#s-bae504b5-9818-450e-8d44-001122253521 {
  margin-left: 3%;
margin-right: 3%;
padding-left: 1%;
padding-right: 1%;
}

#s-1957e911-9ffe-48fb-ae43-9988ea556556 {
  max-width: 1920px;
aspect-ratio: 1920/1095;
text-align: center;
}

#s-1957e911-9ffe-48fb-ae43-9988ea556556 {
  margin: 0 !important;
  overflow: visible;
}

#s-1957e911-9ffe-48fb-ae43-9988ea556556-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1957e911-9ffe-48fb-ae43-9988ea556556 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1957e911-9ffe-48fb-ae43-9988ea556556 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1957e911-9ffe-48fb-ae43-9988ea556556 img.shogun-image {
  /* Add background color handling */
  
}

#s-1957e911-9ffe-48fb-ae43-9988ea556556 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1957e911-9ffe-48fb-ae43-9988ea556556 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-1957e911-9ffe-48fb-ae43-9988ea556556 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1957e911-9ffe-48fb-ae43-9988ea556556 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1957e911-9ffe-48fb-ae43-9988ea556556 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-1957e911-9ffe-48fb-ae43-9988ea556556 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1957e911-9ffe-48fb-ae43-9988ea556556.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image {
  box-sizing: border-box;
}



.s-1957e911-9ffe-48fb-ae43-9988ea556556 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1957e911-9ffe-48fb-ae43-9988ea556556 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image-container {
      position: relative;
    }

    .s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1957e911-9ffe-48fb-ae43-9988ea556556 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

@media (min-width: 1200px){#s-1957e911-9ffe-48fb-ae43-9988ea556556 {
  margin: 0 !important;
  overflow: visible;
}

#s-1957e911-9ffe-48fb-ae43-9988ea556556-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1957e911-9ffe-48fb-ae43-9988ea556556 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1957e911-9ffe-48fb-ae43-9988ea556556 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1957e911-9ffe-48fb-ae43-9988ea556556 img.shogun-image {
  /* Add background color handling */
  
}

#s-1957e911-9ffe-48fb-ae43-9988ea556556 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1957e911-9ffe-48fb-ae43-9988ea556556 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-1957e911-9ffe-48fb-ae43-9988ea556556 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1957e911-9ffe-48fb-ae43-9988ea556556 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1957e911-9ffe-48fb-ae43-9988ea556556 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-1957e911-9ffe-48fb-ae43-9988ea556556 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1957e911-9ffe-48fb-ae43-9988ea556556.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image {
  box-sizing: border-box;
}



.s-1957e911-9ffe-48fb-ae43-9988ea556556 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1957e911-9ffe-48fb-ae43-9988ea556556 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image-container {
      position: relative;
    }

    .s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1957e911-9ffe-48fb-ae43-9988ea556556 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-1957e911-9ffe-48fb-ae43-9988ea556556 {
  margin: 0 !important;
  overflow: visible;
}

#s-1957e911-9ffe-48fb-ae43-9988ea556556-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1957e911-9ffe-48fb-ae43-9988ea556556 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1957e911-9ffe-48fb-ae43-9988ea556556 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1957e911-9ffe-48fb-ae43-9988ea556556 img.shogun-image {
  /* Add background color handling */
  
}

#s-1957e911-9ffe-48fb-ae43-9988ea556556 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1957e911-9ffe-48fb-ae43-9988ea556556 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-1957e911-9ffe-48fb-ae43-9988ea556556 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1957e911-9ffe-48fb-ae43-9988ea556556 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1957e911-9ffe-48fb-ae43-9988ea556556 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-1957e911-9ffe-48fb-ae43-9988ea556556 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1957e911-9ffe-48fb-ae43-9988ea556556.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image {
  box-sizing: border-box;
}



.s-1957e911-9ffe-48fb-ae43-9988ea556556 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1957e911-9ffe-48fb-ae43-9988ea556556 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image-container {
      position: relative;
    }

    .s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1957e911-9ffe-48fb-ae43-9988ea556556 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-1957e911-9ffe-48fb-ae43-9988ea556556 {
  margin: 0 !important;
  overflow: visible;
}

#s-1957e911-9ffe-48fb-ae43-9988ea556556-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1957e911-9ffe-48fb-ae43-9988ea556556 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1957e911-9ffe-48fb-ae43-9988ea556556 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1957e911-9ffe-48fb-ae43-9988ea556556 img.shogun-image {
  /* Add background color handling */
  
}

#s-1957e911-9ffe-48fb-ae43-9988ea556556 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1957e911-9ffe-48fb-ae43-9988ea556556 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-1957e911-9ffe-48fb-ae43-9988ea556556 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1957e911-9ffe-48fb-ae43-9988ea556556 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1957e911-9ffe-48fb-ae43-9988ea556556 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-1957e911-9ffe-48fb-ae43-9988ea556556 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1957e911-9ffe-48fb-ae43-9988ea556556.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image {
  box-sizing: border-box;
}



.s-1957e911-9ffe-48fb-ae43-9988ea556556 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1957e911-9ffe-48fb-ae43-9988ea556556 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image-container {
      position: relative;
    }

    .s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1957e911-9ffe-48fb-ae43-9988ea556556 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (max-width: 767px){#s-1957e911-9ffe-48fb-ae43-9988ea556556 {
  margin: 0 !important;
  overflow: visible;
}

#s-1957e911-9ffe-48fb-ae43-9988ea556556-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1957e911-9ffe-48fb-ae43-9988ea556556 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1957e911-9ffe-48fb-ae43-9988ea556556 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1957e911-9ffe-48fb-ae43-9988ea556556 img.shogun-image {
  /* Add background color handling */
  
}

#s-1957e911-9ffe-48fb-ae43-9988ea556556 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1957e911-9ffe-48fb-ae43-9988ea556556 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-1957e911-9ffe-48fb-ae43-9988ea556556 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1957e911-9ffe-48fb-ae43-9988ea556556 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1957e911-9ffe-48fb-ae43-9988ea556556 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-1957e911-9ffe-48fb-ae43-9988ea556556 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1957e911-9ffe-48fb-ae43-9988ea556556.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image {
  box-sizing: border-box;
}



.s-1957e911-9ffe-48fb-ae43-9988ea556556 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1957e911-9ffe-48fb-ae43-9988ea556556 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image-container {
      position: relative;
    }

    .s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1957e911-9ffe-48fb-ae43-9988ea556556.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1957e911-9ffe-48fb-ae43-9988ea556556 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}
@media (min-width: 0px) {
[id="s-ead71600-aa47-4abd-a4ba-76fe9e9e3aeb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ead71600-aa47-4abd-a4ba-76fe9e9e3aeb"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ead71600-aa47-4abd-a4ba-76fe9e9e3aeb"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ead71600-aa47-4abd-a4ba-76fe9e9e3aeb"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-6a55674a-dfa7-418b-b0bf-a45bee6516c8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6a55674a-dfa7-418b-b0bf-a45bee6516c8"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-6a55674a-dfa7-418b-b0bf-a45bee6516c8"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6a55674a-dfa7-418b-b0bf-a45bee6516c8"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-6a55674a-dfa7-418b-b0bf-a45bee6516c8"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6a55674a-dfa7-418b-b0bf-a45bee6516c8"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-6a55674a-dfa7-418b-b0bf-a45bee6516c8"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-d27e838c-bbda-4679-8de4-c829ca94e295 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-c350d9f3-4b7b-4663-93d8-1db0910c390c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c350d9f3-4b7b-4663-93d8-1db0910c390c"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c350d9f3-4b7b-4663-93d8-1db0910c390c"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c350d9f3-4b7b-4663-93d8-1db0910c390c"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c350d9f3-4b7b-4663-93d8-1db0910c390c"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c350d9f3-4b7b-4663-93d8-1db0910c390c"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c350d9f3-4b7b-4663-93d8-1db0910c390c"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-4bad18d6-2465-4574-9b38-37511ccb8b7b {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-42912d4d-e22d-4aa9-b1cf-c20a0589ab37"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-42912d4d-e22d-4aa9-b1cf-c20a0589ab37"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-42912d4d-e22d-4aa9-b1cf-c20a0589ab37"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-42912d4d-e22d-4aa9-b1cf-c20a0589ab37"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-f8176a40-aa7c-4abf-9483-947aeb400f08"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f8176a40-aa7c-4abf-9483-947aeb400f08"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f8176a40-aa7c-4abf-9483-947aeb400f08"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f8176a40-aa7c-4abf-9483-947aeb400f08"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f8176a40-aa7c-4abf-9483-947aeb400f08"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f8176a40-aa7c-4abf-9483-947aeb400f08"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f8176a40-aa7c-4abf-9483-947aeb400f08"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-74404a1e-e1e8-4a29-8fb7-d4a176b1dfca {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-4011e782-a86d-4841-b629-305fab34d933"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4011e782-a86d-4841-b629-305fab34d933"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4011e782-a86d-4841-b629-305fab34d933"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4011e782-a86d-4841-b629-305fab34d933"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4011e782-a86d-4841-b629-305fab34d933"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4011e782-a86d-4841-b629-305fab34d933"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4011e782-a86d-4841-b629-305fab34d933"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-deeb444a-9aaf-4a54-a8a2-355c321a096f {
  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-c0f8fb9e-30f1-4755-b644-650d74ebb26b {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-c0f8fb9e-30f1-4755-b644-650d74ebb26b .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-c0f8fb9e-30f1-4755-b644-650d74ebb26b .shg-sld-nav-button.shg-sld-left,
#s-c0f8fb9e-30f1-4755-b644-650d74ebb26b .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-b3d7f592-faf2-4543-b59b-9f7e06113779 {
  margin-left: auto;
margin-right: auto;
max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-b3d7f592-faf2-4543-b59b-9f7e06113779 {
  margin: 0 !important;
  overflow: visible;
}

#s-b3d7f592-faf2-4543-b59b-9f7e06113779-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b3d7f592-faf2-4543-b59b-9f7e06113779 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b3d7f592-faf2-4543-b59b-9f7e06113779 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b3d7f592-faf2-4543-b59b-9f7e06113779 img.shogun-image {
  /* Add background color handling */
  
}

#s-b3d7f592-faf2-4543-b59b-9f7e06113779 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b3d7f592-faf2-4543-b59b-9f7e06113779 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-b3d7f592-faf2-4543-b59b-9f7e06113779 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b3d7f592-faf2-4543-b59b-9f7e06113779 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b3d7f592-faf2-4543-b59b-9f7e06113779 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-b3d7f592-faf2-4543-b59b-9f7e06113779 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b3d7f592-faf2-4543-b59b-9f7e06113779.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image {
  box-sizing: border-box;
}



.s-b3d7f592-faf2-4543-b59b-9f7e06113779 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b3d7f592-faf2-4543-b59b-9f7e06113779 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image-container {
      position: relative;
    }

    .s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b3d7f592-faf2-4543-b59b-9f7e06113779 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-b3d7f592-faf2-4543-b59b-9f7e06113779 {
  margin: 0 !important;
  overflow: visible;
}

#s-b3d7f592-faf2-4543-b59b-9f7e06113779-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b3d7f592-faf2-4543-b59b-9f7e06113779 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b3d7f592-faf2-4543-b59b-9f7e06113779 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b3d7f592-faf2-4543-b59b-9f7e06113779 img.shogun-image {
  /* Add background color handling */
  
}

#s-b3d7f592-faf2-4543-b59b-9f7e06113779 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b3d7f592-faf2-4543-b59b-9f7e06113779 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-b3d7f592-faf2-4543-b59b-9f7e06113779 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b3d7f592-faf2-4543-b59b-9f7e06113779 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b3d7f592-faf2-4543-b59b-9f7e06113779 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-b3d7f592-faf2-4543-b59b-9f7e06113779 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b3d7f592-faf2-4543-b59b-9f7e06113779.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image {
  box-sizing: border-box;
}



.s-b3d7f592-faf2-4543-b59b-9f7e06113779 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b3d7f592-faf2-4543-b59b-9f7e06113779 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image-container {
      position: relative;
    }

    .s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b3d7f592-faf2-4543-b59b-9f7e06113779 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-b3d7f592-faf2-4543-b59b-9f7e06113779 {
  margin: 0 !important;
  overflow: visible;
}

#s-b3d7f592-faf2-4543-b59b-9f7e06113779-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b3d7f592-faf2-4543-b59b-9f7e06113779 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b3d7f592-faf2-4543-b59b-9f7e06113779 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b3d7f592-faf2-4543-b59b-9f7e06113779 img.shogun-image {
  /* Add background color handling */
  
}

#s-b3d7f592-faf2-4543-b59b-9f7e06113779 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b3d7f592-faf2-4543-b59b-9f7e06113779 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-b3d7f592-faf2-4543-b59b-9f7e06113779 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b3d7f592-faf2-4543-b59b-9f7e06113779 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b3d7f592-faf2-4543-b59b-9f7e06113779 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-b3d7f592-faf2-4543-b59b-9f7e06113779 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b3d7f592-faf2-4543-b59b-9f7e06113779.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image {
  box-sizing: border-box;
}



.s-b3d7f592-faf2-4543-b59b-9f7e06113779 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b3d7f592-faf2-4543-b59b-9f7e06113779 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image-container {
      position: relative;
    }

    .s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b3d7f592-faf2-4543-b59b-9f7e06113779 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-b3d7f592-faf2-4543-b59b-9f7e06113779 {
  margin: 0 !important;
  overflow: visible;
}

#s-b3d7f592-faf2-4543-b59b-9f7e06113779-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b3d7f592-faf2-4543-b59b-9f7e06113779 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b3d7f592-faf2-4543-b59b-9f7e06113779 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b3d7f592-faf2-4543-b59b-9f7e06113779 img.shogun-image {
  /* Add background color handling */
  
}

#s-b3d7f592-faf2-4543-b59b-9f7e06113779 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b3d7f592-faf2-4543-b59b-9f7e06113779 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-b3d7f592-faf2-4543-b59b-9f7e06113779 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b3d7f592-faf2-4543-b59b-9f7e06113779 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b3d7f592-faf2-4543-b59b-9f7e06113779 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-b3d7f592-faf2-4543-b59b-9f7e06113779 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b3d7f592-faf2-4543-b59b-9f7e06113779.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image {
  box-sizing: border-box;
}



.s-b3d7f592-faf2-4543-b59b-9f7e06113779 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b3d7f592-faf2-4543-b59b-9f7e06113779 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image-container {
      position: relative;
    }

    .s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b3d7f592-faf2-4543-b59b-9f7e06113779 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-b3d7f592-faf2-4543-b59b-9f7e06113779 {
  margin: 0 !important;
  overflow: visible;
}

#s-b3d7f592-faf2-4543-b59b-9f7e06113779-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b3d7f592-faf2-4543-b59b-9f7e06113779 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b3d7f592-faf2-4543-b59b-9f7e06113779 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b3d7f592-faf2-4543-b59b-9f7e06113779 img.shogun-image {
  /* Add background color handling */
  
}

#s-b3d7f592-faf2-4543-b59b-9f7e06113779 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b3d7f592-faf2-4543-b59b-9f7e06113779 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-b3d7f592-faf2-4543-b59b-9f7e06113779 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b3d7f592-faf2-4543-b59b-9f7e06113779 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b3d7f592-faf2-4543-b59b-9f7e06113779 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-b3d7f592-faf2-4543-b59b-9f7e06113779 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b3d7f592-faf2-4543-b59b-9f7e06113779.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image {
  box-sizing: border-box;
}



.s-b3d7f592-faf2-4543-b59b-9f7e06113779 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b3d7f592-faf2-4543-b59b-9f7e06113779 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image-container {
      position: relative;
    }

    .s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b3d7f592-faf2-4543-b59b-9f7e06113779.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b3d7f592-faf2-4543-b59b-9f7e06113779 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-44383561-e8ee-409d-b497-18fe1621b6b2 {
  margin-left: auto;
margin-right: auto;
max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-44383561-e8ee-409d-b497-18fe1621b6b2 {
  margin: 0 !important;
  overflow: visible;
}

#s-44383561-e8ee-409d-b497-18fe1621b6b2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-44383561-e8ee-409d-b497-18fe1621b6b2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-44383561-e8ee-409d-b497-18fe1621b6b2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-44383561-e8ee-409d-b497-18fe1621b6b2 img.shogun-image {
  /* Add background color handling */
  
}

#s-44383561-e8ee-409d-b497-18fe1621b6b2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-44383561-e8ee-409d-b497-18fe1621b6b2 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-44383561-e8ee-409d-b497-18fe1621b6b2 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-44383561-e8ee-409d-b497-18fe1621b6b2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-44383561-e8ee-409d-b497-18fe1621b6b2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-44383561-e8ee-409d-b497-18fe1621b6b2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-44383561-e8ee-409d-b497-18fe1621b6b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image {
  box-sizing: border-box;
}



.s-44383561-e8ee-409d-b497-18fe1621b6b2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-44383561-e8ee-409d-b497-18fe1621b6b2 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image-container {
      position: relative;
    }

    .s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44383561-e8ee-409d-b497-18fe1621b6b2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-44383561-e8ee-409d-b497-18fe1621b6b2 {
  margin: 0 !important;
  overflow: visible;
}

#s-44383561-e8ee-409d-b497-18fe1621b6b2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-44383561-e8ee-409d-b497-18fe1621b6b2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-44383561-e8ee-409d-b497-18fe1621b6b2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-44383561-e8ee-409d-b497-18fe1621b6b2 img.shogun-image {
  /* Add background color handling */
  
}

#s-44383561-e8ee-409d-b497-18fe1621b6b2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-44383561-e8ee-409d-b497-18fe1621b6b2 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-44383561-e8ee-409d-b497-18fe1621b6b2 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-44383561-e8ee-409d-b497-18fe1621b6b2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-44383561-e8ee-409d-b497-18fe1621b6b2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-44383561-e8ee-409d-b497-18fe1621b6b2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-44383561-e8ee-409d-b497-18fe1621b6b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image {
  box-sizing: border-box;
}



.s-44383561-e8ee-409d-b497-18fe1621b6b2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-44383561-e8ee-409d-b497-18fe1621b6b2 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image-container {
      position: relative;
    }

    .s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44383561-e8ee-409d-b497-18fe1621b6b2 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-44383561-e8ee-409d-b497-18fe1621b6b2 {
  margin: 0 !important;
  overflow: visible;
}

#s-44383561-e8ee-409d-b497-18fe1621b6b2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-44383561-e8ee-409d-b497-18fe1621b6b2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-44383561-e8ee-409d-b497-18fe1621b6b2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-44383561-e8ee-409d-b497-18fe1621b6b2 img.shogun-image {
  /* Add background color handling */
  
}

#s-44383561-e8ee-409d-b497-18fe1621b6b2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-44383561-e8ee-409d-b497-18fe1621b6b2 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-44383561-e8ee-409d-b497-18fe1621b6b2 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-44383561-e8ee-409d-b497-18fe1621b6b2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-44383561-e8ee-409d-b497-18fe1621b6b2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-44383561-e8ee-409d-b497-18fe1621b6b2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-44383561-e8ee-409d-b497-18fe1621b6b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image {
  box-sizing: border-box;
}



.s-44383561-e8ee-409d-b497-18fe1621b6b2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-44383561-e8ee-409d-b497-18fe1621b6b2 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image-container {
      position: relative;
    }

    .s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44383561-e8ee-409d-b497-18fe1621b6b2 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-44383561-e8ee-409d-b497-18fe1621b6b2 {
  margin: 0 !important;
  overflow: visible;
}

#s-44383561-e8ee-409d-b497-18fe1621b6b2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-44383561-e8ee-409d-b497-18fe1621b6b2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-44383561-e8ee-409d-b497-18fe1621b6b2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-44383561-e8ee-409d-b497-18fe1621b6b2 img.shogun-image {
  /* Add background color handling */
  
}

#s-44383561-e8ee-409d-b497-18fe1621b6b2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-44383561-e8ee-409d-b497-18fe1621b6b2 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-44383561-e8ee-409d-b497-18fe1621b6b2 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-44383561-e8ee-409d-b497-18fe1621b6b2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-44383561-e8ee-409d-b497-18fe1621b6b2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-44383561-e8ee-409d-b497-18fe1621b6b2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-44383561-e8ee-409d-b497-18fe1621b6b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image {
  box-sizing: border-box;
}



.s-44383561-e8ee-409d-b497-18fe1621b6b2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-44383561-e8ee-409d-b497-18fe1621b6b2 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image-container {
      position: relative;
    }

    .s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44383561-e8ee-409d-b497-18fe1621b6b2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-44383561-e8ee-409d-b497-18fe1621b6b2 {
  margin: 0 !important;
  overflow: visible;
}

#s-44383561-e8ee-409d-b497-18fe1621b6b2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-44383561-e8ee-409d-b497-18fe1621b6b2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-44383561-e8ee-409d-b497-18fe1621b6b2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-44383561-e8ee-409d-b497-18fe1621b6b2 img.shogun-image {
  /* Add background color handling */
  
}

#s-44383561-e8ee-409d-b497-18fe1621b6b2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-44383561-e8ee-409d-b497-18fe1621b6b2 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-44383561-e8ee-409d-b497-18fe1621b6b2 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-44383561-e8ee-409d-b497-18fe1621b6b2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-44383561-e8ee-409d-b497-18fe1621b6b2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-44383561-e8ee-409d-b497-18fe1621b6b2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-44383561-e8ee-409d-b497-18fe1621b6b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image {
  box-sizing: border-box;
}



.s-44383561-e8ee-409d-b497-18fe1621b6b2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-44383561-e8ee-409d-b497-18fe1621b6b2 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image-container {
      position: relative;
    }

    .s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44383561-e8ee-409d-b497-18fe1621b6b2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44383561-e8ee-409d-b497-18fe1621b6b2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-75964f20-95af-4712-a266-e83252eb1141 {
  margin-left: auto;
margin-right: auto;
max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-75964f20-95af-4712-a266-e83252eb1141 {
  margin: 0 !important;
  overflow: visible;
}

#s-75964f20-95af-4712-a266-e83252eb1141-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-75964f20-95af-4712-a266-e83252eb1141 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-75964f20-95af-4712-a266-e83252eb1141 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-75964f20-95af-4712-a266-e83252eb1141 img.shogun-image {
  /* Add background color handling */
  
}

#s-75964f20-95af-4712-a266-e83252eb1141 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-75964f20-95af-4712-a266-e83252eb1141 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-75964f20-95af-4712-a266-e83252eb1141 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-75964f20-95af-4712-a266-e83252eb1141 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-75964f20-95af-4712-a266-e83252eb1141.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-75964f20-95af-4712-a266-e83252eb1141 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-75964f20-95af-4712-a266-e83252eb1141.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-75964f20-95af-4712-a266-e83252eb1141 .shogun-image-content {
  
    justify-content: center;
  
}

.s-75964f20-95af-4712-a266-e83252eb1141.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75964f20-95af-4712-a266-e83252eb1141.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75964f20-95af-4712-a266-e83252eb1141.shogun-image {
  box-sizing: border-box;
}



.s-75964f20-95af-4712-a266-e83252eb1141 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-75964f20-95af-4712-a266-e83252eb1141 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-75964f20-95af-4712-a266-e83252eb1141.shogun-image-container {
      position: relative;
    }

    .s-75964f20-95af-4712-a266-e83252eb1141.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75964f20-95af-4712-a266-e83252eb1141.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75964f20-95af-4712-a266-e83252eb1141 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-75964f20-95af-4712-a266-e83252eb1141 {
  margin: 0 !important;
  overflow: visible;
}

#s-75964f20-95af-4712-a266-e83252eb1141-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-75964f20-95af-4712-a266-e83252eb1141 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-75964f20-95af-4712-a266-e83252eb1141 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-75964f20-95af-4712-a266-e83252eb1141 img.shogun-image {
  /* Add background color handling */
  
}

#s-75964f20-95af-4712-a266-e83252eb1141 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-75964f20-95af-4712-a266-e83252eb1141 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-75964f20-95af-4712-a266-e83252eb1141 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-75964f20-95af-4712-a266-e83252eb1141 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-75964f20-95af-4712-a266-e83252eb1141.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-75964f20-95af-4712-a266-e83252eb1141 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-75964f20-95af-4712-a266-e83252eb1141.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-75964f20-95af-4712-a266-e83252eb1141 .shogun-image-content {
  
    justify-content: center;
  
}

.s-75964f20-95af-4712-a266-e83252eb1141.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75964f20-95af-4712-a266-e83252eb1141.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75964f20-95af-4712-a266-e83252eb1141.shogun-image {
  box-sizing: border-box;
}



.s-75964f20-95af-4712-a266-e83252eb1141 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-75964f20-95af-4712-a266-e83252eb1141 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-75964f20-95af-4712-a266-e83252eb1141.shogun-image-container {
      position: relative;
    }

    .s-75964f20-95af-4712-a266-e83252eb1141.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75964f20-95af-4712-a266-e83252eb1141.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75964f20-95af-4712-a266-e83252eb1141 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-75964f20-95af-4712-a266-e83252eb1141 {
  margin: 0 !important;
  overflow: visible;
}

#s-75964f20-95af-4712-a266-e83252eb1141-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-75964f20-95af-4712-a266-e83252eb1141 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-75964f20-95af-4712-a266-e83252eb1141 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-75964f20-95af-4712-a266-e83252eb1141 img.shogun-image {
  /* Add background color handling */
  
}

#s-75964f20-95af-4712-a266-e83252eb1141 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-75964f20-95af-4712-a266-e83252eb1141 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-75964f20-95af-4712-a266-e83252eb1141 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-75964f20-95af-4712-a266-e83252eb1141 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-75964f20-95af-4712-a266-e83252eb1141.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-75964f20-95af-4712-a266-e83252eb1141 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-75964f20-95af-4712-a266-e83252eb1141.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-75964f20-95af-4712-a266-e83252eb1141 .shogun-image-content {
  
    justify-content: center;
  
}

.s-75964f20-95af-4712-a266-e83252eb1141.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75964f20-95af-4712-a266-e83252eb1141.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75964f20-95af-4712-a266-e83252eb1141.shogun-image {
  box-sizing: border-box;
}



.s-75964f20-95af-4712-a266-e83252eb1141 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-75964f20-95af-4712-a266-e83252eb1141 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-75964f20-95af-4712-a266-e83252eb1141.shogun-image-container {
      position: relative;
    }

    .s-75964f20-95af-4712-a266-e83252eb1141.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75964f20-95af-4712-a266-e83252eb1141.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75964f20-95af-4712-a266-e83252eb1141 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-75964f20-95af-4712-a266-e83252eb1141 {
  margin: 0 !important;
  overflow: visible;
}

#s-75964f20-95af-4712-a266-e83252eb1141-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-75964f20-95af-4712-a266-e83252eb1141 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-75964f20-95af-4712-a266-e83252eb1141 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-75964f20-95af-4712-a266-e83252eb1141 img.shogun-image {
  /* Add background color handling */
  
}

#s-75964f20-95af-4712-a266-e83252eb1141 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-75964f20-95af-4712-a266-e83252eb1141 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-75964f20-95af-4712-a266-e83252eb1141 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-75964f20-95af-4712-a266-e83252eb1141 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-75964f20-95af-4712-a266-e83252eb1141.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-75964f20-95af-4712-a266-e83252eb1141 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-75964f20-95af-4712-a266-e83252eb1141.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-75964f20-95af-4712-a266-e83252eb1141 .shogun-image-content {
  
    justify-content: center;
  
}

.s-75964f20-95af-4712-a266-e83252eb1141.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75964f20-95af-4712-a266-e83252eb1141.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75964f20-95af-4712-a266-e83252eb1141.shogun-image {
  box-sizing: border-box;
}



.s-75964f20-95af-4712-a266-e83252eb1141 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-75964f20-95af-4712-a266-e83252eb1141 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-75964f20-95af-4712-a266-e83252eb1141.shogun-image-container {
      position: relative;
    }

    .s-75964f20-95af-4712-a266-e83252eb1141.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75964f20-95af-4712-a266-e83252eb1141.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75964f20-95af-4712-a266-e83252eb1141 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-75964f20-95af-4712-a266-e83252eb1141 {
  margin: 0 !important;
  overflow: visible;
}

#s-75964f20-95af-4712-a266-e83252eb1141-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-75964f20-95af-4712-a266-e83252eb1141 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-75964f20-95af-4712-a266-e83252eb1141 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-75964f20-95af-4712-a266-e83252eb1141 img.shogun-image {
  /* Add background color handling */
  
}

#s-75964f20-95af-4712-a266-e83252eb1141 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-75964f20-95af-4712-a266-e83252eb1141 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-75964f20-95af-4712-a266-e83252eb1141 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-75964f20-95af-4712-a266-e83252eb1141 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-75964f20-95af-4712-a266-e83252eb1141.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-75964f20-95af-4712-a266-e83252eb1141 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-75964f20-95af-4712-a266-e83252eb1141.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-75964f20-95af-4712-a266-e83252eb1141 .shogun-image-content {
  
    justify-content: center;
  
}

.s-75964f20-95af-4712-a266-e83252eb1141.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75964f20-95af-4712-a266-e83252eb1141.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75964f20-95af-4712-a266-e83252eb1141.shogun-image {
  box-sizing: border-box;
}



.s-75964f20-95af-4712-a266-e83252eb1141 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-75964f20-95af-4712-a266-e83252eb1141 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-75964f20-95af-4712-a266-e83252eb1141.shogun-image-container {
      position: relative;
    }

    .s-75964f20-95af-4712-a266-e83252eb1141.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75964f20-95af-4712-a266-e83252eb1141.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75964f20-95af-4712-a266-e83252eb1141 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 {
  margin-left: auto;
margin-right: auto;
max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 {
  margin: 0 !important;
  overflow: visible;
}

#s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 img.shogun-image {
  /* Add background color handling */
  
}

#s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image {
  box-sizing: border-box;
}



.s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image-container {
      position: relative;
    }

    .s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 {
  margin: 0 !important;
  overflow: visible;
}

#s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 img.shogun-image {
  /* Add background color handling */
  
}

#s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image {
  box-sizing: border-box;
}



.s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image-container {
      position: relative;
    }

    .s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 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-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 {
  margin: 0 !important;
  overflow: visible;
}

#s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 img.shogun-image {
  /* Add background color handling */
  
}

#s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image {
  box-sizing: border-box;
}



.s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image-container {
      position: relative;
    }

    .s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 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-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 {
  margin: 0 !important;
  overflow: visible;
}

#s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 img.shogun-image {
  /* Add background color handling */
  
}

#s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image {
  box-sizing: border-box;
}



.s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image-container {
      position: relative;
    }

    .s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 {
  margin: 0 !important;
  overflow: visible;
}

#s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 img.shogun-image {
  /* Add background color handling */
  
}

#s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image {
  box-sizing: border-box;
}



.s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image-container {
      position: relative;
    }

    .s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c52d7dab-2015-4cbc-87dc-6ae3902e1f41 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-0e23d0b7-c963-4324-afb1-b2394c657f2e {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-0e23d0b7-c963-4324-afb1-b2394c657f2e {
  margin: 0 !important;
  overflow: visible;
}

#s-0e23d0b7-c963-4324-afb1-b2394c657f2e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0e23d0b7-c963-4324-afb1-b2394c657f2e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0e23d0b7-c963-4324-afb1-b2394c657f2e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0e23d0b7-c963-4324-afb1-b2394c657f2e img.shogun-image {
  /* Add background color handling */
  
}

#s-0e23d0b7-c963-4324-afb1-b2394c657f2e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0e23d0b7-c963-4324-afb1-b2394c657f2e .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0e23d0b7-c963-4324-afb1-b2394c657f2e .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0e23d0b7-c963-4324-afb1-b2394c657f2e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0e23d0b7-c963-4324-afb1-b2394c657f2e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0e23d0b7-c963-4324-afb1-b2394c657f2e .shogun-image-content {
  
    justify-content: center;
  
}

.s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image {
  box-sizing: border-box;
}



.s-0e23d0b7-c963-4324-afb1-b2394c657f2e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0e23d0b7-c963-4324-afb1-b2394c657f2e {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image-container {
      position: relative;
    }

    .s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0e23d0b7-c963-4324-afb1-b2394c657f2e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-0e23d0b7-c963-4324-afb1-b2394c657f2e {
  margin: 0 !important;
  overflow: visible;
}

#s-0e23d0b7-c963-4324-afb1-b2394c657f2e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0e23d0b7-c963-4324-afb1-b2394c657f2e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0e23d0b7-c963-4324-afb1-b2394c657f2e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0e23d0b7-c963-4324-afb1-b2394c657f2e img.shogun-image {
  /* Add background color handling */
  
}

#s-0e23d0b7-c963-4324-afb1-b2394c657f2e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0e23d0b7-c963-4324-afb1-b2394c657f2e .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0e23d0b7-c963-4324-afb1-b2394c657f2e .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0e23d0b7-c963-4324-afb1-b2394c657f2e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0e23d0b7-c963-4324-afb1-b2394c657f2e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0e23d0b7-c963-4324-afb1-b2394c657f2e .shogun-image-content {
  
    justify-content: center;
  
}

.s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image {
  box-sizing: border-box;
}



.s-0e23d0b7-c963-4324-afb1-b2394c657f2e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0e23d0b7-c963-4324-afb1-b2394c657f2e {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image-container {
      position: relative;
    }

    .s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0e23d0b7-c963-4324-afb1-b2394c657f2e 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-0e23d0b7-c963-4324-afb1-b2394c657f2e {
  margin: 0 !important;
  overflow: visible;
}

#s-0e23d0b7-c963-4324-afb1-b2394c657f2e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0e23d0b7-c963-4324-afb1-b2394c657f2e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0e23d0b7-c963-4324-afb1-b2394c657f2e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0e23d0b7-c963-4324-afb1-b2394c657f2e img.shogun-image {
  /* Add background color handling */
  
}

#s-0e23d0b7-c963-4324-afb1-b2394c657f2e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0e23d0b7-c963-4324-afb1-b2394c657f2e .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0e23d0b7-c963-4324-afb1-b2394c657f2e .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0e23d0b7-c963-4324-afb1-b2394c657f2e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0e23d0b7-c963-4324-afb1-b2394c657f2e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0e23d0b7-c963-4324-afb1-b2394c657f2e .shogun-image-content {
  
    justify-content: center;
  
}

.s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image {
  box-sizing: border-box;
}



.s-0e23d0b7-c963-4324-afb1-b2394c657f2e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0e23d0b7-c963-4324-afb1-b2394c657f2e {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image-container {
      position: relative;
    }

    .s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0e23d0b7-c963-4324-afb1-b2394c657f2e 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-0e23d0b7-c963-4324-afb1-b2394c657f2e {
  margin: 0 !important;
  overflow: visible;
}

#s-0e23d0b7-c963-4324-afb1-b2394c657f2e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0e23d0b7-c963-4324-afb1-b2394c657f2e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0e23d0b7-c963-4324-afb1-b2394c657f2e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0e23d0b7-c963-4324-afb1-b2394c657f2e img.shogun-image {
  /* Add background color handling */
  
}

#s-0e23d0b7-c963-4324-afb1-b2394c657f2e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0e23d0b7-c963-4324-afb1-b2394c657f2e .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0e23d0b7-c963-4324-afb1-b2394c657f2e .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0e23d0b7-c963-4324-afb1-b2394c657f2e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0e23d0b7-c963-4324-afb1-b2394c657f2e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0e23d0b7-c963-4324-afb1-b2394c657f2e .shogun-image-content {
  
    justify-content: center;
  
}

.s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image {
  box-sizing: border-box;
}



.s-0e23d0b7-c963-4324-afb1-b2394c657f2e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0e23d0b7-c963-4324-afb1-b2394c657f2e {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image-container {
      position: relative;
    }

    .s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0e23d0b7-c963-4324-afb1-b2394c657f2e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-0e23d0b7-c963-4324-afb1-b2394c657f2e {
  margin: 0 !important;
  overflow: visible;
}

#s-0e23d0b7-c963-4324-afb1-b2394c657f2e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0e23d0b7-c963-4324-afb1-b2394c657f2e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0e23d0b7-c963-4324-afb1-b2394c657f2e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0e23d0b7-c963-4324-afb1-b2394c657f2e img.shogun-image {
  /* Add background color handling */
  
}

#s-0e23d0b7-c963-4324-afb1-b2394c657f2e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0e23d0b7-c963-4324-afb1-b2394c657f2e .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0e23d0b7-c963-4324-afb1-b2394c657f2e .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0e23d0b7-c963-4324-afb1-b2394c657f2e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0e23d0b7-c963-4324-afb1-b2394c657f2e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0e23d0b7-c963-4324-afb1-b2394c657f2e .shogun-image-content {
  
    justify-content: center;
  
}

.s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image {
  box-sizing: border-box;
}



.s-0e23d0b7-c963-4324-afb1-b2394c657f2e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0e23d0b7-c963-4324-afb1-b2394c657f2e {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image-container {
      position: relative;
    }

    .s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0e23d0b7-c963-4324-afb1-b2394c657f2e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0e23d0b7-c963-4324-afb1-b2394c657f2e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 {
  margin: 0 !important;
  overflow: visible;
}

#s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 img.shogun-image {
  /* Add background color handling */
  
}

#s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image {
  box-sizing: border-box;
}



.s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image-container {
      position: relative;
    }

    .s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 {
  margin: 0 !important;
  overflow: visible;
}

#s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 img.shogun-image {
  /* Add background color handling */
  
}

#s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image {
  box-sizing: border-box;
}



.s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image-container {
      position: relative;
    }

    .s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 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-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 {
  margin: 0 !important;
  overflow: visible;
}

#s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 img.shogun-image {
  /* Add background color handling */
  
}

#s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image {
  box-sizing: border-box;
}



.s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image-container {
      position: relative;
    }

    .s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 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-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 {
  margin: 0 !important;
  overflow: visible;
}

#s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 img.shogun-image {
  /* Add background color handling */
  
}

#s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image {
  box-sizing: border-box;
}



.s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image-container {
      position: relative;
    }

    .s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 {
  margin: 0 !important;
  overflow: visible;
}

#s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 img.shogun-image {
  /* Add background color handling */
  
}

#s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image {
  box-sizing: border-box;
}



.s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image-container {
      position: relative;
    }

    .s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6c895efa-6605-4e9a-9e13-b0bab1c83ad9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-8e0100df-bf45-4a5c-8a72-237a9035893b {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-8e0100df-bf45-4a5c-8a72-237a9035893b {
  margin: 0 !important;
  overflow: visible;
}

#s-8e0100df-bf45-4a5c-8a72-237a9035893b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8e0100df-bf45-4a5c-8a72-237a9035893b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8e0100df-bf45-4a5c-8a72-237a9035893b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8e0100df-bf45-4a5c-8a72-237a9035893b img.shogun-image {
  /* Add background color handling */
  
}

#s-8e0100df-bf45-4a5c-8a72-237a9035893b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8e0100df-bf45-4a5c-8a72-237a9035893b .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-8e0100df-bf45-4a5c-8a72-237a9035893b .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8e0100df-bf45-4a5c-8a72-237a9035893b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8e0100df-bf45-4a5c-8a72-237a9035893b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-8e0100df-bf45-4a5c-8a72-237a9035893b .shogun-image-content {
  
    justify-content: center;
  
}

.s-8e0100df-bf45-4a5c-8a72-237a9035893b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image {
  box-sizing: border-box;
}



.s-8e0100df-bf45-4a5c-8a72-237a9035893b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8e0100df-bf45-4a5c-8a72-237a9035893b {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image-container {
      position: relative;
    }

    .s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8e0100df-bf45-4a5c-8a72-237a9035893b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-8e0100df-bf45-4a5c-8a72-237a9035893b {
  margin: 0 !important;
  overflow: visible;
}

#s-8e0100df-bf45-4a5c-8a72-237a9035893b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8e0100df-bf45-4a5c-8a72-237a9035893b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8e0100df-bf45-4a5c-8a72-237a9035893b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8e0100df-bf45-4a5c-8a72-237a9035893b img.shogun-image {
  /* Add background color handling */
  
}

#s-8e0100df-bf45-4a5c-8a72-237a9035893b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8e0100df-bf45-4a5c-8a72-237a9035893b .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-8e0100df-bf45-4a5c-8a72-237a9035893b .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8e0100df-bf45-4a5c-8a72-237a9035893b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8e0100df-bf45-4a5c-8a72-237a9035893b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-8e0100df-bf45-4a5c-8a72-237a9035893b .shogun-image-content {
  
    justify-content: center;
  
}

.s-8e0100df-bf45-4a5c-8a72-237a9035893b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image {
  box-sizing: border-box;
}



.s-8e0100df-bf45-4a5c-8a72-237a9035893b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8e0100df-bf45-4a5c-8a72-237a9035893b {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image-container {
      position: relative;
    }

    .s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8e0100df-bf45-4a5c-8a72-237a9035893b 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-8e0100df-bf45-4a5c-8a72-237a9035893b {
  margin: 0 !important;
  overflow: visible;
}

#s-8e0100df-bf45-4a5c-8a72-237a9035893b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8e0100df-bf45-4a5c-8a72-237a9035893b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8e0100df-bf45-4a5c-8a72-237a9035893b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8e0100df-bf45-4a5c-8a72-237a9035893b img.shogun-image {
  /* Add background color handling */
  
}

#s-8e0100df-bf45-4a5c-8a72-237a9035893b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8e0100df-bf45-4a5c-8a72-237a9035893b .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-8e0100df-bf45-4a5c-8a72-237a9035893b .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8e0100df-bf45-4a5c-8a72-237a9035893b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8e0100df-bf45-4a5c-8a72-237a9035893b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-8e0100df-bf45-4a5c-8a72-237a9035893b .shogun-image-content {
  
    justify-content: center;
  
}

.s-8e0100df-bf45-4a5c-8a72-237a9035893b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image {
  box-sizing: border-box;
}



.s-8e0100df-bf45-4a5c-8a72-237a9035893b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8e0100df-bf45-4a5c-8a72-237a9035893b {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image-container {
      position: relative;
    }

    .s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8e0100df-bf45-4a5c-8a72-237a9035893b 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-8e0100df-bf45-4a5c-8a72-237a9035893b {
  margin: 0 !important;
  overflow: visible;
}

#s-8e0100df-bf45-4a5c-8a72-237a9035893b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8e0100df-bf45-4a5c-8a72-237a9035893b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8e0100df-bf45-4a5c-8a72-237a9035893b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8e0100df-bf45-4a5c-8a72-237a9035893b img.shogun-image {
  /* Add background color handling */
  
}

#s-8e0100df-bf45-4a5c-8a72-237a9035893b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8e0100df-bf45-4a5c-8a72-237a9035893b .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-8e0100df-bf45-4a5c-8a72-237a9035893b .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8e0100df-bf45-4a5c-8a72-237a9035893b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8e0100df-bf45-4a5c-8a72-237a9035893b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-8e0100df-bf45-4a5c-8a72-237a9035893b .shogun-image-content {
  
    justify-content: center;
  
}

.s-8e0100df-bf45-4a5c-8a72-237a9035893b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image {
  box-sizing: border-box;
}



.s-8e0100df-bf45-4a5c-8a72-237a9035893b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8e0100df-bf45-4a5c-8a72-237a9035893b {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image-container {
      position: relative;
    }

    .s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8e0100df-bf45-4a5c-8a72-237a9035893b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-8e0100df-bf45-4a5c-8a72-237a9035893b {
  margin: 0 !important;
  overflow: visible;
}

#s-8e0100df-bf45-4a5c-8a72-237a9035893b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8e0100df-bf45-4a5c-8a72-237a9035893b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8e0100df-bf45-4a5c-8a72-237a9035893b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8e0100df-bf45-4a5c-8a72-237a9035893b img.shogun-image {
  /* Add background color handling */
  
}

#s-8e0100df-bf45-4a5c-8a72-237a9035893b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8e0100df-bf45-4a5c-8a72-237a9035893b .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-8e0100df-bf45-4a5c-8a72-237a9035893b .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8e0100df-bf45-4a5c-8a72-237a9035893b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8e0100df-bf45-4a5c-8a72-237a9035893b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-8e0100df-bf45-4a5c-8a72-237a9035893b .shogun-image-content {
  
    justify-content: center;
  
}

.s-8e0100df-bf45-4a5c-8a72-237a9035893b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image {
  box-sizing: border-box;
}



.s-8e0100df-bf45-4a5c-8a72-237a9035893b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8e0100df-bf45-4a5c-8a72-237a9035893b {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image-container {
      position: relative;
    }

    .s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8e0100df-bf45-4a5c-8a72-237a9035893b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8e0100df-bf45-4a5c-8a72-237a9035893b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-837eda40-1aa8-477e-84f5-99697476eb03 {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-837eda40-1aa8-477e-84f5-99697476eb03 {
  margin: 0 !important;
  overflow: visible;
}

#s-837eda40-1aa8-477e-84f5-99697476eb03-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-837eda40-1aa8-477e-84f5-99697476eb03 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-837eda40-1aa8-477e-84f5-99697476eb03 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-837eda40-1aa8-477e-84f5-99697476eb03 img.shogun-image {
  /* Add background color handling */
  
}

#s-837eda40-1aa8-477e-84f5-99697476eb03 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-837eda40-1aa8-477e-84f5-99697476eb03 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-837eda40-1aa8-477e-84f5-99697476eb03 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-837eda40-1aa8-477e-84f5-99697476eb03 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-837eda40-1aa8-477e-84f5-99697476eb03 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-837eda40-1aa8-477e-84f5-99697476eb03 .shogun-image-content {
  
    justify-content: center;
  
}

.s-837eda40-1aa8-477e-84f5-99697476eb03.shg-align-container {
  display: flex;
  justify-content: center
}

.s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image {
  box-sizing: border-box;
}



.s-837eda40-1aa8-477e-84f5-99697476eb03 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-837eda40-1aa8-477e-84f5-99697476eb03 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image-container {
      position: relative;
    }

    .s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-837eda40-1aa8-477e-84f5-99697476eb03 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-837eda40-1aa8-477e-84f5-99697476eb03 {
  margin: 0 !important;
  overflow: visible;
}

#s-837eda40-1aa8-477e-84f5-99697476eb03-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-837eda40-1aa8-477e-84f5-99697476eb03 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-837eda40-1aa8-477e-84f5-99697476eb03 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-837eda40-1aa8-477e-84f5-99697476eb03 img.shogun-image {
  /* Add background color handling */
  
}

#s-837eda40-1aa8-477e-84f5-99697476eb03 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-837eda40-1aa8-477e-84f5-99697476eb03 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-837eda40-1aa8-477e-84f5-99697476eb03 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-837eda40-1aa8-477e-84f5-99697476eb03 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-837eda40-1aa8-477e-84f5-99697476eb03 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-837eda40-1aa8-477e-84f5-99697476eb03 .shogun-image-content {
  
    justify-content: center;
  
}

.s-837eda40-1aa8-477e-84f5-99697476eb03.shg-align-container {
  display: flex;
  justify-content: center
}

.s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image {
  box-sizing: border-box;
}



.s-837eda40-1aa8-477e-84f5-99697476eb03 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-837eda40-1aa8-477e-84f5-99697476eb03 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image-container {
      position: relative;
    }

    .s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-837eda40-1aa8-477e-84f5-99697476eb03 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-837eda40-1aa8-477e-84f5-99697476eb03 {
  margin: 0 !important;
  overflow: visible;
}

#s-837eda40-1aa8-477e-84f5-99697476eb03-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-837eda40-1aa8-477e-84f5-99697476eb03 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-837eda40-1aa8-477e-84f5-99697476eb03 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-837eda40-1aa8-477e-84f5-99697476eb03 img.shogun-image {
  /* Add background color handling */
  
}

#s-837eda40-1aa8-477e-84f5-99697476eb03 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-837eda40-1aa8-477e-84f5-99697476eb03 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-837eda40-1aa8-477e-84f5-99697476eb03 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-837eda40-1aa8-477e-84f5-99697476eb03 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-837eda40-1aa8-477e-84f5-99697476eb03 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-837eda40-1aa8-477e-84f5-99697476eb03 .shogun-image-content {
  
    justify-content: center;
  
}

.s-837eda40-1aa8-477e-84f5-99697476eb03.shg-align-container {
  display: flex;
  justify-content: center
}

.s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image {
  box-sizing: border-box;
}



.s-837eda40-1aa8-477e-84f5-99697476eb03 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-837eda40-1aa8-477e-84f5-99697476eb03 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image-container {
      position: relative;
    }

    .s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-837eda40-1aa8-477e-84f5-99697476eb03 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-837eda40-1aa8-477e-84f5-99697476eb03 {
  margin: 0 !important;
  overflow: visible;
}

#s-837eda40-1aa8-477e-84f5-99697476eb03-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-837eda40-1aa8-477e-84f5-99697476eb03 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-837eda40-1aa8-477e-84f5-99697476eb03 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-837eda40-1aa8-477e-84f5-99697476eb03 img.shogun-image {
  /* Add background color handling */
  
}

#s-837eda40-1aa8-477e-84f5-99697476eb03 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-837eda40-1aa8-477e-84f5-99697476eb03 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-837eda40-1aa8-477e-84f5-99697476eb03 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-837eda40-1aa8-477e-84f5-99697476eb03 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-837eda40-1aa8-477e-84f5-99697476eb03 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-837eda40-1aa8-477e-84f5-99697476eb03 .shogun-image-content {
  
    justify-content: center;
  
}

.s-837eda40-1aa8-477e-84f5-99697476eb03.shg-align-container {
  display: flex;
  justify-content: center
}

.s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image {
  box-sizing: border-box;
}



.s-837eda40-1aa8-477e-84f5-99697476eb03 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-837eda40-1aa8-477e-84f5-99697476eb03 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image-container {
      position: relative;
    }

    .s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-837eda40-1aa8-477e-84f5-99697476eb03 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-837eda40-1aa8-477e-84f5-99697476eb03 {
  margin: 0 !important;
  overflow: visible;
}

#s-837eda40-1aa8-477e-84f5-99697476eb03-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-837eda40-1aa8-477e-84f5-99697476eb03 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-837eda40-1aa8-477e-84f5-99697476eb03 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-837eda40-1aa8-477e-84f5-99697476eb03 img.shogun-image {
  /* Add background color handling */
  
}

#s-837eda40-1aa8-477e-84f5-99697476eb03 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-837eda40-1aa8-477e-84f5-99697476eb03 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-837eda40-1aa8-477e-84f5-99697476eb03 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-837eda40-1aa8-477e-84f5-99697476eb03 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-837eda40-1aa8-477e-84f5-99697476eb03 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-837eda40-1aa8-477e-84f5-99697476eb03 .shogun-image-content {
  
    justify-content: center;
  
}

.s-837eda40-1aa8-477e-84f5-99697476eb03.shg-align-container {
  display: flex;
  justify-content: center
}

.s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image {
  box-sizing: border-box;
}



.s-837eda40-1aa8-477e-84f5-99697476eb03 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-837eda40-1aa8-477e-84f5-99697476eb03 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image-container {
      position: relative;
    }

    .s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-837eda40-1aa8-477e-84f5-99697476eb03.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-837eda40-1aa8-477e-84f5-99697476eb03 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-89931f41-0174-401a-9ec2-a65f8742398b {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-89931f41-0174-401a-9ec2-a65f8742398b {
  margin: 0 !important;
  overflow: visible;
}

#s-89931f41-0174-401a-9ec2-a65f8742398b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-89931f41-0174-401a-9ec2-a65f8742398b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-89931f41-0174-401a-9ec2-a65f8742398b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-89931f41-0174-401a-9ec2-a65f8742398b img.shogun-image {
  /* Add background color handling */
  
}

#s-89931f41-0174-401a-9ec2-a65f8742398b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-89931f41-0174-401a-9ec2-a65f8742398b .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-89931f41-0174-401a-9ec2-a65f8742398b .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-89931f41-0174-401a-9ec2-a65f8742398b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-89931f41-0174-401a-9ec2-a65f8742398b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-89931f41-0174-401a-9ec2-a65f8742398b .shogun-image-content {
  
    justify-content: center;
  
}

.s-89931f41-0174-401a-9ec2-a65f8742398b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image {
  box-sizing: border-box;
}



.s-89931f41-0174-401a-9ec2-a65f8742398b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-89931f41-0174-401a-9ec2-a65f8742398b {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image-container {
      position: relative;
    }

    .s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-89931f41-0174-401a-9ec2-a65f8742398b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-89931f41-0174-401a-9ec2-a65f8742398b {
  margin: 0 !important;
  overflow: visible;
}

#s-89931f41-0174-401a-9ec2-a65f8742398b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-89931f41-0174-401a-9ec2-a65f8742398b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-89931f41-0174-401a-9ec2-a65f8742398b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-89931f41-0174-401a-9ec2-a65f8742398b img.shogun-image {
  /* Add background color handling */
  
}

#s-89931f41-0174-401a-9ec2-a65f8742398b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-89931f41-0174-401a-9ec2-a65f8742398b .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-89931f41-0174-401a-9ec2-a65f8742398b .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-89931f41-0174-401a-9ec2-a65f8742398b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-89931f41-0174-401a-9ec2-a65f8742398b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-89931f41-0174-401a-9ec2-a65f8742398b .shogun-image-content {
  
    justify-content: center;
  
}

.s-89931f41-0174-401a-9ec2-a65f8742398b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image {
  box-sizing: border-box;
}



.s-89931f41-0174-401a-9ec2-a65f8742398b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-89931f41-0174-401a-9ec2-a65f8742398b {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image-container {
      position: relative;
    }

    .s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-89931f41-0174-401a-9ec2-a65f8742398b 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-89931f41-0174-401a-9ec2-a65f8742398b {
  margin: 0 !important;
  overflow: visible;
}

#s-89931f41-0174-401a-9ec2-a65f8742398b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-89931f41-0174-401a-9ec2-a65f8742398b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-89931f41-0174-401a-9ec2-a65f8742398b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-89931f41-0174-401a-9ec2-a65f8742398b img.shogun-image {
  /* Add background color handling */
  
}

#s-89931f41-0174-401a-9ec2-a65f8742398b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-89931f41-0174-401a-9ec2-a65f8742398b .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-89931f41-0174-401a-9ec2-a65f8742398b .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-89931f41-0174-401a-9ec2-a65f8742398b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-89931f41-0174-401a-9ec2-a65f8742398b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-89931f41-0174-401a-9ec2-a65f8742398b .shogun-image-content {
  
    justify-content: center;
  
}

.s-89931f41-0174-401a-9ec2-a65f8742398b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image {
  box-sizing: border-box;
}



.s-89931f41-0174-401a-9ec2-a65f8742398b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-89931f41-0174-401a-9ec2-a65f8742398b {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image-container {
      position: relative;
    }

    .s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-89931f41-0174-401a-9ec2-a65f8742398b 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-89931f41-0174-401a-9ec2-a65f8742398b {
  margin: 0 !important;
  overflow: visible;
}

#s-89931f41-0174-401a-9ec2-a65f8742398b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-89931f41-0174-401a-9ec2-a65f8742398b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-89931f41-0174-401a-9ec2-a65f8742398b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-89931f41-0174-401a-9ec2-a65f8742398b img.shogun-image {
  /* Add background color handling */
  
}

#s-89931f41-0174-401a-9ec2-a65f8742398b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-89931f41-0174-401a-9ec2-a65f8742398b .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-89931f41-0174-401a-9ec2-a65f8742398b .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-89931f41-0174-401a-9ec2-a65f8742398b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-89931f41-0174-401a-9ec2-a65f8742398b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-89931f41-0174-401a-9ec2-a65f8742398b .shogun-image-content {
  
    justify-content: center;
  
}

.s-89931f41-0174-401a-9ec2-a65f8742398b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image {
  box-sizing: border-box;
}



.s-89931f41-0174-401a-9ec2-a65f8742398b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-89931f41-0174-401a-9ec2-a65f8742398b {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image-container {
      position: relative;
    }

    .s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-89931f41-0174-401a-9ec2-a65f8742398b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-89931f41-0174-401a-9ec2-a65f8742398b {
  margin: 0 !important;
  overflow: visible;
}

#s-89931f41-0174-401a-9ec2-a65f8742398b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-89931f41-0174-401a-9ec2-a65f8742398b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-89931f41-0174-401a-9ec2-a65f8742398b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-89931f41-0174-401a-9ec2-a65f8742398b img.shogun-image {
  /* Add background color handling */
  
}

#s-89931f41-0174-401a-9ec2-a65f8742398b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-89931f41-0174-401a-9ec2-a65f8742398b .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-89931f41-0174-401a-9ec2-a65f8742398b .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-89931f41-0174-401a-9ec2-a65f8742398b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-89931f41-0174-401a-9ec2-a65f8742398b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-89931f41-0174-401a-9ec2-a65f8742398b .shogun-image-content {
  
    justify-content: center;
  
}

.s-89931f41-0174-401a-9ec2-a65f8742398b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image {
  box-sizing: border-box;
}



.s-89931f41-0174-401a-9ec2-a65f8742398b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-89931f41-0174-401a-9ec2-a65f8742398b {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image-container {
      position: relative;
    }

    .s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-89931f41-0174-401a-9ec2-a65f8742398b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-89931f41-0174-401a-9ec2-a65f8742398b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-0d29562a-106c-4c52-98a3-9af7714d010b {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-0d29562a-106c-4c52-98a3-9af7714d010b {
  margin: 0 !important;
  overflow: visible;
}

#s-0d29562a-106c-4c52-98a3-9af7714d010b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0d29562a-106c-4c52-98a3-9af7714d010b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0d29562a-106c-4c52-98a3-9af7714d010b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0d29562a-106c-4c52-98a3-9af7714d010b img.shogun-image {
  /* Add background color handling */
  
}

#s-0d29562a-106c-4c52-98a3-9af7714d010b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0d29562a-106c-4c52-98a3-9af7714d010b .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0d29562a-106c-4c52-98a3-9af7714d010b .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0d29562a-106c-4c52-98a3-9af7714d010b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0d29562a-106c-4c52-98a3-9af7714d010b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0d29562a-106c-4c52-98a3-9af7714d010b .shogun-image-content {
  
    justify-content: center;
  
}

.s-0d29562a-106c-4c52-98a3-9af7714d010b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image {
  box-sizing: border-box;
}



.s-0d29562a-106c-4c52-98a3-9af7714d010b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0d29562a-106c-4c52-98a3-9af7714d010b {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image-container {
      position: relative;
    }

    .s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0d29562a-106c-4c52-98a3-9af7714d010b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-0d29562a-106c-4c52-98a3-9af7714d010b {
  margin: 0 !important;
  overflow: visible;
}

#s-0d29562a-106c-4c52-98a3-9af7714d010b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0d29562a-106c-4c52-98a3-9af7714d010b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0d29562a-106c-4c52-98a3-9af7714d010b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0d29562a-106c-4c52-98a3-9af7714d010b img.shogun-image {
  /* Add background color handling */
  
}

#s-0d29562a-106c-4c52-98a3-9af7714d010b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0d29562a-106c-4c52-98a3-9af7714d010b .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0d29562a-106c-4c52-98a3-9af7714d010b .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0d29562a-106c-4c52-98a3-9af7714d010b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0d29562a-106c-4c52-98a3-9af7714d010b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0d29562a-106c-4c52-98a3-9af7714d010b .shogun-image-content {
  
    justify-content: center;
  
}

.s-0d29562a-106c-4c52-98a3-9af7714d010b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image {
  box-sizing: border-box;
}



.s-0d29562a-106c-4c52-98a3-9af7714d010b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0d29562a-106c-4c52-98a3-9af7714d010b {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image-container {
      position: relative;
    }

    .s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0d29562a-106c-4c52-98a3-9af7714d010b 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-0d29562a-106c-4c52-98a3-9af7714d010b {
  margin: 0 !important;
  overflow: visible;
}

#s-0d29562a-106c-4c52-98a3-9af7714d010b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0d29562a-106c-4c52-98a3-9af7714d010b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0d29562a-106c-4c52-98a3-9af7714d010b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0d29562a-106c-4c52-98a3-9af7714d010b img.shogun-image {
  /* Add background color handling */
  
}

#s-0d29562a-106c-4c52-98a3-9af7714d010b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0d29562a-106c-4c52-98a3-9af7714d010b .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0d29562a-106c-4c52-98a3-9af7714d010b .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0d29562a-106c-4c52-98a3-9af7714d010b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0d29562a-106c-4c52-98a3-9af7714d010b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0d29562a-106c-4c52-98a3-9af7714d010b .shogun-image-content {
  
    justify-content: center;
  
}

.s-0d29562a-106c-4c52-98a3-9af7714d010b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image {
  box-sizing: border-box;
}



.s-0d29562a-106c-4c52-98a3-9af7714d010b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0d29562a-106c-4c52-98a3-9af7714d010b {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image-container {
      position: relative;
    }

    .s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0d29562a-106c-4c52-98a3-9af7714d010b 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-0d29562a-106c-4c52-98a3-9af7714d010b {
  margin: 0 !important;
  overflow: visible;
}

#s-0d29562a-106c-4c52-98a3-9af7714d010b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0d29562a-106c-4c52-98a3-9af7714d010b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0d29562a-106c-4c52-98a3-9af7714d010b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0d29562a-106c-4c52-98a3-9af7714d010b img.shogun-image {
  /* Add background color handling */
  
}

#s-0d29562a-106c-4c52-98a3-9af7714d010b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0d29562a-106c-4c52-98a3-9af7714d010b .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0d29562a-106c-4c52-98a3-9af7714d010b .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0d29562a-106c-4c52-98a3-9af7714d010b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0d29562a-106c-4c52-98a3-9af7714d010b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0d29562a-106c-4c52-98a3-9af7714d010b .shogun-image-content {
  
    justify-content: center;
  
}

.s-0d29562a-106c-4c52-98a3-9af7714d010b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image {
  box-sizing: border-box;
}



.s-0d29562a-106c-4c52-98a3-9af7714d010b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0d29562a-106c-4c52-98a3-9af7714d010b {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image-container {
      position: relative;
    }

    .s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0d29562a-106c-4c52-98a3-9af7714d010b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-0d29562a-106c-4c52-98a3-9af7714d010b {
  margin: 0 !important;
  overflow: visible;
}

#s-0d29562a-106c-4c52-98a3-9af7714d010b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0d29562a-106c-4c52-98a3-9af7714d010b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0d29562a-106c-4c52-98a3-9af7714d010b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0d29562a-106c-4c52-98a3-9af7714d010b img.shogun-image {
  /* Add background color handling */
  
}

#s-0d29562a-106c-4c52-98a3-9af7714d010b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0d29562a-106c-4c52-98a3-9af7714d010b .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-0d29562a-106c-4c52-98a3-9af7714d010b .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0d29562a-106c-4c52-98a3-9af7714d010b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0d29562a-106c-4c52-98a3-9af7714d010b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-0d29562a-106c-4c52-98a3-9af7714d010b .shogun-image-content {
  
    justify-content: center;
  
}

.s-0d29562a-106c-4c52-98a3-9af7714d010b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image {
  box-sizing: border-box;
}



.s-0d29562a-106c-4c52-98a3-9af7714d010b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0d29562a-106c-4c52-98a3-9af7714d010b {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image-container {
      position: relative;
    }

    .s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0d29562a-106c-4c52-98a3-9af7714d010b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0d29562a-106c-4c52-98a3-9af7714d010b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-de72d2da-7460-4647-963d-94fd7d1d408b {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-de72d2da-7460-4647-963d-94fd7d1d408b {
  margin: 0 !important;
  overflow: visible;
}

#s-de72d2da-7460-4647-963d-94fd7d1d408b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-de72d2da-7460-4647-963d-94fd7d1d408b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-de72d2da-7460-4647-963d-94fd7d1d408b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-de72d2da-7460-4647-963d-94fd7d1d408b img.shogun-image {
  /* Add background color handling */
  
}

#s-de72d2da-7460-4647-963d-94fd7d1d408b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-de72d2da-7460-4647-963d-94fd7d1d408b .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-de72d2da-7460-4647-963d-94fd7d1d408b .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-de72d2da-7460-4647-963d-94fd7d1d408b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-de72d2da-7460-4647-963d-94fd7d1d408b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-de72d2da-7460-4647-963d-94fd7d1d408b .shogun-image-content {
  
    justify-content: center;
  
}

.s-de72d2da-7460-4647-963d-94fd7d1d408b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image {
  box-sizing: border-box;
}



.s-de72d2da-7460-4647-963d-94fd7d1d408b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-de72d2da-7460-4647-963d-94fd7d1d408b {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image-container {
      position: relative;
    }

    .s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-de72d2da-7460-4647-963d-94fd7d1d408b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-de72d2da-7460-4647-963d-94fd7d1d408b {
  margin: 0 !important;
  overflow: visible;
}

#s-de72d2da-7460-4647-963d-94fd7d1d408b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-de72d2da-7460-4647-963d-94fd7d1d408b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-de72d2da-7460-4647-963d-94fd7d1d408b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-de72d2da-7460-4647-963d-94fd7d1d408b img.shogun-image {
  /* Add background color handling */
  
}

#s-de72d2da-7460-4647-963d-94fd7d1d408b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-de72d2da-7460-4647-963d-94fd7d1d408b .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-de72d2da-7460-4647-963d-94fd7d1d408b .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-de72d2da-7460-4647-963d-94fd7d1d408b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-de72d2da-7460-4647-963d-94fd7d1d408b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-de72d2da-7460-4647-963d-94fd7d1d408b .shogun-image-content {
  
    justify-content: center;
  
}

.s-de72d2da-7460-4647-963d-94fd7d1d408b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image {
  box-sizing: border-box;
}



.s-de72d2da-7460-4647-963d-94fd7d1d408b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-de72d2da-7460-4647-963d-94fd7d1d408b {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image-container {
      position: relative;
    }

    .s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-de72d2da-7460-4647-963d-94fd7d1d408b 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-de72d2da-7460-4647-963d-94fd7d1d408b {
  margin: 0 !important;
  overflow: visible;
}

#s-de72d2da-7460-4647-963d-94fd7d1d408b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-de72d2da-7460-4647-963d-94fd7d1d408b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-de72d2da-7460-4647-963d-94fd7d1d408b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-de72d2da-7460-4647-963d-94fd7d1d408b img.shogun-image {
  /* Add background color handling */
  
}

#s-de72d2da-7460-4647-963d-94fd7d1d408b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-de72d2da-7460-4647-963d-94fd7d1d408b .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-de72d2da-7460-4647-963d-94fd7d1d408b .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-de72d2da-7460-4647-963d-94fd7d1d408b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-de72d2da-7460-4647-963d-94fd7d1d408b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-de72d2da-7460-4647-963d-94fd7d1d408b .shogun-image-content {
  
    justify-content: center;
  
}

.s-de72d2da-7460-4647-963d-94fd7d1d408b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image {
  box-sizing: border-box;
}



.s-de72d2da-7460-4647-963d-94fd7d1d408b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-de72d2da-7460-4647-963d-94fd7d1d408b {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image-container {
      position: relative;
    }

    .s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-de72d2da-7460-4647-963d-94fd7d1d408b 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-de72d2da-7460-4647-963d-94fd7d1d408b {
  margin: 0 !important;
  overflow: visible;
}

#s-de72d2da-7460-4647-963d-94fd7d1d408b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-de72d2da-7460-4647-963d-94fd7d1d408b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-de72d2da-7460-4647-963d-94fd7d1d408b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-de72d2da-7460-4647-963d-94fd7d1d408b img.shogun-image {
  /* Add background color handling */
  
}

#s-de72d2da-7460-4647-963d-94fd7d1d408b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-de72d2da-7460-4647-963d-94fd7d1d408b .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-de72d2da-7460-4647-963d-94fd7d1d408b .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-de72d2da-7460-4647-963d-94fd7d1d408b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-de72d2da-7460-4647-963d-94fd7d1d408b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-de72d2da-7460-4647-963d-94fd7d1d408b .shogun-image-content {
  
    justify-content: center;
  
}

.s-de72d2da-7460-4647-963d-94fd7d1d408b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image {
  box-sizing: border-box;
}



.s-de72d2da-7460-4647-963d-94fd7d1d408b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-de72d2da-7460-4647-963d-94fd7d1d408b {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image-container {
      position: relative;
    }

    .s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-de72d2da-7460-4647-963d-94fd7d1d408b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-de72d2da-7460-4647-963d-94fd7d1d408b {
  margin: 0 !important;
  overflow: visible;
}

#s-de72d2da-7460-4647-963d-94fd7d1d408b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-de72d2da-7460-4647-963d-94fd7d1d408b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-de72d2da-7460-4647-963d-94fd7d1d408b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-de72d2da-7460-4647-963d-94fd7d1d408b img.shogun-image {
  /* Add background color handling */
  
}

#s-de72d2da-7460-4647-963d-94fd7d1d408b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-de72d2da-7460-4647-963d-94fd7d1d408b .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-de72d2da-7460-4647-963d-94fd7d1d408b .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-de72d2da-7460-4647-963d-94fd7d1d408b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-de72d2da-7460-4647-963d-94fd7d1d408b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-de72d2da-7460-4647-963d-94fd7d1d408b .shogun-image-content {
  
    justify-content: center;
  
}

.s-de72d2da-7460-4647-963d-94fd7d1d408b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image {
  box-sizing: border-box;
}



.s-de72d2da-7460-4647-963d-94fd7d1d408b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-de72d2da-7460-4647-963d-94fd7d1d408b {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image-container {
      position: relative;
    }

    .s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-de72d2da-7460-4647-963d-94fd7d1d408b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-de72d2da-7460-4647-963d-94fd7d1d408b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
@media (min-width: 0px) {
[id="s-a369c51f-06cb-4caa-9b4c-ac1f662fb7d8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a369c51f-06cb-4caa-9b4c-ac1f662fb7d8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a369c51f-06cb-4caa-9b4c-ac1f662fb7d8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a369c51f-06cb-4caa-9b4c-ac1f662fb7d8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-03bac751-637b-4671-9e38-bdcd102a7466"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-03bac751-637b-4671-9e38-bdcd102a7466"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-03bac751-637b-4671-9e38-bdcd102a7466"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-03bac751-637b-4671-9e38-bdcd102a7466"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-03bac751-637b-4671-9e38-bdcd102a7466"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-03bac751-637b-4671-9e38-bdcd102a7466"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-03bac751-637b-4671-9e38-bdcd102a7466"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-65fa799a-d2df-4f9d-888b-29694d4579b6 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-a4616ca6-515c-404c-aa84-77180190c6e7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a4616ca6-515c-404c-aa84-77180190c6e7"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a4616ca6-515c-404c-aa84-77180190c6e7"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a4616ca6-515c-404c-aa84-77180190c6e7"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a4616ca6-515c-404c-aa84-77180190c6e7"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a4616ca6-515c-404c-aa84-77180190c6e7"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a4616ca6-515c-404c-aa84-77180190c6e7"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-c9c48a0a-d753-49ff-801a-ce1376deb03b {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-b61eb88d-ac23-43ed-99df-d60e0b75bf24"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b61eb88d-ac23-43ed-99df-d60e0b75bf24"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b61eb88d-ac23-43ed-99df-d60e0b75bf24"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b61eb88d-ac23-43ed-99df-d60e0b75bf24"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-d98b3622-082c-48d0-97cc-ef59be9e18d7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d98b3622-082c-48d0-97cc-ef59be9e18d7"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d98b3622-082c-48d0-97cc-ef59be9e18d7"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d98b3622-082c-48d0-97cc-ef59be9e18d7"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d98b3622-082c-48d0-97cc-ef59be9e18d7"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d98b3622-082c-48d0-97cc-ef59be9e18d7"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d98b3622-082c-48d0-97cc-ef59be9e18d7"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-e3ab93c8-8d66-440f-adc4-0050fc26347e {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-3bf4ee1d-5e66-47e9-89b5-713b456c2611"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3bf4ee1d-5e66-47e9-89b5-713b456c2611"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3bf4ee1d-5e66-47e9-89b5-713b456c2611"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3bf4ee1d-5e66-47e9-89b5-713b456c2611"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3bf4ee1d-5e66-47e9-89b5-713b456c2611"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3bf4ee1d-5e66-47e9-89b5-713b456c2611"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3bf4ee1d-5e66-47e9-89b5-713b456c2611"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-ea203517-c61a-407c-8b42-9939bc02555b {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-014d514b-ac7a-4f17-9d7d-b514cbe7ffa4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-014d514b-ac7a-4f17-9d7d-b514cbe7ffa4"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-014d514b-ac7a-4f17-9d7d-b514cbe7ffa4"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-014d514b-ac7a-4f17-9d7d-b514cbe7ffa4"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-4d5beab9-9dca-4025-ae5d-abadaba6318f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4d5beab9-9dca-4025-ae5d-abadaba6318f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4d5beab9-9dca-4025-ae5d-abadaba6318f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4d5beab9-9dca-4025-ae5d-abadaba6318f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4d5beab9-9dca-4025-ae5d-abadaba6318f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4d5beab9-9dca-4025-ae5d-abadaba6318f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4d5beab9-9dca-4025-ae5d-abadaba6318f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-30f6045b-e793-4d75-b64d-eb2dd70c1753 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-e9a191cb-fded-4de4-9d81-3873803e28b5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e9a191cb-fded-4de4-9d81-3873803e28b5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e9a191cb-fded-4de4-9d81-3873803e28b5"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e9a191cb-fded-4de4-9d81-3873803e28b5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e9a191cb-fded-4de4-9d81-3873803e28b5"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e9a191cb-fded-4de4-9d81-3873803e28b5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e9a191cb-fded-4de4-9d81-3873803e28b5"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-97d5e41a-eb92-4247-8fe3-e7e523f3bcb5 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-11ccd3e2-586f-47e8-b25d-3a7a42c1f163"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-11ccd3e2-586f-47e8-b25d-3a7a42c1f163"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-11ccd3e2-586f-47e8-b25d-3a7a42c1f163"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-11ccd3e2-586f-47e8-b25d-3a7a42c1f163"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-2ab869b4-0d20-412f-9734-fd9f0fafc270"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2ab869b4-0d20-412f-9734-fd9f0fafc270"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2ab869b4-0d20-412f-9734-fd9f0fafc270"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2ab869b4-0d20-412f-9734-fd9f0fafc270"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2ab869b4-0d20-412f-9734-fd9f0fafc270"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2ab869b4-0d20-412f-9734-fd9f0fafc270"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2ab869b4-0d20-412f-9734-fd9f0fafc270"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-4315b148-59b5-4016-aeb7-5a32945cb3a0 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-a3bea1b3-5236-4b2a-9424-d0458d1b6b40"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a3bea1b3-5236-4b2a-9424-d0458d1b6b40"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a3bea1b3-5236-4b2a-9424-d0458d1b6b40"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a3bea1b3-5236-4b2a-9424-d0458d1b6b40"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a3bea1b3-5236-4b2a-9424-d0458d1b6b40"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a3bea1b3-5236-4b2a-9424-d0458d1b6b40"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a3bea1b3-5236-4b2a-9424-d0458d1b6b40"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-afbcdd74-eb79-4ba7-bfee-f71ce5528c1a {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-6e8e2eee-64a7-4af7-aeab-73dba3632bd7 {
  margin-top: -8px;
margin-bottom: -8px;
min-height: 50px;
}








#s-6e8e2eee-64a7-4af7-aeab-73dba3632bd7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6e8e2eee-64a7-4af7-aeab-73dba3632bd7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7b77dec5-1f05-4422-ab38-5c0eb00d32c0 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
}

#s-7b77dec5-1f05-4422-ab38-5c0eb00d32c0 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-7b77dec5-1f05-4422-ab38-5c0eb00d32c0 .shg-sld-nav-button.shg-sld-left,
#s-7b77dec5-1f05-4422-ab38-5c0eb00d32c0 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-12d59a5b-6e90-4eec-8d70-7367c21ff710 {
  margin-left: auto;
margin-right: auto;
max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-12d59a5b-6e90-4eec-8d70-7367c21ff710 {
  margin: 0 !important;
  overflow: visible;
}

#s-12d59a5b-6e90-4eec-8d70-7367c21ff710-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-12d59a5b-6e90-4eec-8d70-7367c21ff710 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-12d59a5b-6e90-4eec-8d70-7367c21ff710 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-12d59a5b-6e90-4eec-8d70-7367c21ff710 img.shogun-image {
  /* Add background color handling */
  
}

#s-12d59a5b-6e90-4eec-8d70-7367c21ff710 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-12d59a5b-6e90-4eec-8d70-7367c21ff710 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-12d59a5b-6e90-4eec-8d70-7367c21ff710 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-12d59a5b-6e90-4eec-8d70-7367c21ff710 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-12d59a5b-6e90-4eec-8d70-7367c21ff710 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-12d59a5b-6e90-4eec-8d70-7367c21ff710 .shogun-image-content {
  
    justify-content: center;
  
}

.s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shg-align-container {
  display: flex;
  justify-content: center
}

.s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image {
  box-sizing: border-box;
}



.s-12d59a5b-6e90-4eec-8d70-7367c21ff710 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-12d59a5b-6e90-4eec-8d70-7367c21ff710 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image-container {
      position: relative;
    }

    .s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-12d59a5b-6e90-4eec-8d70-7367c21ff710 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-12d59a5b-6e90-4eec-8d70-7367c21ff710 {
  margin: 0 !important;
  overflow: visible;
}

#s-12d59a5b-6e90-4eec-8d70-7367c21ff710-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-12d59a5b-6e90-4eec-8d70-7367c21ff710 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-12d59a5b-6e90-4eec-8d70-7367c21ff710 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-12d59a5b-6e90-4eec-8d70-7367c21ff710 img.shogun-image {
  /* Add background color handling */
  
}

#s-12d59a5b-6e90-4eec-8d70-7367c21ff710 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-12d59a5b-6e90-4eec-8d70-7367c21ff710 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-12d59a5b-6e90-4eec-8d70-7367c21ff710 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-12d59a5b-6e90-4eec-8d70-7367c21ff710 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-12d59a5b-6e90-4eec-8d70-7367c21ff710 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-12d59a5b-6e90-4eec-8d70-7367c21ff710 .shogun-image-content {
  
    justify-content: center;
  
}

.s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shg-align-container {
  display: flex;
  justify-content: center
}

.s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image {
  box-sizing: border-box;
}



.s-12d59a5b-6e90-4eec-8d70-7367c21ff710 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-12d59a5b-6e90-4eec-8d70-7367c21ff710 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image-container {
      position: relative;
    }

    .s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-12d59a5b-6e90-4eec-8d70-7367c21ff710 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-12d59a5b-6e90-4eec-8d70-7367c21ff710 {
  margin: 0 !important;
  overflow: visible;
}

#s-12d59a5b-6e90-4eec-8d70-7367c21ff710-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-12d59a5b-6e90-4eec-8d70-7367c21ff710 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-12d59a5b-6e90-4eec-8d70-7367c21ff710 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-12d59a5b-6e90-4eec-8d70-7367c21ff710 img.shogun-image {
  /* Add background color handling */
  
}

#s-12d59a5b-6e90-4eec-8d70-7367c21ff710 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-12d59a5b-6e90-4eec-8d70-7367c21ff710 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-12d59a5b-6e90-4eec-8d70-7367c21ff710 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-12d59a5b-6e90-4eec-8d70-7367c21ff710 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-12d59a5b-6e90-4eec-8d70-7367c21ff710 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-12d59a5b-6e90-4eec-8d70-7367c21ff710 .shogun-image-content {
  
    justify-content: center;
  
}

.s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shg-align-container {
  display: flex;
  justify-content: center
}

.s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image {
  box-sizing: border-box;
}



.s-12d59a5b-6e90-4eec-8d70-7367c21ff710 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-12d59a5b-6e90-4eec-8d70-7367c21ff710 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image-container {
      position: relative;
    }

    .s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-12d59a5b-6e90-4eec-8d70-7367c21ff710 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-12d59a5b-6e90-4eec-8d70-7367c21ff710 {
  margin: 0 !important;
  overflow: visible;
}

#s-12d59a5b-6e90-4eec-8d70-7367c21ff710-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-12d59a5b-6e90-4eec-8d70-7367c21ff710 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-12d59a5b-6e90-4eec-8d70-7367c21ff710 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-12d59a5b-6e90-4eec-8d70-7367c21ff710 img.shogun-image {
  /* Add background color handling */
  
}

#s-12d59a5b-6e90-4eec-8d70-7367c21ff710 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-12d59a5b-6e90-4eec-8d70-7367c21ff710 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-12d59a5b-6e90-4eec-8d70-7367c21ff710 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-12d59a5b-6e90-4eec-8d70-7367c21ff710 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-12d59a5b-6e90-4eec-8d70-7367c21ff710 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-12d59a5b-6e90-4eec-8d70-7367c21ff710 .shogun-image-content {
  
    justify-content: center;
  
}

.s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shg-align-container {
  display: flex;
  justify-content: center
}

.s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image {
  box-sizing: border-box;
}



.s-12d59a5b-6e90-4eec-8d70-7367c21ff710 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-12d59a5b-6e90-4eec-8d70-7367c21ff710 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image-container {
      position: relative;
    }

    .s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-12d59a5b-6e90-4eec-8d70-7367c21ff710 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-12d59a5b-6e90-4eec-8d70-7367c21ff710 {
  margin: 0 !important;
  overflow: visible;
}

#s-12d59a5b-6e90-4eec-8d70-7367c21ff710-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-12d59a5b-6e90-4eec-8d70-7367c21ff710 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-12d59a5b-6e90-4eec-8d70-7367c21ff710 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-12d59a5b-6e90-4eec-8d70-7367c21ff710 img.shogun-image {
  /* Add background color handling */
  
}

#s-12d59a5b-6e90-4eec-8d70-7367c21ff710 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-12d59a5b-6e90-4eec-8d70-7367c21ff710 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-12d59a5b-6e90-4eec-8d70-7367c21ff710 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-12d59a5b-6e90-4eec-8d70-7367c21ff710 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-12d59a5b-6e90-4eec-8d70-7367c21ff710 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-12d59a5b-6e90-4eec-8d70-7367c21ff710 .shogun-image-content {
  
    justify-content: center;
  
}

.s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shg-align-container {
  display: flex;
  justify-content: center
}

.s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image {
  box-sizing: border-box;
}



.s-12d59a5b-6e90-4eec-8d70-7367c21ff710 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-12d59a5b-6e90-4eec-8d70-7367c21ff710 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image-container {
      position: relative;
    }

    .s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-12d59a5b-6e90-4eec-8d70-7367c21ff710.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-12d59a5b-6e90-4eec-8d70-7367c21ff710 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c {
  margin-left: auto;
margin-right: auto;
max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c {
  margin: 0 !important;
  overflow: visible;
}

#s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c img.shogun-image {
  /* Add background color handling */
  
}

#s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c .shogun-image-content {
  
    justify-content: center;
  
}

.s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image {
  box-sizing: border-box;
}



.s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image-container {
      position: relative;
    }

    .s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c {
  margin: 0 !important;
  overflow: visible;
}

#s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c img.shogun-image {
  /* Add background color handling */
  
}

#s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c .shogun-image-content {
  
    justify-content: center;
  
}

.s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image {
  box-sizing: border-box;
}



.s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image-container {
      position: relative;
    }

    .s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c 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-700cdd46-a0e7-4171-9ae4-05c1ec1da57c {
  margin: 0 !important;
  overflow: visible;
}

#s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c img.shogun-image {
  /* Add background color handling */
  
}

#s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c .shogun-image-content {
  
    justify-content: center;
  
}

.s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image {
  box-sizing: border-box;
}



.s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image-container {
      position: relative;
    }

    .s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c 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-700cdd46-a0e7-4171-9ae4-05c1ec1da57c {
  margin: 0 !important;
  overflow: visible;
}

#s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c img.shogun-image {
  /* Add background color handling */
  
}

#s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c .shogun-image-content {
  
    justify-content: center;
  
}

.s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image {
  box-sizing: border-box;
}



.s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image-container {
      position: relative;
    }

    .s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c {
  margin: 0 !important;
  overflow: visible;
}

#s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c img.shogun-image {
  /* Add background color handling */
  
}

#s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c .shogun-image-content {
  
    justify-content: center;
  
}

.s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image {
  box-sizing: border-box;
}



.s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image-container {
      position: relative;
    }

    .s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-700cdd46-a0e7-4171-9ae4-05c1ec1da57c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-461136ba-08ba-4c41-ba99-31a67719ee13 {
  margin-left: auto;
margin-right: auto;
max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-461136ba-08ba-4c41-ba99-31a67719ee13 {
  margin: 0 !important;
  overflow: visible;
}

#s-461136ba-08ba-4c41-ba99-31a67719ee13-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-461136ba-08ba-4c41-ba99-31a67719ee13 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-461136ba-08ba-4c41-ba99-31a67719ee13 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-461136ba-08ba-4c41-ba99-31a67719ee13 img.shogun-image {
  /* Add background color handling */
  
}

#s-461136ba-08ba-4c41-ba99-31a67719ee13 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-461136ba-08ba-4c41-ba99-31a67719ee13 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-461136ba-08ba-4c41-ba99-31a67719ee13 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-461136ba-08ba-4c41-ba99-31a67719ee13 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-461136ba-08ba-4c41-ba99-31a67719ee13 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-461136ba-08ba-4c41-ba99-31a67719ee13 .shogun-image-content {
  
    justify-content: center;
  
}

.s-461136ba-08ba-4c41-ba99-31a67719ee13.shg-align-container {
  display: flex;
  justify-content: center
}

.s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image {
  box-sizing: border-box;
}



.s-461136ba-08ba-4c41-ba99-31a67719ee13 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-461136ba-08ba-4c41-ba99-31a67719ee13 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image-container {
      position: relative;
    }

    .s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-461136ba-08ba-4c41-ba99-31a67719ee13 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-461136ba-08ba-4c41-ba99-31a67719ee13 {
  margin: 0 !important;
  overflow: visible;
}

#s-461136ba-08ba-4c41-ba99-31a67719ee13-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-461136ba-08ba-4c41-ba99-31a67719ee13 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-461136ba-08ba-4c41-ba99-31a67719ee13 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-461136ba-08ba-4c41-ba99-31a67719ee13 img.shogun-image {
  /* Add background color handling */
  
}

#s-461136ba-08ba-4c41-ba99-31a67719ee13 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-461136ba-08ba-4c41-ba99-31a67719ee13 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-461136ba-08ba-4c41-ba99-31a67719ee13 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-461136ba-08ba-4c41-ba99-31a67719ee13 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-461136ba-08ba-4c41-ba99-31a67719ee13 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-461136ba-08ba-4c41-ba99-31a67719ee13 .shogun-image-content {
  
    justify-content: center;
  
}

.s-461136ba-08ba-4c41-ba99-31a67719ee13.shg-align-container {
  display: flex;
  justify-content: center
}

.s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image {
  box-sizing: border-box;
}



.s-461136ba-08ba-4c41-ba99-31a67719ee13 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-461136ba-08ba-4c41-ba99-31a67719ee13 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image-container {
      position: relative;
    }

    .s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-461136ba-08ba-4c41-ba99-31a67719ee13 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-461136ba-08ba-4c41-ba99-31a67719ee13 {
  margin: 0 !important;
  overflow: visible;
}

#s-461136ba-08ba-4c41-ba99-31a67719ee13-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-461136ba-08ba-4c41-ba99-31a67719ee13 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-461136ba-08ba-4c41-ba99-31a67719ee13 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-461136ba-08ba-4c41-ba99-31a67719ee13 img.shogun-image {
  /* Add background color handling */
  
}

#s-461136ba-08ba-4c41-ba99-31a67719ee13 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-461136ba-08ba-4c41-ba99-31a67719ee13 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-461136ba-08ba-4c41-ba99-31a67719ee13 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-461136ba-08ba-4c41-ba99-31a67719ee13 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-461136ba-08ba-4c41-ba99-31a67719ee13 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-461136ba-08ba-4c41-ba99-31a67719ee13 .shogun-image-content {
  
    justify-content: center;
  
}

.s-461136ba-08ba-4c41-ba99-31a67719ee13.shg-align-container {
  display: flex;
  justify-content: center
}

.s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image {
  box-sizing: border-box;
}



.s-461136ba-08ba-4c41-ba99-31a67719ee13 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-461136ba-08ba-4c41-ba99-31a67719ee13 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image-container {
      position: relative;
    }

    .s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-461136ba-08ba-4c41-ba99-31a67719ee13 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-461136ba-08ba-4c41-ba99-31a67719ee13 {
  margin: 0 !important;
  overflow: visible;
}

#s-461136ba-08ba-4c41-ba99-31a67719ee13-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-461136ba-08ba-4c41-ba99-31a67719ee13 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-461136ba-08ba-4c41-ba99-31a67719ee13 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-461136ba-08ba-4c41-ba99-31a67719ee13 img.shogun-image {
  /* Add background color handling */
  
}

#s-461136ba-08ba-4c41-ba99-31a67719ee13 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-461136ba-08ba-4c41-ba99-31a67719ee13 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-461136ba-08ba-4c41-ba99-31a67719ee13 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-461136ba-08ba-4c41-ba99-31a67719ee13 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-461136ba-08ba-4c41-ba99-31a67719ee13 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-461136ba-08ba-4c41-ba99-31a67719ee13 .shogun-image-content {
  
    justify-content: center;
  
}

.s-461136ba-08ba-4c41-ba99-31a67719ee13.shg-align-container {
  display: flex;
  justify-content: center
}

.s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image {
  box-sizing: border-box;
}



.s-461136ba-08ba-4c41-ba99-31a67719ee13 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-461136ba-08ba-4c41-ba99-31a67719ee13 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image-container {
      position: relative;
    }

    .s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-461136ba-08ba-4c41-ba99-31a67719ee13 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-461136ba-08ba-4c41-ba99-31a67719ee13 {
  margin: 0 !important;
  overflow: visible;
}

#s-461136ba-08ba-4c41-ba99-31a67719ee13-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-461136ba-08ba-4c41-ba99-31a67719ee13 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-461136ba-08ba-4c41-ba99-31a67719ee13 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-461136ba-08ba-4c41-ba99-31a67719ee13 img.shogun-image {
  /* Add background color handling */
  
}

#s-461136ba-08ba-4c41-ba99-31a67719ee13 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-461136ba-08ba-4c41-ba99-31a67719ee13 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-461136ba-08ba-4c41-ba99-31a67719ee13 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-461136ba-08ba-4c41-ba99-31a67719ee13 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-461136ba-08ba-4c41-ba99-31a67719ee13 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-461136ba-08ba-4c41-ba99-31a67719ee13 .shogun-image-content {
  
    justify-content: center;
  
}

.s-461136ba-08ba-4c41-ba99-31a67719ee13.shg-align-container {
  display: flex;
  justify-content: center
}

.s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image {
  box-sizing: border-box;
}



.s-461136ba-08ba-4c41-ba99-31a67719ee13 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-461136ba-08ba-4c41-ba99-31a67719ee13 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image-container {
      position: relative;
    }

    .s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-461136ba-08ba-4c41-ba99-31a67719ee13.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-461136ba-08ba-4c41-ba99-31a67719ee13 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-4921c18b-6b5e-426b-a81f-aea3c71ea16a {
  margin-top: -8px;
margin-bottom: -8px;
min-height: 50px;
}








#s-4921c18b-6b5e-426b-a81f-aea3c71ea16a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4921c18b-6b5e-426b-a81f-aea3c71ea16a.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-bfd51c1f-1529-433d-a9eb-36edd7276103"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bfd51c1f-1529-433d-a9eb-36edd7276103"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-bfd51c1f-1529-433d-a9eb-36edd7276103"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-bfd51c1f-1529-433d-a9eb-36edd7276103"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-e651d953-4864-410d-a125-aa4752c066f8 {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-e651d953-4864-410d-a125-aa4752c066f8 {
  margin: 0 !important;
  overflow: visible;
}

#s-e651d953-4864-410d-a125-aa4752c066f8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e651d953-4864-410d-a125-aa4752c066f8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e651d953-4864-410d-a125-aa4752c066f8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e651d953-4864-410d-a125-aa4752c066f8 img.shogun-image {
  /* Add background color handling */
  
}

#s-e651d953-4864-410d-a125-aa4752c066f8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e651d953-4864-410d-a125-aa4752c066f8 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-e651d953-4864-410d-a125-aa4752c066f8 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e651d953-4864-410d-a125-aa4752c066f8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e651d953-4864-410d-a125-aa4752c066f8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-e651d953-4864-410d-a125-aa4752c066f8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e651d953-4864-410d-a125-aa4752c066f8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image {
  box-sizing: border-box;
}



.s-e651d953-4864-410d-a125-aa4752c066f8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e651d953-4864-410d-a125-aa4752c066f8 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image-container {
      position: relative;
    }

    .s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e651d953-4864-410d-a125-aa4752c066f8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-e651d953-4864-410d-a125-aa4752c066f8 {
  margin: 0 !important;
  overflow: visible;
}

#s-e651d953-4864-410d-a125-aa4752c066f8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e651d953-4864-410d-a125-aa4752c066f8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e651d953-4864-410d-a125-aa4752c066f8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e651d953-4864-410d-a125-aa4752c066f8 img.shogun-image {
  /* Add background color handling */
  
}

#s-e651d953-4864-410d-a125-aa4752c066f8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e651d953-4864-410d-a125-aa4752c066f8 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-e651d953-4864-410d-a125-aa4752c066f8 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e651d953-4864-410d-a125-aa4752c066f8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e651d953-4864-410d-a125-aa4752c066f8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-e651d953-4864-410d-a125-aa4752c066f8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e651d953-4864-410d-a125-aa4752c066f8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image {
  box-sizing: border-box;
}



.s-e651d953-4864-410d-a125-aa4752c066f8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e651d953-4864-410d-a125-aa4752c066f8 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image-container {
      position: relative;
    }

    .s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e651d953-4864-410d-a125-aa4752c066f8 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-e651d953-4864-410d-a125-aa4752c066f8 {
  margin: 0 !important;
  overflow: visible;
}

#s-e651d953-4864-410d-a125-aa4752c066f8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e651d953-4864-410d-a125-aa4752c066f8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e651d953-4864-410d-a125-aa4752c066f8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e651d953-4864-410d-a125-aa4752c066f8 img.shogun-image {
  /* Add background color handling */
  
}

#s-e651d953-4864-410d-a125-aa4752c066f8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e651d953-4864-410d-a125-aa4752c066f8 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-e651d953-4864-410d-a125-aa4752c066f8 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e651d953-4864-410d-a125-aa4752c066f8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e651d953-4864-410d-a125-aa4752c066f8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-e651d953-4864-410d-a125-aa4752c066f8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e651d953-4864-410d-a125-aa4752c066f8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image {
  box-sizing: border-box;
}



.s-e651d953-4864-410d-a125-aa4752c066f8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e651d953-4864-410d-a125-aa4752c066f8 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image-container {
      position: relative;
    }

    .s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e651d953-4864-410d-a125-aa4752c066f8 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-e651d953-4864-410d-a125-aa4752c066f8 {
  margin: 0 !important;
  overflow: visible;
}

#s-e651d953-4864-410d-a125-aa4752c066f8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e651d953-4864-410d-a125-aa4752c066f8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e651d953-4864-410d-a125-aa4752c066f8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e651d953-4864-410d-a125-aa4752c066f8 img.shogun-image {
  /* Add background color handling */
  
}

#s-e651d953-4864-410d-a125-aa4752c066f8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e651d953-4864-410d-a125-aa4752c066f8 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-e651d953-4864-410d-a125-aa4752c066f8 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e651d953-4864-410d-a125-aa4752c066f8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e651d953-4864-410d-a125-aa4752c066f8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-e651d953-4864-410d-a125-aa4752c066f8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e651d953-4864-410d-a125-aa4752c066f8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image {
  box-sizing: border-box;
}



.s-e651d953-4864-410d-a125-aa4752c066f8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e651d953-4864-410d-a125-aa4752c066f8 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image-container {
      position: relative;
    }

    .s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e651d953-4864-410d-a125-aa4752c066f8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-e651d953-4864-410d-a125-aa4752c066f8 {
  margin: 0 !important;
  overflow: visible;
}

#s-e651d953-4864-410d-a125-aa4752c066f8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e651d953-4864-410d-a125-aa4752c066f8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e651d953-4864-410d-a125-aa4752c066f8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e651d953-4864-410d-a125-aa4752c066f8 img.shogun-image {
  /* Add background color handling */
  
}

#s-e651d953-4864-410d-a125-aa4752c066f8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e651d953-4864-410d-a125-aa4752c066f8 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-e651d953-4864-410d-a125-aa4752c066f8 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e651d953-4864-410d-a125-aa4752c066f8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e651d953-4864-410d-a125-aa4752c066f8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-e651d953-4864-410d-a125-aa4752c066f8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e651d953-4864-410d-a125-aa4752c066f8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image {
  box-sizing: border-box;
}



.s-e651d953-4864-410d-a125-aa4752c066f8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e651d953-4864-410d-a125-aa4752c066f8 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image-container {
      position: relative;
    }

    .s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e651d953-4864-410d-a125-aa4752c066f8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e651d953-4864-410d-a125-aa4752c066f8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-829410a2-98dc-489c-aac7-25533a6524ab {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-829410a2-98dc-489c-aac7-25533a6524ab {
  margin: 0 !important;
  overflow: visible;
}

#s-829410a2-98dc-489c-aac7-25533a6524ab-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-829410a2-98dc-489c-aac7-25533a6524ab {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-829410a2-98dc-489c-aac7-25533a6524ab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-829410a2-98dc-489c-aac7-25533a6524ab img.shogun-image {
  /* Add background color handling */
  
}

#s-829410a2-98dc-489c-aac7-25533a6524ab img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-829410a2-98dc-489c-aac7-25533a6524ab .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-829410a2-98dc-489c-aac7-25533a6524ab .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-829410a2-98dc-489c-aac7-25533a6524ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-829410a2-98dc-489c-aac7-25533a6524ab img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-829410a2-98dc-489c-aac7-25533a6524ab .shogun-image-content {
  
    justify-content: center;
  
}

.s-829410a2-98dc-489c-aac7-25533a6524ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image {
  box-sizing: border-box;
}



.s-829410a2-98dc-489c-aac7-25533a6524ab img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-829410a2-98dc-489c-aac7-25533a6524ab {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image-container {
      position: relative;
    }

    .s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-829410a2-98dc-489c-aac7-25533a6524ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-829410a2-98dc-489c-aac7-25533a6524ab {
  margin: 0 !important;
  overflow: visible;
}

#s-829410a2-98dc-489c-aac7-25533a6524ab-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-829410a2-98dc-489c-aac7-25533a6524ab {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-829410a2-98dc-489c-aac7-25533a6524ab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-829410a2-98dc-489c-aac7-25533a6524ab img.shogun-image {
  /* Add background color handling */
  
}

#s-829410a2-98dc-489c-aac7-25533a6524ab img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-829410a2-98dc-489c-aac7-25533a6524ab .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-829410a2-98dc-489c-aac7-25533a6524ab .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-829410a2-98dc-489c-aac7-25533a6524ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-829410a2-98dc-489c-aac7-25533a6524ab img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-829410a2-98dc-489c-aac7-25533a6524ab .shogun-image-content {
  
    justify-content: center;
  
}

.s-829410a2-98dc-489c-aac7-25533a6524ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image {
  box-sizing: border-box;
}



.s-829410a2-98dc-489c-aac7-25533a6524ab img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-829410a2-98dc-489c-aac7-25533a6524ab {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image-container {
      position: relative;
    }

    .s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-829410a2-98dc-489c-aac7-25533a6524ab 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-829410a2-98dc-489c-aac7-25533a6524ab {
  margin: 0 !important;
  overflow: visible;
}

#s-829410a2-98dc-489c-aac7-25533a6524ab-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-829410a2-98dc-489c-aac7-25533a6524ab {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-829410a2-98dc-489c-aac7-25533a6524ab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-829410a2-98dc-489c-aac7-25533a6524ab img.shogun-image {
  /* Add background color handling */
  
}

#s-829410a2-98dc-489c-aac7-25533a6524ab img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-829410a2-98dc-489c-aac7-25533a6524ab .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-829410a2-98dc-489c-aac7-25533a6524ab .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-829410a2-98dc-489c-aac7-25533a6524ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-829410a2-98dc-489c-aac7-25533a6524ab img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-829410a2-98dc-489c-aac7-25533a6524ab .shogun-image-content {
  
    justify-content: center;
  
}

.s-829410a2-98dc-489c-aac7-25533a6524ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image {
  box-sizing: border-box;
}



.s-829410a2-98dc-489c-aac7-25533a6524ab img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-829410a2-98dc-489c-aac7-25533a6524ab {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image-container {
      position: relative;
    }

    .s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-829410a2-98dc-489c-aac7-25533a6524ab 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-829410a2-98dc-489c-aac7-25533a6524ab {
  margin: 0 !important;
  overflow: visible;
}

#s-829410a2-98dc-489c-aac7-25533a6524ab-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-829410a2-98dc-489c-aac7-25533a6524ab {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-829410a2-98dc-489c-aac7-25533a6524ab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-829410a2-98dc-489c-aac7-25533a6524ab img.shogun-image {
  /* Add background color handling */
  
}

#s-829410a2-98dc-489c-aac7-25533a6524ab img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-829410a2-98dc-489c-aac7-25533a6524ab .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-829410a2-98dc-489c-aac7-25533a6524ab .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-829410a2-98dc-489c-aac7-25533a6524ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-829410a2-98dc-489c-aac7-25533a6524ab img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-829410a2-98dc-489c-aac7-25533a6524ab .shogun-image-content {
  
    justify-content: center;
  
}

.s-829410a2-98dc-489c-aac7-25533a6524ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image {
  box-sizing: border-box;
}



.s-829410a2-98dc-489c-aac7-25533a6524ab img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-829410a2-98dc-489c-aac7-25533a6524ab {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image-container {
      position: relative;
    }

    .s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-829410a2-98dc-489c-aac7-25533a6524ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-829410a2-98dc-489c-aac7-25533a6524ab {
  margin: 0 !important;
  overflow: visible;
}

#s-829410a2-98dc-489c-aac7-25533a6524ab-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-829410a2-98dc-489c-aac7-25533a6524ab {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-829410a2-98dc-489c-aac7-25533a6524ab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-829410a2-98dc-489c-aac7-25533a6524ab img.shogun-image {
  /* Add background color handling */
  
}

#s-829410a2-98dc-489c-aac7-25533a6524ab img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-829410a2-98dc-489c-aac7-25533a6524ab .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-829410a2-98dc-489c-aac7-25533a6524ab .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-829410a2-98dc-489c-aac7-25533a6524ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-829410a2-98dc-489c-aac7-25533a6524ab img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-829410a2-98dc-489c-aac7-25533a6524ab .shogun-image-content {
  
    justify-content: center;
  
}

.s-829410a2-98dc-489c-aac7-25533a6524ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image {
  box-sizing: border-box;
}



.s-829410a2-98dc-489c-aac7-25533a6524ab img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-829410a2-98dc-489c-aac7-25533a6524ab {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image-container {
      position: relative;
    }

    .s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-829410a2-98dc-489c-aac7-25533a6524ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-829410a2-98dc-489c-aac7-25533a6524ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
@media (min-width: 0px) {
[id="s-bb32ed50-b724-4986-a313-f4af5499cdf2"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-bb32ed50-b724-4986-a313-f4af5499cdf2"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-bb32ed50-b724-4986-a313-f4af5499cdf2"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-bb32ed50-b724-4986-a313-f4af5499cdf2"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-ac75f011-ece0-4e07-aace-17cc07d8b210 {
  max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-ac75f011-ece0-4e07-aace-17cc07d8b210 {
  margin: 0 !important;
  overflow: visible;
}

#s-ac75f011-ece0-4e07-aace-17cc07d8b210-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ac75f011-ece0-4e07-aace-17cc07d8b210 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ac75f011-ece0-4e07-aace-17cc07d8b210 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ac75f011-ece0-4e07-aace-17cc07d8b210 img.shogun-image {
  /* Add background color handling */
  
}

#s-ac75f011-ece0-4e07-aace-17cc07d8b210 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ac75f011-ece0-4e07-aace-17cc07d8b210 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ac75f011-ece0-4e07-aace-17cc07d8b210 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ac75f011-ece0-4e07-aace-17cc07d8b210 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ac75f011-ece0-4e07-aace-17cc07d8b210 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-ac75f011-ece0-4e07-aace-17cc07d8b210 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ac75f011-ece0-4e07-aace-17cc07d8b210.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image {
  box-sizing: border-box;
}



.s-ac75f011-ece0-4e07-aace-17cc07d8b210 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ac75f011-ece0-4e07-aace-17cc07d8b210 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image-container {
      position: relative;
    }

    .s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ac75f011-ece0-4e07-aace-17cc07d8b210 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-ac75f011-ece0-4e07-aace-17cc07d8b210 {
  margin: 0 !important;
  overflow: visible;
}

#s-ac75f011-ece0-4e07-aace-17cc07d8b210-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ac75f011-ece0-4e07-aace-17cc07d8b210 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ac75f011-ece0-4e07-aace-17cc07d8b210 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ac75f011-ece0-4e07-aace-17cc07d8b210 img.shogun-image {
  /* Add background color handling */
  
}

#s-ac75f011-ece0-4e07-aace-17cc07d8b210 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ac75f011-ece0-4e07-aace-17cc07d8b210 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ac75f011-ece0-4e07-aace-17cc07d8b210 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ac75f011-ece0-4e07-aace-17cc07d8b210 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ac75f011-ece0-4e07-aace-17cc07d8b210 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-ac75f011-ece0-4e07-aace-17cc07d8b210 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ac75f011-ece0-4e07-aace-17cc07d8b210.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image {
  box-sizing: border-box;
}



.s-ac75f011-ece0-4e07-aace-17cc07d8b210 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ac75f011-ece0-4e07-aace-17cc07d8b210 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image-container {
      position: relative;
    }

    .s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ac75f011-ece0-4e07-aace-17cc07d8b210 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-ac75f011-ece0-4e07-aace-17cc07d8b210 {
  margin: 0 !important;
  overflow: visible;
}

#s-ac75f011-ece0-4e07-aace-17cc07d8b210-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ac75f011-ece0-4e07-aace-17cc07d8b210 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ac75f011-ece0-4e07-aace-17cc07d8b210 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ac75f011-ece0-4e07-aace-17cc07d8b210 img.shogun-image {
  /* Add background color handling */
  
}

#s-ac75f011-ece0-4e07-aace-17cc07d8b210 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ac75f011-ece0-4e07-aace-17cc07d8b210 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ac75f011-ece0-4e07-aace-17cc07d8b210 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ac75f011-ece0-4e07-aace-17cc07d8b210 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ac75f011-ece0-4e07-aace-17cc07d8b210 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-ac75f011-ece0-4e07-aace-17cc07d8b210 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ac75f011-ece0-4e07-aace-17cc07d8b210.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image {
  box-sizing: border-box;
}



.s-ac75f011-ece0-4e07-aace-17cc07d8b210 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ac75f011-ece0-4e07-aace-17cc07d8b210 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image-container {
      position: relative;
    }

    .s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ac75f011-ece0-4e07-aace-17cc07d8b210 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-ac75f011-ece0-4e07-aace-17cc07d8b210 {
  margin: 0 !important;
  overflow: visible;
}

#s-ac75f011-ece0-4e07-aace-17cc07d8b210-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ac75f011-ece0-4e07-aace-17cc07d8b210 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ac75f011-ece0-4e07-aace-17cc07d8b210 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ac75f011-ece0-4e07-aace-17cc07d8b210 img.shogun-image {
  /* Add background color handling */
  
}

#s-ac75f011-ece0-4e07-aace-17cc07d8b210 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ac75f011-ece0-4e07-aace-17cc07d8b210 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ac75f011-ece0-4e07-aace-17cc07d8b210 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ac75f011-ece0-4e07-aace-17cc07d8b210 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ac75f011-ece0-4e07-aace-17cc07d8b210 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-ac75f011-ece0-4e07-aace-17cc07d8b210 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ac75f011-ece0-4e07-aace-17cc07d8b210.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image {
  box-sizing: border-box;
}



.s-ac75f011-ece0-4e07-aace-17cc07d8b210 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ac75f011-ece0-4e07-aace-17cc07d8b210 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image-container {
      position: relative;
    }

    .s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ac75f011-ece0-4e07-aace-17cc07d8b210 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-ac75f011-ece0-4e07-aace-17cc07d8b210 {
  margin: 0 !important;
  overflow: visible;
}

#s-ac75f011-ece0-4e07-aace-17cc07d8b210-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ac75f011-ece0-4e07-aace-17cc07d8b210 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ac75f011-ece0-4e07-aace-17cc07d8b210 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ac75f011-ece0-4e07-aace-17cc07d8b210 img.shogun-image {
  /* Add background color handling */
  
}

#s-ac75f011-ece0-4e07-aace-17cc07d8b210 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ac75f011-ece0-4e07-aace-17cc07d8b210 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ac75f011-ece0-4e07-aace-17cc07d8b210 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ac75f011-ece0-4e07-aace-17cc07d8b210 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ac75f011-ece0-4e07-aace-17cc07d8b210 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-ac75f011-ece0-4e07-aace-17cc07d8b210 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ac75f011-ece0-4e07-aace-17cc07d8b210.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image {
  box-sizing: border-box;
}



.s-ac75f011-ece0-4e07-aace-17cc07d8b210 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ac75f011-ece0-4e07-aace-17cc07d8b210 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image-container {
      position: relative;
    }

    .s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ac75f011-ece0-4e07-aace-17cc07d8b210.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ac75f011-ece0-4e07-aace-17cc07d8b210 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 {
  max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 {
  margin: 0 !important;
  overflow: visible;
}

#s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 img.shogun-image {
  /* Add background color handling */
  
}

#s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image {
  box-sizing: border-box;
}



.s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image-container {
      position: relative;
    }

    .s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 {
  margin: 0 !important;
  overflow: visible;
}

#s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 img.shogun-image {
  /* Add background color handling */
  
}

#s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image {
  box-sizing: border-box;
}



.s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image-container {
      position: relative;
    }

    .s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 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-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 {
  margin: 0 !important;
  overflow: visible;
}

#s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 img.shogun-image {
  /* Add background color handling */
  
}

#s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image {
  box-sizing: border-box;
}



.s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image-container {
      position: relative;
    }

    .s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 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-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 {
  margin: 0 !important;
  overflow: visible;
}

#s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 img.shogun-image {
  /* Add background color handling */
  
}

#s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image {
  box-sizing: border-box;
}



.s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image-container {
      position: relative;
    }

    .s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 {
  margin: 0 !important;
  overflow: visible;
}

#s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 img.shogun-image {
  /* Add background color handling */
  
}

#s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image {
  box-sizing: border-box;
}



.s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image-container {
      position: relative;
    }

    .s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-35882ef6-5f5d-4892-a5bc-ccb63d5861e3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-f01e9a91-97b8-41a6-aa9e-107d97851277 {
  max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-f01e9a91-97b8-41a6-aa9e-107d97851277 {
  margin: 0 !important;
  overflow: visible;
}

#s-f01e9a91-97b8-41a6-aa9e-107d97851277-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f01e9a91-97b8-41a6-aa9e-107d97851277 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f01e9a91-97b8-41a6-aa9e-107d97851277 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f01e9a91-97b8-41a6-aa9e-107d97851277 img.shogun-image {
  /* Add background color handling */
  
}

#s-f01e9a91-97b8-41a6-aa9e-107d97851277 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f01e9a91-97b8-41a6-aa9e-107d97851277 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f01e9a91-97b8-41a6-aa9e-107d97851277 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f01e9a91-97b8-41a6-aa9e-107d97851277 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f01e9a91-97b8-41a6-aa9e-107d97851277 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-f01e9a91-97b8-41a6-aa9e-107d97851277 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f01e9a91-97b8-41a6-aa9e-107d97851277.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image {
  box-sizing: border-box;
}



.s-f01e9a91-97b8-41a6-aa9e-107d97851277 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f01e9a91-97b8-41a6-aa9e-107d97851277 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image-container {
      position: relative;
    }

    .s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f01e9a91-97b8-41a6-aa9e-107d97851277 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-f01e9a91-97b8-41a6-aa9e-107d97851277 {
  margin: 0 !important;
  overflow: visible;
}

#s-f01e9a91-97b8-41a6-aa9e-107d97851277-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f01e9a91-97b8-41a6-aa9e-107d97851277 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f01e9a91-97b8-41a6-aa9e-107d97851277 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f01e9a91-97b8-41a6-aa9e-107d97851277 img.shogun-image {
  /* Add background color handling */
  
}

#s-f01e9a91-97b8-41a6-aa9e-107d97851277 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f01e9a91-97b8-41a6-aa9e-107d97851277 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f01e9a91-97b8-41a6-aa9e-107d97851277 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f01e9a91-97b8-41a6-aa9e-107d97851277 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f01e9a91-97b8-41a6-aa9e-107d97851277 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-f01e9a91-97b8-41a6-aa9e-107d97851277 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f01e9a91-97b8-41a6-aa9e-107d97851277.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image {
  box-sizing: border-box;
}



.s-f01e9a91-97b8-41a6-aa9e-107d97851277 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f01e9a91-97b8-41a6-aa9e-107d97851277 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image-container {
      position: relative;
    }

    .s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f01e9a91-97b8-41a6-aa9e-107d97851277 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-f01e9a91-97b8-41a6-aa9e-107d97851277 {
  margin: 0 !important;
  overflow: visible;
}

#s-f01e9a91-97b8-41a6-aa9e-107d97851277-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f01e9a91-97b8-41a6-aa9e-107d97851277 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f01e9a91-97b8-41a6-aa9e-107d97851277 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f01e9a91-97b8-41a6-aa9e-107d97851277 img.shogun-image {
  /* Add background color handling */
  
}

#s-f01e9a91-97b8-41a6-aa9e-107d97851277 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f01e9a91-97b8-41a6-aa9e-107d97851277 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f01e9a91-97b8-41a6-aa9e-107d97851277 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f01e9a91-97b8-41a6-aa9e-107d97851277 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f01e9a91-97b8-41a6-aa9e-107d97851277 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-f01e9a91-97b8-41a6-aa9e-107d97851277 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f01e9a91-97b8-41a6-aa9e-107d97851277.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image {
  box-sizing: border-box;
}



.s-f01e9a91-97b8-41a6-aa9e-107d97851277 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f01e9a91-97b8-41a6-aa9e-107d97851277 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image-container {
      position: relative;
    }

    .s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f01e9a91-97b8-41a6-aa9e-107d97851277 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-f01e9a91-97b8-41a6-aa9e-107d97851277 {
  margin: 0 !important;
  overflow: visible;
}

#s-f01e9a91-97b8-41a6-aa9e-107d97851277-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f01e9a91-97b8-41a6-aa9e-107d97851277 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f01e9a91-97b8-41a6-aa9e-107d97851277 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f01e9a91-97b8-41a6-aa9e-107d97851277 img.shogun-image {
  /* Add background color handling */
  
}

#s-f01e9a91-97b8-41a6-aa9e-107d97851277 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f01e9a91-97b8-41a6-aa9e-107d97851277 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f01e9a91-97b8-41a6-aa9e-107d97851277 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f01e9a91-97b8-41a6-aa9e-107d97851277 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f01e9a91-97b8-41a6-aa9e-107d97851277 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-f01e9a91-97b8-41a6-aa9e-107d97851277 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f01e9a91-97b8-41a6-aa9e-107d97851277.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image {
  box-sizing: border-box;
}



.s-f01e9a91-97b8-41a6-aa9e-107d97851277 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f01e9a91-97b8-41a6-aa9e-107d97851277 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image-container {
      position: relative;
    }

    .s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f01e9a91-97b8-41a6-aa9e-107d97851277 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-f01e9a91-97b8-41a6-aa9e-107d97851277 {
  margin: 0 !important;
  overflow: visible;
}

#s-f01e9a91-97b8-41a6-aa9e-107d97851277-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f01e9a91-97b8-41a6-aa9e-107d97851277 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f01e9a91-97b8-41a6-aa9e-107d97851277 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f01e9a91-97b8-41a6-aa9e-107d97851277 img.shogun-image {
  /* Add background color handling */
  
}

#s-f01e9a91-97b8-41a6-aa9e-107d97851277 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f01e9a91-97b8-41a6-aa9e-107d97851277 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f01e9a91-97b8-41a6-aa9e-107d97851277 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f01e9a91-97b8-41a6-aa9e-107d97851277 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f01e9a91-97b8-41a6-aa9e-107d97851277 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-f01e9a91-97b8-41a6-aa9e-107d97851277 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f01e9a91-97b8-41a6-aa9e-107d97851277.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image {
  box-sizing: border-box;
}



.s-f01e9a91-97b8-41a6-aa9e-107d97851277 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f01e9a91-97b8-41a6-aa9e-107d97851277 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image-container {
      position: relative;
    }

    .s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f01e9a91-97b8-41a6-aa9e-107d97851277.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f01e9a91-97b8-41a6-aa9e-107d97851277 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 {
  max-width: 1500px;
aspect-ratio: 1500/1453;
text-align: center;
}

#s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 {
  margin: 0 !important;
  overflow: visible;
}

#s-b42302d8-9c5a-467a-bae1-ab6e0e261f16-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 img.shogun-image {
  /* Add background color handling */
  
}

#s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 .shg-image-content-wrapper {
      aspect-ratio: 1500/1453;
      min-width: 100%;
      height: auto;
    }

    #s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 .shogun-image-link {
      aspect-ratio: 1500/1453;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image {
  box-sizing: border-box;
}



.s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 {
      --shg-aspect-ratio: calc(1500/1453); 
    }

    .s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image-container {
      position: relative;
    }

    .s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 {
  margin: 0 !important;
  overflow: visible;
}

#s-b42302d8-9c5a-467a-bae1-ab6e0e261f16-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 img.shogun-image {
  /* Add background color handling */
  
}

#s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 .shg-image-content-wrapper {
      aspect-ratio: 1500/1453;
      min-width: 100%;
      height: auto;
    }

    #s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 .shogun-image-link {
      aspect-ratio: 1500/1453;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image {
  box-sizing: border-box;
}



.s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 {
      --shg-aspect-ratio: calc(1500/1453); 
    }

    .s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image-container {
      position: relative;
    }

    .s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 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-b42302d8-9c5a-467a-bae1-ab6e0e261f16 {
  margin: 0 !important;
  overflow: visible;
}

#s-b42302d8-9c5a-467a-bae1-ab6e0e261f16-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 img.shogun-image {
  /* Add background color handling */
  
}

#s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 .shg-image-content-wrapper {
      aspect-ratio: 1500/1453;
      min-width: 100%;
      height: auto;
    }

    #s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 .shogun-image-link {
      aspect-ratio: 1500/1453;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image {
  box-sizing: border-box;
}



.s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 {
      --shg-aspect-ratio: calc(1500/1453); 
    }

    .s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image-container {
      position: relative;
    }

    .s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 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-b42302d8-9c5a-467a-bae1-ab6e0e261f16 {
  margin: 0 !important;
  overflow: visible;
}

#s-b42302d8-9c5a-467a-bae1-ab6e0e261f16-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 img.shogun-image {
  /* Add background color handling */
  
}

#s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 .shg-image-content-wrapper {
      aspect-ratio: 1500/1453;
      min-width: 100%;
      height: auto;
    }

    #s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 .shogun-image-link {
      aspect-ratio: 1500/1453;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image {
  box-sizing: border-box;
}



.s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 {
      --shg-aspect-ratio: calc(1500/1453); 
    }

    .s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image-container {
      position: relative;
    }

    .s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 {
  margin: 0 !important;
  overflow: visible;
}

#s-b42302d8-9c5a-467a-bae1-ab6e0e261f16-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 img.shogun-image {
  /* Add background color handling */
  
}

#s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 .shg-image-content-wrapper {
      aspect-ratio: 1500/1453;
      min-width: 100%;
      height: auto;
    }

    #s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 .shogun-image-link {
      aspect-ratio: 1500/1453;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image {
  box-sizing: border-box;
}



.s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 {
      --shg-aspect-ratio: calc(1500/1453); 
    }

    .s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image-container {
      position: relative;
    }

    .s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b42302d8-9c5a-467a-bae1-ab6e0e261f16.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b42302d8-9c5a-467a-bae1-ab6e0e261f16 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;
}
