.shg-box {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  /**
   * 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: flex;
  width: 100%;
}

.shg-box-vertical-align-top {
  justify-content: flex-start;
}

.shg-box-vertical-align-center, .shg-box-vertical-center {
  justify-content: center;
}

.shg-box-vertical-align-bottom {
  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-bbb4be32-22b3-40d3-8c2b-26a5e7229662 {
  margin-left: auto;
margin-right: auto;
padding-top: 50px;
padding-left: 25%;
padding-bottom: 50px;
padding-right: 25%;
min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 1200px){#s-bbb4be32-22b3-40d3-8c2b-26a5e7229662 {
  padding-left: 25%;
padding-right: 25%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-bbb4be32-22b3-40d3-8c2b-26a5e7229662 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-bbb4be32-22b3-40d3-8c2b-26a5e7229662 {
  padding-left: 10%;
padding-right: 10%;
}
}@media (max-width: 767px){#s-bbb4be32-22b3-40d3-8c2b-26a5e7229662 {
  padding-left: 10%;
padding-right: 10%;
}
}







#s-bbb4be32-22b3-40d3-8c2b-26a5e7229662 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bbb4be32-22b3-40d3-8c2b-26a5e7229662.shg-box.shg-c {
  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 {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

.shogun-image-contain {
  font-family: "object-fit: contain;";
  -o-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-b779b359-b6fd-4379-973d-156cf22de7c4 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
aspect-ratio: 1/1;
text-align: center;
}

#s-b779b359-b6fd-4379-973d-156cf22de7c4 {
  margin: 0 !important;
  overflow: visible;
}

#s-b779b359-b6fd-4379-973d-156cf22de7c4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b779b359-b6fd-4379-973d-156cf22de7c4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b779b359-b6fd-4379-973d-156cf22de7c4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b779b359-b6fd-4379-973d-156cf22de7c4 img.shogun-image {
  /* Add background color handling */
  
}

#s-b779b359-b6fd-4379-973d-156cf22de7c4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b779b359-b6fd-4379-973d-156cf22de7c4 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b779b359-b6fd-4379-973d-156cf22de7c4 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b779b359-b6fd-4379-973d-156cf22de7c4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b779b359-b6fd-4379-973d-156cf22de7c4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-b779b359-b6fd-4379-973d-156cf22de7c4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b779b359-b6fd-4379-973d-156cf22de7c4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image {
  box-sizing: border-box;
}



.s-b779b359-b6fd-4379-973d-156cf22de7c4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b779b359-b6fd-4379-973d-156cf22de7c4 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image-container {
      position: relative;
    }

    .s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b779b359-b6fd-4379-973d-156cf22de7c4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

@media (min-width: 1200px){#s-b779b359-b6fd-4379-973d-156cf22de7c4 {
  margin: 0 !important;
  overflow: visible;
}

#s-b779b359-b6fd-4379-973d-156cf22de7c4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b779b359-b6fd-4379-973d-156cf22de7c4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b779b359-b6fd-4379-973d-156cf22de7c4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b779b359-b6fd-4379-973d-156cf22de7c4 img.shogun-image {
  /* Add background color handling */
  
}

#s-b779b359-b6fd-4379-973d-156cf22de7c4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b779b359-b6fd-4379-973d-156cf22de7c4 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b779b359-b6fd-4379-973d-156cf22de7c4 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b779b359-b6fd-4379-973d-156cf22de7c4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b779b359-b6fd-4379-973d-156cf22de7c4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-b779b359-b6fd-4379-973d-156cf22de7c4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b779b359-b6fd-4379-973d-156cf22de7c4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image {
  box-sizing: border-box;
}



.s-b779b359-b6fd-4379-973d-156cf22de7c4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b779b359-b6fd-4379-973d-156cf22de7c4 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image-container {
      position: relative;
    }

    .s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b779b359-b6fd-4379-973d-156cf22de7c4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-b779b359-b6fd-4379-973d-156cf22de7c4 {
  margin: 0 !important;
  overflow: visible;
}

#s-b779b359-b6fd-4379-973d-156cf22de7c4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b779b359-b6fd-4379-973d-156cf22de7c4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b779b359-b6fd-4379-973d-156cf22de7c4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b779b359-b6fd-4379-973d-156cf22de7c4 img.shogun-image {
  /* Add background color handling */
  
}

#s-b779b359-b6fd-4379-973d-156cf22de7c4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b779b359-b6fd-4379-973d-156cf22de7c4 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b779b359-b6fd-4379-973d-156cf22de7c4 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b779b359-b6fd-4379-973d-156cf22de7c4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b779b359-b6fd-4379-973d-156cf22de7c4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-b779b359-b6fd-4379-973d-156cf22de7c4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b779b359-b6fd-4379-973d-156cf22de7c4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image {
  box-sizing: border-box;
}



.s-b779b359-b6fd-4379-973d-156cf22de7c4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b779b359-b6fd-4379-973d-156cf22de7c4 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image-container {
      position: relative;
    }

    .s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b779b359-b6fd-4379-973d-156cf22de7c4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-b779b359-b6fd-4379-973d-156cf22de7c4 {
  margin: 0 !important;
  overflow: visible;
}

#s-b779b359-b6fd-4379-973d-156cf22de7c4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b779b359-b6fd-4379-973d-156cf22de7c4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b779b359-b6fd-4379-973d-156cf22de7c4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b779b359-b6fd-4379-973d-156cf22de7c4 img.shogun-image {
  /* Add background color handling */
  
}

#s-b779b359-b6fd-4379-973d-156cf22de7c4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b779b359-b6fd-4379-973d-156cf22de7c4 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b779b359-b6fd-4379-973d-156cf22de7c4 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b779b359-b6fd-4379-973d-156cf22de7c4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b779b359-b6fd-4379-973d-156cf22de7c4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-b779b359-b6fd-4379-973d-156cf22de7c4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b779b359-b6fd-4379-973d-156cf22de7c4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image {
  box-sizing: border-box;
}



.s-b779b359-b6fd-4379-973d-156cf22de7c4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b779b359-b6fd-4379-973d-156cf22de7c4 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image-container {
      position: relative;
    }

    .s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b779b359-b6fd-4379-973d-156cf22de7c4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (max-width: 767px){#s-b779b359-b6fd-4379-973d-156cf22de7c4 {
  margin: 0 !important;
  overflow: visible;
}

#s-b779b359-b6fd-4379-973d-156cf22de7c4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b779b359-b6fd-4379-973d-156cf22de7c4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b779b359-b6fd-4379-973d-156cf22de7c4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b779b359-b6fd-4379-973d-156cf22de7c4 img.shogun-image {
  /* Add background color handling */
  
}

#s-b779b359-b6fd-4379-973d-156cf22de7c4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b779b359-b6fd-4379-973d-156cf22de7c4 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b779b359-b6fd-4379-973d-156cf22de7c4 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b779b359-b6fd-4379-973d-156cf22de7c4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b779b359-b6fd-4379-973d-156cf22de7c4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-b779b359-b6fd-4379-973d-156cf22de7c4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b779b359-b6fd-4379-973d-156cf22de7c4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image {
  box-sizing: border-box;
}



.s-b779b359-b6fd-4379-973d-156cf22de7c4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b779b359-b6fd-4379-973d-156cf22de7c4 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image-container {
      position: relative;
    }

    .s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b779b359-b6fd-4379-973d-156cf22de7c4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b779b359-b6fd-4379-973d-156cf22de7c4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}
.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: "Cormorant";
  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 ::-moz-selection, .shg-default-text-content *::-moz-selection {
  background: #accef7;
}
.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: "Lato";
}

.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: "Cormorant";
  font-weight: 700;
}

.shg-theme-text-content p {
  color: #000000;
  font-family: "Lato";
  font-weight: 400;
}

#s-b132f627-dc27-4a06-a223-6fcc8a5998c9 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 25px;
padding-left: 25%;
padding-right: 25%;
}
@media (max-width: 767px){#s-b132f627-dc27-4a06-a223-6fcc8a5998c9 {
  padding-top: 25px;
padding-left: 0%;
padding-bottom: 25px;
padding-right: 0%;
}
}
#s-a7d2e3e0-5737-4dc5-baf9-db56f13b0108 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 25px;
}
@media (min-width: 1200px){#s-a7d2e3e0-5737-4dc5-baf9-db56f13b0108 {
  padding-top: 25px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a7d2e3e0-5737-4dc5-baf9-db56f13b0108 {
  padding-top: 25px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-a7d2e3e0-5737-4dc5-baf9-db56f13b0108 {
  padding-top: 25px;
padding-bottom: 25px;
}
}@media (max-width: 767px){#s-a7d2e3e0-5737-4dc5-baf9-db56f13b0108 {
  padding-bottom: 25px;
}
}
.shg-hr-wrapper {
  padding: 30px 0;
}

.shg-hr-wrapper hr {
  margin: 0;
  border: 0;
  width: 100%;
}

#s-e8f7f6ca-db5a-481c-90e8-8bd6e2e96e45 {
  margin-left: auto;
margin-right: auto;
padding-top: 25px;
padding-left: 45%;
padding-right: 45%;
}

#s-e8f7f6ca-db5a-481c-90e8-8bd6e2e96e45 hr {
  border-top: 2px solid #ddd;
}

#s-e4be4eb9-1326-46a5-a073-c6a8eeabe473 {
  margin-left: auto;
margin-right: auto;
padding-top: 25px;
padding-bottom: 25px;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-e4be4eb9-1326-46a5-a073-c6a8eeabe473 {
  display: none;
}
#s-e4be4eb9-1326-46a5-a073-c6a8eeabe473, #wrap-s-e4be4eb9-1326-46a5-a073-c6a8eeabe473, #wrap-content-s-e4be4eb9-1326-46a5-a073-c6a8eeabe473 { display: none !important; }}@media (max-width: 767px){#s-e4be4eb9-1326-46a5-a073-c6a8eeabe473 {
  display: none;
}
#s-e4be4eb9-1326-46a5-a073-c6a8eeabe473, #wrap-s-e4be4eb9-1326-46a5-a073-c6a8eeabe473, #wrap-content-s-e4be4eb9-1326-46a5-a073-c6a8eeabe473 { display: none !important; }}







#s-e4be4eb9-1326-46a5-a073-c6a8eeabe473 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e4be4eb9-1326-46a5-a073-c6a8eeabe473.shg-box.shg-c {
  justify-content: center;
}

#s-96f94786-e571-4552-81db-d94805c6640e {
  margin-left: auto;
margin-right: auto;
}

#s-63fb6d57-9f00-4b68-b2d3-a0171c561aa2 {
  margin-left: auto;
margin-right: auto;
padding-left: 14%;
padding-bottom: 25px;
padding-right: 14%;
}

#s-4ea239f6-8828-43ac-93bf-f384225446ee {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 5%;
padding-bottom: 0px;
padding-right: 5%;
}
@media (min-width: 1200px){#s-4ea239f6-8828-43ac-93bf-f384225446ee {
  padding-left: 5%;
padding-right: 5%;
}
}







#s-4ea239f6-8828-43ac-93bf-f384225446ee > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4ea239f6-8828-43ac-93bf-f384225446ee.shg-box.shg-c {
  justify-content: center;
}

.shg-row {
  display: flex;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
  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-97f83b87-dbc2-4824-acec-8c4b9f491ae9 {
  margin-left: auto;
margin-right: auto;
padding-left: 0%;
padding-right: 0%;
}
@media (min-width: 1200px){#s-97f83b87-dbc2-4824-acec-8c4b9f491ae9 {
  padding-bottom: 50px;
}
}
@media (min-width: 0px) {
[id="s-97f83b87-dbc2-4824-acec-8c4b9f491ae9"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-97f83b87-dbc2-4824-acec-8c4b9f491ae9"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-97f83b87-dbc2-4824-acec-8c4b9f491ae9"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-97f83b87-dbc2-4824-acec-8c4b9f491ae9"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-ca013ee3-2905-4fab-992d-b12b81255a9d {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-ca013ee3-2905-4fab-992d-b12b81255a9d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ca013ee3-2905-4fab-992d-b12b81255a9d.shg-box.shg-c {
  justify-content: center;
}

#s-5c0f02d6-b516-4168-be80-4e58939cbfe5 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-5c0f02d6-b516-4168-be80-4e58939cbfe5 {
  margin: 0 !important;
  overflow: visible;
}

#s-5c0f02d6-b516-4168-be80-4e58939cbfe5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5c0f02d6-b516-4168-be80-4e58939cbfe5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5c0f02d6-b516-4168-be80-4e58939cbfe5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5c0f02d6-b516-4168-be80-4e58939cbfe5 img.shogun-image {
  /* Add background color handling */
  
}

#s-5c0f02d6-b516-4168-be80-4e58939cbfe5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5c0f02d6-b516-4168-be80-4e58939cbfe5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5c0f02d6-b516-4168-be80-4e58939cbfe5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5c0f02d6-b516-4168-be80-4e58939cbfe5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5c0f02d6-b516-4168-be80-4e58939cbfe5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-5c0f02d6-b516-4168-be80-4e58939cbfe5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image {
  box-sizing: border-box;
}



.s-5c0f02d6-b516-4168-be80-4e58939cbfe5 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5c0f02d6-b516-4168-be80-4e58939cbfe5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image-container {
      position: relative;
    }

    .s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5c0f02d6-b516-4168-be80-4e58939cbfe5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-5c0f02d6-b516-4168-be80-4e58939cbfe5 {
  margin: 0 !important;
  overflow: visible;
}

#s-5c0f02d6-b516-4168-be80-4e58939cbfe5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5c0f02d6-b516-4168-be80-4e58939cbfe5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5c0f02d6-b516-4168-be80-4e58939cbfe5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5c0f02d6-b516-4168-be80-4e58939cbfe5 img.shogun-image {
  /* Add background color handling */
  
}

#s-5c0f02d6-b516-4168-be80-4e58939cbfe5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5c0f02d6-b516-4168-be80-4e58939cbfe5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5c0f02d6-b516-4168-be80-4e58939cbfe5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5c0f02d6-b516-4168-be80-4e58939cbfe5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5c0f02d6-b516-4168-be80-4e58939cbfe5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-5c0f02d6-b516-4168-be80-4e58939cbfe5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image {
  box-sizing: border-box;
}



.s-5c0f02d6-b516-4168-be80-4e58939cbfe5 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5c0f02d6-b516-4168-be80-4e58939cbfe5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image-container {
      position: relative;
    }

    .s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5c0f02d6-b516-4168-be80-4e58939cbfe5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-5c0f02d6-b516-4168-be80-4e58939cbfe5 {
  margin: 0 !important;
  overflow: visible;
}

#s-5c0f02d6-b516-4168-be80-4e58939cbfe5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5c0f02d6-b516-4168-be80-4e58939cbfe5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5c0f02d6-b516-4168-be80-4e58939cbfe5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5c0f02d6-b516-4168-be80-4e58939cbfe5 img.shogun-image {
  /* Add background color handling */
  
}

#s-5c0f02d6-b516-4168-be80-4e58939cbfe5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5c0f02d6-b516-4168-be80-4e58939cbfe5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5c0f02d6-b516-4168-be80-4e58939cbfe5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5c0f02d6-b516-4168-be80-4e58939cbfe5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5c0f02d6-b516-4168-be80-4e58939cbfe5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-5c0f02d6-b516-4168-be80-4e58939cbfe5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image {
  box-sizing: border-box;
}



.s-5c0f02d6-b516-4168-be80-4e58939cbfe5 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5c0f02d6-b516-4168-be80-4e58939cbfe5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image-container {
      position: relative;
    }

    .s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5c0f02d6-b516-4168-be80-4e58939cbfe5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-5c0f02d6-b516-4168-be80-4e58939cbfe5 {
  margin: 0 !important;
  overflow: visible;
}

#s-5c0f02d6-b516-4168-be80-4e58939cbfe5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5c0f02d6-b516-4168-be80-4e58939cbfe5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5c0f02d6-b516-4168-be80-4e58939cbfe5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5c0f02d6-b516-4168-be80-4e58939cbfe5 img.shogun-image {
  /* Add background color handling */
  
}

#s-5c0f02d6-b516-4168-be80-4e58939cbfe5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5c0f02d6-b516-4168-be80-4e58939cbfe5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5c0f02d6-b516-4168-be80-4e58939cbfe5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5c0f02d6-b516-4168-be80-4e58939cbfe5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5c0f02d6-b516-4168-be80-4e58939cbfe5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-5c0f02d6-b516-4168-be80-4e58939cbfe5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image {
  box-sizing: border-box;
}



.s-5c0f02d6-b516-4168-be80-4e58939cbfe5 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5c0f02d6-b516-4168-be80-4e58939cbfe5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image-container {
      position: relative;
    }

    .s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5c0f02d6-b516-4168-be80-4e58939cbfe5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-5c0f02d6-b516-4168-be80-4e58939cbfe5 {
  margin: 0 !important;
  overflow: visible;
}

#s-5c0f02d6-b516-4168-be80-4e58939cbfe5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5c0f02d6-b516-4168-be80-4e58939cbfe5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5c0f02d6-b516-4168-be80-4e58939cbfe5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5c0f02d6-b516-4168-be80-4e58939cbfe5 img.shogun-image {
  /* Add background color handling */
  
}

#s-5c0f02d6-b516-4168-be80-4e58939cbfe5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5c0f02d6-b516-4168-be80-4e58939cbfe5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5c0f02d6-b516-4168-be80-4e58939cbfe5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5c0f02d6-b516-4168-be80-4e58939cbfe5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5c0f02d6-b516-4168-be80-4e58939cbfe5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-5c0f02d6-b516-4168-be80-4e58939cbfe5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image {
  box-sizing: border-box;
}



.s-5c0f02d6-b516-4168-be80-4e58939cbfe5 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5c0f02d6-b516-4168-be80-4e58939cbfe5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image-container {
      position: relative;
    }

    .s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5c0f02d6-b516-4168-be80-4e58939cbfe5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5c0f02d6-b516-4168-be80-4e58939cbfe5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-f370af46-6958-480e-8b2c-2f371bb977c1 {
  margin-left: auto;
margin-right: auto;
}

#s-2a9253ed-718a-46de-8d0e-b98ecd30950a {
  margin-left: auto;
margin-right: auto;
padding-left: 15%;
padding-right: 15%;
}

#s-dd970386-0897-4d2b-8221-081e29be83f4 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-dd970386-0897-4d2b-8221-081e29be83f4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-dd970386-0897-4d2b-8221-081e29be83f4.shg-box.shg-c {
  justify-content: center;
}

#s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 {
  margin: 0 !important;
  overflow: visible;
}

#s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 img.shogun-image {
  /* Add background color handling */
  
}

#s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image {
  box-sizing: border-box;
}



.s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image-container {
      position: relative;
    }

    .s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 {
  margin: 0 !important;
  overflow: visible;
}

#s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 img.shogun-image {
  /* Add background color handling */
  
}

#s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image {
  box-sizing: border-box;
}



.s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image-container {
      position: relative;
    }

    .s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 {
  margin: 0 !important;
  overflow: visible;
}

#s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 img.shogun-image {
  /* Add background color handling */
  
}

#s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image {
  box-sizing: border-box;
}



.s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image-container {
      position: relative;
    }

    .s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 {
  margin: 0 !important;
  overflow: visible;
}

#s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 img.shogun-image {
  /* Add background color handling */
  
}

#s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image {
  box-sizing: border-box;
}



.s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image-container {
      position: relative;
    }

    .s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 {
  margin: 0 !important;
  overflow: visible;
}

#s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 img.shogun-image {
  /* Add background color handling */
  
}

#s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image {
  box-sizing: border-box;
}



.s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image-container {
      position: relative;
    }

    .s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d4fd5b35-4d6d-48b3-a165-00555fc1aea7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-a19fed5d-6995-4a1a-88fe-fbb757672a13 {
  margin-left: auto;
margin-right: auto;
}

#s-00c4b343-c72f-48aa-93c5-7620e721fe4e {
  margin-left: auto;
margin-right: auto;
padding-left: 12%;
padding-right: 12%;
}

#s-82517c3f-53fb-46d6-8c0e-a29677bf2ef3 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-82517c3f-53fb-46d6-8c0e-a29677bf2ef3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-82517c3f-53fb-46d6-8c0e-a29677bf2ef3.shg-box.shg-c {
  justify-content: center;
}

#s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 {
  margin: 0 !important;
  overflow: visible;
}

#s-56cb44bf-b4b9-49ed-94eb-8a2db2756896-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 img.shogun-image {
  /* Add background color handling */
  
}

#s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 .shogun-image-content {
  
    justify-content: center;
  
}

.s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shg-align-container {
  display: flex;
  justify-content: center
}

.s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image {
  box-sizing: border-box;
}



.s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image-container {
      position: relative;
    }

    .s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 {
  margin: 0 !important;
  overflow: visible;
}

#s-56cb44bf-b4b9-49ed-94eb-8a2db2756896-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 img.shogun-image {
  /* Add background color handling */
  
}

#s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 .shogun-image-content {
  
    justify-content: center;
  
}

.s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shg-align-container {
  display: flex;
  justify-content: center
}

.s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image {
  box-sizing: border-box;
}



.s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image-container {
      position: relative;
    }

    .s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 {
  margin: 0 !important;
  overflow: visible;
}

#s-56cb44bf-b4b9-49ed-94eb-8a2db2756896-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 img.shogun-image {
  /* Add background color handling */
  
}

#s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 .shogun-image-content {
  
    justify-content: center;
  
}

.s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shg-align-container {
  display: flex;
  justify-content: center
}

.s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image {
  box-sizing: border-box;
}



.s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image-container {
      position: relative;
    }

    .s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 {
  margin: 0 !important;
  overflow: visible;
}

#s-56cb44bf-b4b9-49ed-94eb-8a2db2756896-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 img.shogun-image {
  /* Add background color handling */
  
}

#s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 .shogun-image-content {
  
    justify-content: center;
  
}

.s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shg-align-container {
  display: flex;
  justify-content: center
}

.s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image {
  box-sizing: border-box;
}



.s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image-container {
      position: relative;
    }

    .s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 {
  margin: 0 !important;
  overflow: visible;
}

#s-56cb44bf-b4b9-49ed-94eb-8a2db2756896-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 img.shogun-image {
  /* Add background color handling */
  
}

#s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 .shogun-image-content {
  
    justify-content: center;
  
}

.s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shg-align-container {
  display: flex;
  justify-content: center
}

.s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image {
  box-sizing: border-box;
}



.s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image-container {
      position: relative;
    }

    .s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-56cb44bf-b4b9-49ed-94eb-8a2db2756896.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-56cb44bf-b4b9-49ed-94eb-8a2db2756896 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-5bed2107-d9de-430d-954d-6d32f47bd478 {
  margin-left: auto;
margin-right: auto;
}

#s-ed87bd0a-5bfe-4940-9a00-0187fcdae982 {
  margin-left: auto;
margin-right: auto;
padding-left: 5%;
padding-right: 5%;
}

#s-6aaa3ba7-2098-4384-a69a-f167d5c12cb7 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-6aaa3ba7-2098-4384-a69a-f167d5c12cb7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6aaa3ba7-2098-4384-a69a-f167d5c12cb7.shg-box.shg-c {
  justify-content: center;
}

#s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 {
  margin: 0 !important;
  overflow: visible;
}

#s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 img.shogun-image {
  /* Add background color handling */
  
}

#s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image {
  box-sizing: border-box;
}



.s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image-container {
      position: relative;
    }

    .s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 {
  margin: 0 !important;
  overflow: visible;
}

#s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 img.shogun-image {
  /* Add background color handling */
  
}

#s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image {
  box-sizing: border-box;
}



.s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image-container {
      position: relative;
    }

    .s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 {
  margin: 0 !important;
  overflow: visible;
}

#s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 img.shogun-image {
  /* Add background color handling */
  
}

#s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image {
  box-sizing: border-box;
}



.s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image-container {
      position: relative;
    }

    .s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 {
  margin: 0 !important;
  overflow: visible;
}

#s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 img.shogun-image {
  /* Add background color handling */
  
}

#s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image {
  box-sizing: border-box;
}



.s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image-container {
      position: relative;
    }

    .s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 {
  margin: 0 !important;
  overflow: visible;
}

#s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 img.shogun-image {
  /* Add background color handling */
  
}

#s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image {
  box-sizing: border-box;
}



.s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image-container {
      position: relative;
    }

    .s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ff7aa552-2cb1-45f6-ace4-5de20a0a9c03 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-77e0a6ec-1931-465c-99db-5b2073428920 {
  margin-left: auto;
margin-right: auto;
}

#s-9ea21cc0-236a-4f30-ab7f-51401dd5ddbc {
  margin-left: auto;
margin-right: auto;
padding-left: 7%;
padding-right: 7%;
}

#s-d5567628-0fc7-453f-ade8-0b7aee9d3093 {
  margin-left: auto;
margin-right: auto;
padding-left: 0%;
padding-right: 0%;
}

@media (min-width: 0px) {
[id="s-d5567628-0fc7-453f-ade8-0b7aee9d3093"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-d5567628-0fc7-453f-ade8-0b7aee9d3093"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-d5567628-0fc7-453f-ade8-0b7aee9d3093"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-d5567628-0fc7-453f-ade8-0b7aee9d3093"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-1e117b59-b832-4e19-8be6-1d7c9a9b89f1 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-1e117b59-b832-4e19-8be6-1d7c9a9b89f1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1e117b59-b832-4e19-8be6-1d7c9a9b89f1.shg-box.shg-c {
  justify-content: center;
}

#s-ce2b3106-77ab-4b1d-9db0-6e23b547375c {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-ce2b3106-77ab-4b1d-9db0-6e23b547375c {
  margin: 0 !important;
  overflow: visible;
}

#s-ce2b3106-77ab-4b1d-9db0-6e23b547375c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ce2b3106-77ab-4b1d-9db0-6e23b547375c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ce2b3106-77ab-4b1d-9db0-6e23b547375c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ce2b3106-77ab-4b1d-9db0-6e23b547375c img.shogun-image {
  /* Add background color handling */
  
}

#s-ce2b3106-77ab-4b1d-9db0-6e23b547375c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ce2b3106-77ab-4b1d-9db0-6e23b547375c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ce2b3106-77ab-4b1d-9db0-6e23b547375c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ce2b3106-77ab-4b1d-9db0-6e23b547375c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ce2b3106-77ab-4b1d-9db0-6e23b547375c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-ce2b3106-77ab-4b1d-9db0-6e23b547375c .shogun-image-content {
  
    justify-content: center;
  
}

.s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image {
  box-sizing: border-box;
}



.s-ce2b3106-77ab-4b1d-9db0-6e23b547375c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ce2b3106-77ab-4b1d-9db0-6e23b547375c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image-container {
      position: relative;
    }

    .s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ce2b3106-77ab-4b1d-9db0-6e23b547375c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-ce2b3106-77ab-4b1d-9db0-6e23b547375c {
  margin: 0 !important;
  overflow: visible;
}

#s-ce2b3106-77ab-4b1d-9db0-6e23b547375c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ce2b3106-77ab-4b1d-9db0-6e23b547375c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ce2b3106-77ab-4b1d-9db0-6e23b547375c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ce2b3106-77ab-4b1d-9db0-6e23b547375c img.shogun-image {
  /* Add background color handling */
  
}

#s-ce2b3106-77ab-4b1d-9db0-6e23b547375c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ce2b3106-77ab-4b1d-9db0-6e23b547375c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ce2b3106-77ab-4b1d-9db0-6e23b547375c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ce2b3106-77ab-4b1d-9db0-6e23b547375c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ce2b3106-77ab-4b1d-9db0-6e23b547375c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-ce2b3106-77ab-4b1d-9db0-6e23b547375c .shogun-image-content {
  
    justify-content: center;
  
}

.s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image {
  box-sizing: border-box;
}



.s-ce2b3106-77ab-4b1d-9db0-6e23b547375c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ce2b3106-77ab-4b1d-9db0-6e23b547375c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image-container {
      position: relative;
    }

    .s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ce2b3106-77ab-4b1d-9db0-6e23b547375c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-ce2b3106-77ab-4b1d-9db0-6e23b547375c {
  margin: 0 !important;
  overflow: visible;
}

#s-ce2b3106-77ab-4b1d-9db0-6e23b547375c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ce2b3106-77ab-4b1d-9db0-6e23b547375c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ce2b3106-77ab-4b1d-9db0-6e23b547375c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ce2b3106-77ab-4b1d-9db0-6e23b547375c img.shogun-image {
  /* Add background color handling */
  
}

#s-ce2b3106-77ab-4b1d-9db0-6e23b547375c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ce2b3106-77ab-4b1d-9db0-6e23b547375c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ce2b3106-77ab-4b1d-9db0-6e23b547375c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ce2b3106-77ab-4b1d-9db0-6e23b547375c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ce2b3106-77ab-4b1d-9db0-6e23b547375c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-ce2b3106-77ab-4b1d-9db0-6e23b547375c .shogun-image-content {
  
    justify-content: center;
  
}

.s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image {
  box-sizing: border-box;
}



.s-ce2b3106-77ab-4b1d-9db0-6e23b547375c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ce2b3106-77ab-4b1d-9db0-6e23b547375c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image-container {
      position: relative;
    }

    .s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ce2b3106-77ab-4b1d-9db0-6e23b547375c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-ce2b3106-77ab-4b1d-9db0-6e23b547375c {
  margin: 0 !important;
  overflow: visible;
}

#s-ce2b3106-77ab-4b1d-9db0-6e23b547375c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ce2b3106-77ab-4b1d-9db0-6e23b547375c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ce2b3106-77ab-4b1d-9db0-6e23b547375c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ce2b3106-77ab-4b1d-9db0-6e23b547375c img.shogun-image {
  /* Add background color handling */
  
}

#s-ce2b3106-77ab-4b1d-9db0-6e23b547375c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ce2b3106-77ab-4b1d-9db0-6e23b547375c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ce2b3106-77ab-4b1d-9db0-6e23b547375c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ce2b3106-77ab-4b1d-9db0-6e23b547375c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ce2b3106-77ab-4b1d-9db0-6e23b547375c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-ce2b3106-77ab-4b1d-9db0-6e23b547375c .shogun-image-content {
  
    justify-content: center;
  
}

.s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image {
  box-sizing: border-box;
}



.s-ce2b3106-77ab-4b1d-9db0-6e23b547375c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ce2b3106-77ab-4b1d-9db0-6e23b547375c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image-container {
      position: relative;
    }

    .s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ce2b3106-77ab-4b1d-9db0-6e23b547375c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-ce2b3106-77ab-4b1d-9db0-6e23b547375c {
  margin: 0 !important;
  overflow: visible;
}

#s-ce2b3106-77ab-4b1d-9db0-6e23b547375c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ce2b3106-77ab-4b1d-9db0-6e23b547375c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ce2b3106-77ab-4b1d-9db0-6e23b547375c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ce2b3106-77ab-4b1d-9db0-6e23b547375c img.shogun-image {
  /* Add background color handling */
  
}

#s-ce2b3106-77ab-4b1d-9db0-6e23b547375c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ce2b3106-77ab-4b1d-9db0-6e23b547375c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ce2b3106-77ab-4b1d-9db0-6e23b547375c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ce2b3106-77ab-4b1d-9db0-6e23b547375c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ce2b3106-77ab-4b1d-9db0-6e23b547375c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-ce2b3106-77ab-4b1d-9db0-6e23b547375c .shogun-image-content {
  
    justify-content: center;
  
}

.s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image {
  box-sizing: border-box;
}



.s-ce2b3106-77ab-4b1d-9db0-6e23b547375c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ce2b3106-77ab-4b1d-9db0-6e23b547375c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image-container {
      position: relative;
    }

    .s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ce2b3106-77ab-4b1d-9db0-6e23b547375c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ce2b3106-77ab-4b1d-9db0-6e23b547375c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-c091a2e7-a382-4d18-8aac-10ce0067adb5 {
  margin-left: auto;
margin-right: auto;
}

#s-21075564-3a8c-47a2-96d2-252ad44f8e45 {
  margin-left: auto;
margin-right: auto;
padding-left: 11%;
padding-right: 11%;
}

#s-a8a72480-8544-4914-aaa1-32c83606b8ab {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-a8a72480-8544-4914-aaa1-32c83606b8ab > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a8a72480-8544-4914-aaa1-32c83606b8ab.shg-box.shg-c {
  justify-content: center;
}

#s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c {
  margin: 0 !important;
  overflow: visible;
}

#s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c img.shogun-image {
  /* Add background color handling */
  
}

#s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c .shogun-image-content {
  
    justify-content: center;
  
}

.s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image {
  box-sizing: border-box;
}



.s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image-container {
      position: relative;
    }

    .s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c {
  margin: 0 !important;
  overflow: visible;
}

#s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c img.shogun-image {
  /* Add background color handling */
  
}

#s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c .shogun-image-content {
  
    justify-content: center;
  
}

.s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image {
  box-sizing: border-box;
}



.s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image-container {
      position: relative;
    }

    .s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c {
  margin: 0 !important;
  overflow: visible;
}

#s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c img.shogun-image {
  /* Add background color handling */
  
}

#s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c .shogun-image-content {
  
    justify-content: center;
  
}

.s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image {
  box-sizing: border-box;
}



.s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image-container {
      position: relative;
    }

    .s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c {
  margin: 0 !important;
  overflow: visible;
}

#s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c img.shogun-image {
  /* Add background color handling */
  
}

#s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c .shogun-image-content {
  
    justify-content: center;
  
}

.s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image {
  box-sizing: border-box;
}



.s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image-container {
      position: relative;
    }

    .s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c {
  margin: 0 !important;
  overflow: visible;
}

#s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c img.shogun-image {
  /* Add background color handling */
  
}

#s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c .shogun-image-content {
  
    justify-content: center;
  
}

.s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image {
  box-sizing: border-box;
}



.s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image-container {
      position: relative;
    }

    .s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-26e0c43b-368c-4c8d-8e59-8c4f3c94811c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-ce7ef7e3-02b7-496a-aff8-78906551cc40 {
  margin-left: auto;
margin-right: auto;
}

#s-2aa68c21-d4d9-4018-9396-317f779d2664 {
  margin-left: auto;
margin-right: auto;
padding-left: 14%;
padding-right: 14%;
}

#s-a9eb773c-b18b-4506-b757-bb4a291c1be0 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-a9eb773c-b18b-4506-b757-bb4a291c1be0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a9eb773c-b18b-4506-b757-bb4a291c1be0.shg-box.shg-c {
  justify-content: center;
}

#s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 {
  margin: 0 !important;
  overflow: visible;
}

#s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 img.shogun-image {
  /* Add background color handling */
  
}

#s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 .shogun-image-content {
  
    justify-content: center;
  
}

.s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image {
  box-sizing: border-box;
}



.s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image-container {
      position: relative;
    }

    .s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 {
  margin: 0 !important;
  overflow: visible;
}

#s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 img.shogun-image {
  /* Add background color handling */
  
}

#s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 .shogun-image-content {
  
    justify-content: center;
  
}

.s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image {
  box-sizing: border-box;
}



.s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image-container {
      position: relative;
    }

    .s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 {
  margin: 0 !important;
  overflow: visible;
}

#s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 img.shogun-image {
  /* Add background color handling */
  
}

#s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 .shogun-image-content {
  
    justify-content: center;
  
}

.s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image {
  box-sizing: border-box;
}



.s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image-container {
      position: relative;
    }

    .s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 {
  margin: 0 !important;
  overflow: visible;
}

#s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 img.shogun-image {
  /* Add background color handling */
  
}

#s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 .shogun-image-content {
  
    justify-content: center;
  
}

.s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image {
  box-sizing: border-box;
}



.s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image-container {
      position: relative;
    }

    .s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 {
  margin: 0 !important;
  overflow: visible;
}

#s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 img.shogun-image {
  /* Add background color handling */
  
}

#s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 .shogun-image-content {
  
    justify-content: center;
  
}

.s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image {
  box-sizing: border-box;
}



.s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image-container {
      position: relative;
    }

    .s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-03c20eb1-9c48-487c-8b5a-daec6ed2bc10 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-dd21850d-010f-4b78-b945-f82a67c31369 {
  margin-left: auto;
margin-right: auto;
}

#s-175f6fb4-7032-4b07-8c73-1a545bbd40c8 {
  margin-left: auto;
margin-right: auto;
padding-left: 9%;
padding-right: 9%;
}

#s-d9174300-473c-40c2-a39e-779f3d685b11 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-d9174300-473c-40c2-a39e-779f3d685b11 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d9174300-473c-40c2-a39e-779f3d685b11.shg-box.shg-c {
  justify-content: center;
}

#s-bc7192d2-fe14-4f97-84b5-92497d7d72ce {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-bc7192d2-fe14-4f97-84b5-92497d7d72ce {
  margin: 0 !important;
  overflow: visible;
}

#s-bc7192d2-fe14-4f97-84b5-92497d7d72ce-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bc7192d2-fe14-4f97-84b5-92497d7d72ce {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bc7192d2-fe14-4f97-84b5-92497d7d72ce {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bc7192d2-fe14-4f97-84b5-92497d7d72ce img.shogun-image {
  /* Add background color handling */
  
}

#s-bc7192d2-fe14-4f97-84b5-92497d7d72ce img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bc7192d2-fe14-4f97-84b5-92497d7d72ce .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bc7192d2-fe14-4f97-84b5-92497d7d72ce .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bc7192d2-fe14-4f97-84b5-92497d7d72ce .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bc7192d2-fe14-4f97-84b5-92497d7d72ce img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-bc7192d2-fe14-4f97-84b5-92497d7d72ce .shogun-image-content {
  
    justify-content: center;
  
}

.s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image {
  box-sizing: border-box;
}



.s-bc7192d2-fe14-4f97-84b5-92497d7d72ce img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bc7192d2-fe14-4f97-84b5-92497d7d72ce {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image-container {
      position: relative;
    }

    .s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bc7192d2-fe14-4f97-84b5-92497d7d72ce img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-bc7192d2-fe14-4f97-84b5-92497d7d72ce {
  margin: 0 !important;
  overflow: visible;
}

#s-bc7192d2-fe14-4f97-84b5-92497d7d72ce-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bc7192d2-fe14-4f97-84b5-92497d7d72ce {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bc7192d2-fe14-4f97-84b5-92497d7d72ce {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bc7192d2-fe14-4f97-84b5-92497d7d72ce img.shogun-image {
  /* Add background color handling */
  
}

#s-bc7192d2-fe14-4f97-84b5-92497d7d72ce img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bc7192d2-fe14-4f97-84b5-92497d7d72ce .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bc7192d2-fe14-4f97-84b5-92497d7d72ce .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bc7192d2-fe14-4f97-84b5-92497d7d72ce .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bc7192d2-fe14-4f97-84b5-92497d7d72ce img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-bc7192d2-fe14-4f97-84b5-92497d7d72ce .shogun-image-content {
  
    justify-content: center;
  
}

.s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image {
  box-sizing: border-box;
}



.s-bc7192d2-fe14-4f97-84b5-92497d7d72ce img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bc7192d2-fe14-4f97-84b5-92497d7d72ce {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image-container {
      position: relative;
    }

    .s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bc7192d2-fe14-4f97-84b5-92497d7d72ce img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-bc7192d2-fe14-4f97-84b5-92497d7d72ce {
  margin: 0 !important;
  overflow: visible;
}

#s-bc7192d2-fe14-4f97-84b5-92497d7d72ce-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bc7192d2-fe14-4f97-84b5-92497d7d72ce {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bc7192d2-fe14-4f97-84b5-92497d7d72ce {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bc7192d2-fe14-4f97-84b5-92497d7d72ce img.shogun-image {
  /* Add background color handling */
  
}

#s-bc7192d2-fe14-4f97-84b5-92497d7d72ce img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bc7192d2-fe14-4f97-84b5-92497d7d72ce .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bc7192d2-fe14-4f97-84b5-92497d7d72ce .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bc7192d2-fe14-4f97-84b5-92497d7d72ce .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bc7192d2-fe14-4f97-84b5-92497d7d72ce img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-bc7192d2-fe14-4f97-84b5-92497d7d72ce .shogun-image-content {
  
    justify-content: center;
  
}

.s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image {
  box-sizing: border-box;
}



.s-bc7192d2-fe14-4f97-84b5-92497d7d72ce img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bc7192d2-fe14-4f97-84b5-92497d7d72ce {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image-container {
      position: relative;
    }

    .s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bc7192d2-fe14-4f97-84b5-92497d7d72ce img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-bc7192d2-fe14-4f97-84b5-92497d7d72ce {
  margin: 0 !important;
  overflow: visible;
}

#s-bc7192d2-fe14-4f97-84b5-92497d7d72ce-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bc7192d2-fe14-4f97-84b5-92497d7d72ce {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bc7192d2-fe14-4f97-84b5-92497d7d72ce {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bc7192d2-fe14-4f97-84b5-92497d7d72ce img.shogun-image {
  /* Add background color handling */
  
}

#s-bc7192d2-fe14-4f97-84b5-92497d7d72ce img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bc7192d2-fe14-4f97-84b5-92497d7d72ce .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bc7192d2-fe14-4f97-84b5-92497d7d72ce .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bc7192d2-fe14-4f97-84b5-92497d7d72ce .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bc7192d2-fe14-4f97-84b5-92497d7d72ce img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-bc7192d2-fe14-4f97-84b5-92497d7d72ce .shogun-image-content {
  
    justify-content: center;
  
}

.s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image {
  box-sizing: border-box;
}



.s-bc7192d2-fe14-4f97-84b5-92497d7d72ce img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bc7192d2-fe14-4f97-84b5-92497d7d72ce {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image-container {
      position: relative;
    }

    .s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bc7192d2-fe14-4f97-84b5-92497d7d72ce img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-bc7192d2-fe14-4f97-84b5-92497d7d72ce {
  margin: 0 !important;
  overflow: visible;
}

#s-bc7192d2-fe14-4f97-84b5-92497d7d72ce-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bc7192d2-fe14-4f97-84b5-92497d7d72ce {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bc7192d2-fe14-4f97-84b5-92497d7d72ce {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bc7192d2-fe14-4f97-84b5-92497d7d72ce img.shogun-image {
  /* Add background color handling */
  
}

#s-bc7192d2-fe14-4f97-84b5-92497d7d72ce img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bc7192d2-fe14-4f97-84b5-92497d7d72ce .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bc7192d2-fe14-4f97-84b5-92497d7d72ce .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bc7192d2-fe14-4f97-84b5-92497d7d72ce .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bc7192d2-fe14-4f97-84b5-92497d7d72ce img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-bc7192d2-fe14-4f97-84b5-92497d7d72ce .shogun-image-content {
  
    justify-content: center;
  
}

.s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image {
  box-sizing: border-box;
}



.s-bc7192d2-fe14-4f97-84b5-92497d7d72ce img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bc7192d2-fe14-4f97-84b5-92497d7d72ce {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image-container {
      position: relative;
    }

    .s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bc7192d2-fe14-4f97-84b5-92497d7d72ce.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bc7192d2-fe14-4f97-84b5-92497d7d72ce img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-e8454597-bc13-4b07-8b31-55f84768f17a {
  margin-left: auto;
margin-right: auto;
}

#s-0ac25370-f2ba-48f0-985e-7e5cdef47bd0 {
  margin-left: auto;
margin-right: auto;
}

/* Duplicated Styles are also in Category base.css - keep them in sync */

.shg-swiper-container {
  --arrow-button-size: 35px;
  --pagination-height: 32px;
  --swiper-pagination-bullet-size: 14px;
  --swiper-pagination-bottom: 8px;

  position: relative;
  /*
   * In case you are wondering, why it's set to grid, please see the links below:
   * https://github.com/nolimits4web/swiper/issues/3599
   * https://github.com/nolimits4web/swiper/issues/3599#issuecomment-1290283431
   */
  display: grid;
  padding: 8px var(--arrow-button-size) var(--pagination-height)
    var(--arrow-button-size);
}

.shg-swiper:not(.swiper-initialized) {
  visibility: hidden;
  display: flex;
  overflow-x: hidden;
}

.shg-swiper-container > .shg-swiper {
  margin-left: 0;
  margin-right: 0;
}

.shg-swiper:not(.swiper-initialized) ~ .swiper-pagination,
.shg-swiper:not(.swiper-initialized) ~ .swiper-button-prev,
.shg-swiper:not(.swiper-initialized) ~ .swiper-button-next {
  visibility: hidden;
}

.shg-swiper-container > .swiper-button-prev,
.shg-swiper-container > .swiper-button-next {
  top: 0;
  height: calc(100% - var(--pagination-height));
  width: var(--arrow-button-size);
  margin: 0;
}

/* Keep nav aligned to the slider frame; Swiper 12 adds sibling rules with top:50%. */
.shg-swiper-container > .shg-swiper.swiper-horizontal ~ .swiper-button-prev,
.shg-swiper-container > .shg-swiper.swiper-horizontal ~ .swiper-button-next {
  top: 0;
  margin-top: 0;
  height: calc(100% - var(--pagination-height));
}

.shg-swiper-container > .swiper-button-prev {
  left: 0;
}

.shg-swiper-container > .swiper-button-next {
  right: 0;
}

.shg-swiper-container > .swiper-button-next:after,
.shg-swiper-container > .swiper-button-prev:after {
  /* Ditch default Swiper arrow */
  display: none;
}

.shg-swiper-container > .swiper-button-next svg,
.shg-swiper-container > .swiper-button-prev svg {
  width: var(--arrow-button-size);
  height: var(--arrow-button-size);
}

#s-93dd122a-c84a-4954-90e4-ed2ad132c414 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-93dd122a-c84a-4954-90e4-ed2ad132c414 {
  display: none;
}
#s-93dd122a-c84a-4954-90e4-ed2ad132c414, #wrap-s-93dd122a-c84a-4954-90e4-ed2ad132c414, #wrap-content-s-93dd122a-c84a-4954-90e4-ed2ad132c414 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-93dd122a-c84a-4954-90e4-ed2ad132c414 {
  display: none;
}
#s-93dd122a-c84a-4954-90e4-ed2ad132c414, #wrap-s-93dd122a-c84a-4954-90e4-ed2ad132c414, #wrap-content-s-93dd122a-c84a-4954-90e4-ed2ad132c414 { display: none !important; }}
/* Duplicated Styles are also in Category dynamic.css.liquid - keep them in sync */

#slider-v3-s-93dd122a-c84a-4954-90e4-ed2ad132c414 {
  --swiper-pagination-color: rgba(255, 255, 255, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(255, 255, 255, 1) !important;
  --swiper-pagination-bullet-active-color: rgba(113, 113, 113, 1) !important;
  --arrow-button-size: 35px !important;
  --swiper-pagination-bullet-size: 14px !important;
  
}

#slider-v3-s-93dd122a-c84a-4954-90e4-ed2ad132c414 > .swiper-button-prev,
#slider-v3-s-93dd122a-c84a-4954-90e4-ed2ad132c414 > .swiper-button-next {
  
}

#slider-v3-s-93dd122a-c84a-4954-90e4-ed2ad132c414 > .swiper-button-prev svg,
#slider-v3-s-93dd122a-c84a-4954-90e4-ed2ad132c414 > .swiper-button-next svg {
  fill: rgba(255, 255, 255, 1) !important;
  stroke: rgba(255, 255, 255, 1) !important;
  
}

#slider-v3-s-93dd122a-c84a-4954-90e4-ed2ad132c414 > .swiper-button-prev {
  
  display:  none ;
  align-items: center;
}

#slider-v3-s-93dd122a-c84a-4954-90e4-ed2ad132c414 > .swiper-button-next {
  
  display:  none ;
  align-items: center;
}

#slider-v3-s-93dd122a-c84a-4954-90e4-ed2ad132c414 > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-93dd122a-c84a-4954-90e4-ed2ad132c414 .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-93dd122a-c84a-4954-90e4-ed2ad132c414 .swiper-pagination-bullet-active {
  background-color: rgba(113, 113, 113, 1) !important;
  width: calc(14px * 1) !important;
  height: 14px !important;
  border-radius:  50px  !important;
}

#slider-v3-s-93dd122a-c84a-4954-90e4-ed2ad132c414 .swiper-pagination {
  position:  initial ;
  display: flex;
  margin-top:  8px ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}

#s-becdcc45-f0d0-4c10-9d87-36cfd29b7067 {
  margin-left: auto;
margin-right: auto;
padding-top: 50px;
padding-bottom: 0px;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 1200px){#s-becdcc45-f0d0-4c10-9d87-36cfd29b7067 {
  display: none;
}
#s-becdcc45-f0d0-4c10-9d87-36cfd29b7067, #wrap-s-becdcc45-f0d0-4c10-9d87-36cfd29b7067, #wrap-content-s-becdcc45-f0d0-4c10-9d87-36cfd29b7067 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-becdcc45-f0d0-4c10-9d87-36cfd29b7067 {
  display: none;
}
#s-becdcc45-f0d0-4c10-9d87-36cfd29b7067, #wrap-s-becdcc45-f0d0-4c10-9d87-36cfd29b7067, #wrap-content-s-becdcc45-f0d0-4c10-9d87-36cfd29b7067 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-becdcc45-f0d0-4c10-9d87-36cfd29b7067 {
  
}
}







#s-becdcc45-f0d0-4c10-9d87-36cfd29b7067 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-becdcc45-f0d0-4c10-9d87-36cfd29b7067.shg-box.shg-c {
  justify-content: center;
}

#s-a7c8e86c-0413-47a1-8bb7-79fef00dd809 {
  margin-left: auto;
margin-right: auto;
}

#s-30ea2d17-3cb6-4e75-b1f8-2429ce726adc {
  margin-left: auto;
margin-right: auto;
padding-left: 15%;
padding-bottom: 25px;
padding-right: 15%;
}

#s-d5c445c7-d85d-4b83-b016-3e0bb7fd1330 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
}








#s-d5c445c7-d85d-4b83-b016-3e0bb7fd1330 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d5c445c7-d85d-4b83-b016-3e0bb7fd1330.shg-box.shg-c {
  justify-content: center;
}

#s-2fceaa75-568a-4441-b9e6-07b31230e181 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
}

/* Duplicated Styles are also in Category dynamic.css.liquid - keep them in sync */

#slider-v3-s-2fceaa75-568a-4441-b9e6-07b31230e181 {
  --swiper-pagination-color: rgba(255, 255, 255, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(255, 255, 255, 1) !important;
  --swiper-pagination-bullet-active-color: rgba(113, 113, 113, 1) !important;
  --arrow-button-size: 35px !important;
  --swiper-pagination-bullet-size: 14px !important;
  
}

#slider-v3-s-2fceaa75-568a-4441-b9e6-07b31230e181 > .swiper-button-prev,
#slider-v3-s-2fceaa75-568a-4441-b9e6-07b31230e181 > .swiper-button-next {
  
}

#slider-v3-s-2fceaa75-568a-4441-b9e6-07b31230e181 > .swiper-button-prev svg,
#slider-v3-s-2fceaa75-568a-4441-b9e6-07b31230e181 > .swiper-button-next svg {
  fill: rgba(255, 255, 255, 1) !important;
  stroke: rgba(255, 255, 255, 1) !important;
  
}

#slider-v3-s-2fceaa75-568a-4441-b9e6-07b31230e181 > .swiper-button-prev {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-2fceaa75-568a-4441-b9e6-07b31230e181 > .swiper-button-next {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-2fceaa75-568a-4441-b9e6-07b31230e181 > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-2fceaa75-568a-4441-b9e6-07b31230e181 .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-2fceaa75-568a-4441-b9e6-07b31230e181 .swiper-pagination-bullet-active {
  background-color: rgba(113, 113, 113, 1) !important;
  width: calc(14px * 1) !important;
  height: 14px !important;
  border-radius:  50px  !important;
}

#slider-v3-s-2fceaa75-568a-4441-b9e6-07b31230e181 .swiper-pagination {
  position:  initial ;
  display: flex;
  margin-top:  8px ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}

#s-a2980d6a-2bd2-46e7-8805-64f0d624bb7c {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-a2980d6a-2bd2-46e7-8805-64f0d624bb7c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a2980d6a-2bd2-46e7-8805-64f0d624bb7c.shg-box.shg-c {
  justify-content: center;
}

#s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 {
  margin: 0 !important;
  overflow: visible;
}

#s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 img.shogun-image {
  /* Add background color handling */
  
}

#s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image {
  box-sizing: border-box;
}



.s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image-container {
      position: relative;
    }

    .s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 {
  margin: 0 !important;
  overflow: visible;
}

#s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 img.shogun-image {
  /* Add background color handling */
  
}

#s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image {
  box-sizing: border-box;
}



.s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image-container {
      position: relative;
    }

    .s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 {
  margin: 0 !important;
  overflow: visible;
}

#s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 img.shogun-image {
  /* Add background color handling */
  
}

#s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image {
  box-sizing: border-box;
}



.s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image-container {
      position: relative;
    }

    .s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 {
  margin: 0 !important;
  overflow: visible;
}

#s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 img.shogun-image {
  /* Add background color handling */
  
}

#s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image {
  box-sizing: border-box;
}



.s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image-container {
      position: relative;
    }

    .s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 {
  margin: 0 !important;
  overflow: visible;
}

#s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 img.shogun-image {
  /* Add background color handling */
  
}

#s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image {
  box-sizing: border-box;
}



.s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image-container {
      position: relative;
    }

    .s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ed4c97a3-4ef7-41db-a7f1-f05a6c5d35a2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-98cfa3bd-4ede-4796-b968-3796fecf28a6 {
  margin-left: auto;
margin-right: auto;
}

#s-0c952e75-d27b-4955-a0fa-449d62b7dc2d {
  margin-left: auto;
margin-right: auto;
padding-left: 5%;
padding-right: 5%;
}

#s-cf5c451a-76cd-4248-b541-82eda79eadc7 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-cf5c451a-76cd-4248-b541-82eda79eadc7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-cf5c451a-76cd-4248-b541-82eda79eadc7.shg-box.shg-c {
  justify-content: center;
}

#s-867403dd-b713-4c56-9228-287a8e5e72ac {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-867403dd-b713-4c56-9228-287a8e5e72ac {
  margin: 0 !important;
  overflow: visible;
}

#s-867403dd-b713-4c56-9228-287a8e5e72ac-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-867403dd-b713-4c56-9228-287a8e5e72ac {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-867403dd-b713-4c56-9228-287a8e5e72ac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-867403dd-b713-4c56-9228-287a8e5e72ac img.shogun-image {
  /* Add background color handling */
  
}

#s-867403dd-b713-4c56-9228-287a8e5e72ac img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-867403dd-b713-4c56-9228-287a8e5e72ac .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-867403dd-b713-4c56-9228-287a8e5e72ac .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-867403dd-b713-4c56-9228-287a8e5e72ac .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-867403dd-b713-4c56-9228-287a8e5e72ac img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-867403dd-b713-4c56-9228-287a8e5e72ac .shogun-image-content {
  
    justify-content: center;
  
}

.s-867403dd-b713-4c56-9228-287a8e5e72ac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image {
  box-sizing: border-box;
}



.s-867403dd-b713-4c56-9228-287a8e5e72ac img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-867403dd-b713-4c56-9228-287a8e5e72ac {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image-container {
      position: relative;
    }

    .s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-867403dd-b713-4c56-9228-287a8e5e72ac img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-867403dd-b713-4c56-9228-287a8e5e72ac {
  margin: 0 !important;
  overflow: visible;
}

#s-867403dd-b713-4c56-9228-287a8e5e72ac-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-867403dd-b713-4c56-9228-287a8e5e72ac {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-867403dd-b713-4c56-9228-287a8e5e72ac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-867403dd-b713-4c56-9228-287a8e5e72ac img.shogun-image {
  /* Add background color handling */
  
}

#s-867403dd-b713-4c56-9228-287a8e5e72ac img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-867403dd-b713-4c56-9228-287a8e5e72ac .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-867403dd-b713-4c56-9228-287a8e5e72ac .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-867403dd-b713-4c56-9228-287a8e5e72ac .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-867403dd-b713-4c56-9228-287a8e5e72ac img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-867403dd-b713-4c56-9228-287a8e5e72ac .shogun-image-content {
  
    justify-content: center;
  
}

.s-867403dd-b713-4c56-9228-287a8e5e72ac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image {
  box-sizing: border-box;
}



.s-867403dd-b713-4c56-9228-287a8e5e72ac img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-867403dd-b713-4c56-9228-287a8e5e72ac {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image-container {
      position: relative;
    }

    .s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-867403dd-b713-4c56-9228-287a8e5e72ac img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-867403dd-b713-4c56-9228-287a8e5e72ac {
  margin: 0 !important;
  overflow: visible;
}

#s-867403dd-b713-4c56-9228-287a8e5e72ac-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-867403dd-b713-4c56-9228-287a8e5e72ac {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-867403dd-b713-4c56-9228-287a8e5e72ac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-867403dd-b713-4c56-9228-287a8e5e72ac img.shogun-image {
  /* Add background color handling */
  
}

#s-867403dd-b713-4c56-9228-287a8e5e72ac img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-867403dd-b713-4c56-9228-287a8e5e72ac .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-867403dd-b713-4c56-9228-287a8e5e72ac .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-867403dd-b713-4c56-9228-287a8e5e72ac .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-867403dd-b713-4c56-9228-287a8e5e72ac img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-867403dd-b713-4c56-9228-287a8e5e72ac .shogun-image-content {
  
    justify-content: center;
  
}

.s-867403dd-b713-4c56-9228-287a8e5e72ac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image {
  box-sizing: border-box;
}



.s-867403dd-b713-4c56-9228-287a8e5e72ac img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-867403dd-b713-4c56-9228-287a8e5e72ac {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image-container {
      position: relative;
    }

    .s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-867403dd-b713-4c56-9228-287a8e5e72ac img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-867403dd-b713-4c56-9228-287a8e5e72ac {
  margin: 0 !important;
  overflow: visible;
}

#s-867403dd-b713-4c56-9228-287a8e5e72ac-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-867403dd-b713-4c56-9228-287a8e5e72ac {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-867403dd-b713-4c56-9228-287a8e5e72ac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-867403dd-b713-4c56-9228-287a8e5e72ac img.shogun-image {
  /* Add background color handling */
  
}

#s-867403dd-b713-4c56-9228-287a8e5e72ac img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-867403dd-b713-4c56-9228-287a8e5e72ac .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-867403dd-b713-4c56-9228-287a8e5e72ac .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-867403dd-b713-4c56-9228-287a8e5e72ac .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-867403dd-b713-4c56-9228-287a8e5e72ac img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-867403dd-b713-4c56-9228-287a8e5e72ac .shogun-image-content {
  
    justify-content: center;
  
}

.s-867403dd-b713-4c56-9228-287a8e5e72ac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image {
  box-sizing: border-box;
}



.s-867403dd-b713-4c56-9228-287a8e5e72ac img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-867403dd-b713-4c56-9228-287a8e5e72ac {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image-container {
      position: relative;
    }

    .s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-867403dd-b713-4c56-9228-287a8e5e72ac img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-867403dd-b713-4c56-9228-287a8e5e72ac {
  margin: 0 !important;
  overflow: visible;
}

#s-867403dd-b713-4c56-9228-287a8e5e72ac-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-867403dd-b713-4c56-9228-287a8e5e72ac {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-867403dd-b713-4c56-9228-287a8e5e72ac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-867403dd-b713-4c56-9228-287a8e5e72ac img.shogun-image {
  /* Add background color handling */
  
}

#s-867403dd-b713-4c56-9228-287a8e5e72ac img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-867403dd-b713-4c56-9228-287a8e5e72ac .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-867403dd-b713-4c56-9228-287a8e5e72ac .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-867403dd-b713-4c56-9228-287a8e5e72ac .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-867403dd-b713-4c56-9228-287a8e5e72ac img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-867403dd-b713-4c56-9228-287a8e5e72ac .shogun-image-content {
  
    justify-content: center;
  
}

.s-867403dd-b713-4c56-9228-287a8e5e72ac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image {
  box-sizing: border-box;
}



.s-867403dd-b713-4c56-9228-287a8e5e72ac img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-867403dd-b713-4c56-9228-287a8e5e72ac {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image-container {
      position: relative;
    }

    .s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-867403dd-b713-4c56-9228-287a8e5e72ac.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-867403dd-b713-4c56-9228-287a8e5e72ac img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-98ae828b-e638-4be8-aa11-ddc94ae2b86d {
  margin-left: auto;
margin-right: auto;
}

#s-4d543690-e239-4b53-89b0-72fb6d3fea55 {
  margin-left: auto;
margin-right: auto;
padding-left: 12%;
padding-right: 12%;
}

#s-66f8a7db-c262-4ab0-8e06-975c59ee8166 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-66f8a7db-c262-4ab0-8e06-975c59ee8166 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-66f8a7db-c262-4ab0-8e06-975c59ee8166.shg-box.shg-c {
  justify-content: center;
}

#s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 {
  margin: 0 !important;
  overflow: visible;
}

#s-38cf8a1e-73f3-46ee-a292-6befc23dcba6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 img.shogun-image {
  /* Add background color handling */
  
}

#s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image {
  box-sizing: border-box;
}



.s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image-container {
      position: relative;
    }

    .s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 {
  margin: 0 !important;
  overflow: visible;
}

#s-38cf8a1e-73f3-46ee-a292-6befc23dcba6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 img.shogun-image {
  /* Add background color handling */
  
}

#s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image {
  box-sizing: border-box;
}



.s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image-container {
      position: relative;
    }

    .s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 {
  margin: 0 !important;
  overflow: visible;
}

#s-38cf8a1e-73f3-46ee-a292-6befc23dcba6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 img.shogun-image {
  /* Add background color handling */
  
}

#s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image {
  box-sizing: border-box;
}



.s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image-container {
      position: relative;
    }

    .s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 {
  margin: 0 !important;
  overflow: visible;
}

#s-38cf8a1e-73f3-46ee-a292-6befc23dcba6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 img.shogun-image {
  /* Add background color handling */
  
}

#s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image {
  box-sizing: border-box;
}



.s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image-container {
      position: relative;
    }

    .s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 {
  margin: 0 !important;
  overflow: visible;
}

#s-38cf8a1e-73f3-46ee-a292-6befc23dcba6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 img.shogun-image {
  /* Add background color handling */
  
}

#s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image {
  box-sizing: border-box;
}



.s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image-container {
      position: relative;
    }

    .s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-38cf8a1e-73f3-46ee-a292-6befc23dcba6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-38cf8a1e-73f3-46ee-a292-6befc23dcba6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-3e018161-9c0e-4197-b30b-d1b050a1098b {
  margin-left: auto;
margin-right: auto;
}

#s-9b162fee-8870-46fe-ab67-b4eb452ecc56 {
  margin-left: auto;
margin-right: auto;
padding-left: 14%;
padding-right: 14%;
}

#s-f14bf675-f934-402d-a30b-d8e846c93ed0 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-f14bf675-f934-402d-a30b-d8e846c93ed0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f14bf675-f934-402d-a30b-d8e846c93ed0.shg-box.shg-c {
  justify-content: center;
}

#s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd {
  margin: 0 !important;
  overflow: visible;
}

#s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd img.shogun-image {
  /* Add background color handling */
  
}

#s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd .shogun-image-content {
  
    justify-content: center;
  
}

.s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image {
  box-sizing: border-box;
}



.s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image-container {
      position: relative;
    }

    .s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd {
  margin: 0 !important;
  overflow: visible;
}

#s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd img.shogun-image {
  /* Add background color handling */
  
}

#s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd .shogun-image-content {
  
    justify-content: center;
  
}

.s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image {
  box-sizing: border-box;
}



.s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image-container {
      position: relative;
    }

    .s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd {
  margin: 0 !important;
  overflow: visible;
}

#s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd img.shogun-image {
  /* Add background color handling */
  
}

#s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd .shogun-image-content {
  
    justify-content: center;
  
}

.s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image {
  box-sizing: border-box;
}



.s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image-container {
      position: relative;
    }

    .s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd {
  margin: 0 !important;
  overflow: visible;
}

#s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd img.shogun-image {
  /* Add background color handling */
  
}

#s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd .shogun-image-content {
  
    justify-content: center;
  
}

.s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image {
  box-sizing: border-box;
}



.s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image-container {
      position: relative;
    }

    .s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd {
  margin: 0 !important;
  overflow: visible;
}

#s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd img.shogun-image {
  /* Add background color handling */
  
}

#s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd .shogun-image-content {
  
    justify-content: center;
  
}

.s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image {
  box-sizing: border-box;
}



.s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image-container {
      position: relative;
    }

    .s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ea28a471-b867-4a4c-a3f1-4a6cb72ed8dd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-ea01fdf6-6f97-4bdd-9814-f6fb9d3c4e38 {
  margin-left: auto;
margin-right: auto;
}

#s-f2dc69b2-efe8-4ac0-bbf6-688f98d9b2e9 {
  margin-left: auto;
margin-right: auto;
padding-left: 11%;
padding-right: 11%;
}

#s-2d3e2904-e2d8-4dc9-83c2-ee5d4e28b154 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-2d3e2904-e2d8-4dc9-83c2-ee5d4e28b154 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2d3e2904-e2d8-4dc9-83c2-ee5d4e28b154.shg-box.shg-c {
  justify-content: center;
}

#s-57f857ce-76da-4a43-b44e-78f928b63f2d {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-57f857ce-76da-4a43-b44e-78f928b63f2d {
  margin: 0 !important;
  overflow: visible;
}

#s-57f857ce-76da-4a43-b44e-78f928b63f2d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-57f857ce-76da-4a43-b44e-78f928b63f2d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-57f857ce-76da-4a43-b44e-78f928b63f2d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-57f857ce-76da-4a43-b44e-78f928b63f2d img.shogun-image {
  /* Add background color handling */
  
}

#s-57f857ce-76da-4a43-b44e-78f928b63f2d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-57f857ce-76da-4a43-b44e-78f928b63f2d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-57f857ce-76da-4a43-b44e-78f928b63f2d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-57f857ce-76da-4a43-b44e-78f928b63f2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-57f857ce-76da-4a43-b44e-78f928b63f2d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-57f857ce-76da-4a43-b44e-78f928b63f2d .shogun-image-content {
  
    justify-content: center;
  
}

.s-57f857ce-76da-4a43-b44e-78f928b63f2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image {
  box-sizing: border-box;
}



.s-57f857ce-76da-4a43-b44e-78f928b63f2d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-57f857ce-76da-4a43-b44e-78f928b63f2d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image-container {
      position: relative;
    }

    .s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-57f857ce-76da-4a43-b44e-78f928b63f2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-57f857ce-76da-4a43-b44e-78f928b63f2d {
  margin: 0 !important;
  overflow: visible;
}

#s-57f857ce-76da-4a43-b44e-78f928b63f2d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-57f857ce-76da-4a43-b44e-78f928b63f2d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-57f857ce-76da-4a43-b44e-78f928b63f2d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-57f857ce-76da-4a43-b44e-78f928b63f2d img.shogun-image {
  /* Add background color handling */
  
}

#s-57f857ce-76da-4a43-b44e-78f928b63f2d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-57f857ce-76da-4a43-b44e-78f928b63f2d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-57f857ce-76da-4a43-b44e-78f928b63f2d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-57f857ce-76da-4a43-b44e-78f928b63f2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-57f857ce-76da-4a43-b44e-78f928b63f2d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-57f857ce-76da-4a43-b44e-78f928b63f2d .shogun-image-content {
  
    justify-content: center;
  
}

.s-57f857ce-76da-4a43-b44e-78f928b63f2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image {
  box-sizing: border-box;
}



.s-57f857ce-76da-4a43-b44e-78f928b63f2d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-57f857ce-76da-4a43-b44e-78f928b63f2d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image-container {
      position: relative;
    }

    .s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-57f857ce-76da-4a43-b44e-78f928b63f2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-57f857ce-76da-4a43-b44e-78f928b63f2d {
  margin: 0 !important;
  overflow: visible;
}

#s-57f857ce-76da-4a43-b44e-78f928b63f2d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-57f857ce-76da-4a43-b44e-78f928b63f2d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-57f857ce-76da-4a43-b44e-78f928b63f2d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-57f857ce-76da-4a43-b44e-78f928b63f2d img.shogun-image {
  /* Add background color handling */
  
}

#s-57f857ce-76da-4a43-b44e-78f928b63f2d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-57f857ce-76da-4a43-b44e-78f928b63f2d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-57f857ce-76da-4a43-b44e-78f928b63f2d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-57f857ce-76da-4a43-b44e-78f928b63f2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-57f857ce-76da-4a43-b44e-78f928b63f2d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-57f857ce-76da-4a43-b44e-78f928b63f2d .shogun-image-content {
  
    justify-content: center;
  
}

.s-57f857ce-76da-4a43-b44e-78f928b63f2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image {
  box-sizing: border-box;
}



.s-57f857ce-76da-4a43-b44e-78f928b63f2d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-57f857ce-76da-4a43-b44e-78f928b63f2d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image-container {
      position: relative;
    }

    .s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-57f857ce-76da-4a43-b44e-78f928b63f2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-57f857ce-76da-4a43-b44e-78f928b63f2d {
  margin: 0 !important;
  overflow: visible;
}

#s-57f857ce-76da-4a43-b44e-78f928b63f2d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-57f857ce-76da-4a43-b44e-78f928b63f2d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-57f857ce-76da-4a43-b44e-78f928b63f2d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-57f857ce-76da-4a43-b44e-78f928b63f2d img.shogun-image {
  /* Add background color handling */
  
}

#s-57f857ce-76da-4a43-b44e-78f928b63f2d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-57f857ce-76da-4a43-b44e-78f928b63f2d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-57f857ce-76da-4a43-b44e-78f928b63f2d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-57f857ce-76da-4a43-b44e-78f928b63f2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-57f857ce-76da-4a43-b44e-78f928b63f2d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-57f857ce-76da-4a43-b44e-78f928b63f2d .shogun-image-content {
  
    justify-content: center;
  
}

.s-57f857ce-76da-4a43-b44e-78f928b63f2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image {
  box-sizing: border-box;
}



.s-57f857ce-76da-4a43-b44e-78f928b63f2d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-57f857ce-76da-4a43-b44e-78f928b63f2d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image-container {
      position: relative;
    }

    .s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-57f857ce-76da-4a43-b44e-78f928b63f2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-57f857ce-76da-4a43-b44e-78f928b63f2d {
  margin: 0 !important;
  overflow: visible;
}

#s-57f857ce-76da-4a43-b44e-78f928b63f2d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-57f857ce-76da-4a43-b44e-78f928b63f2d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-57f857ce-76da-4a43-b44e-78f928b63f2d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-57f857ce-76da-4a43-b44e-78f928b63f2d img.shogun-image {
  /* Add background color handling */
  
}

#s-57f857ce-76da-4a43-b44e-78f928b63f2d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-57f857ce-76da-4a43-b44e-78f928b63f2d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-57f857ce-76da-4a43-b44e-78f928b63f2d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-57f857ce-76da-4a43-b44e-78f928b63f2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-57f857ce-76da-4a43-b44e-78f928b63f2d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-57f857ce-76da-4a43-b44e-78f928b63f2d .shogun-image-content {
  
    justify-content: center;
  
}

.s-57f857ce-76da-4a43-b44e-78f928b63f2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image {
  box-sizing: border-box;
}



.s-57f857ce-76da-4a43-b44e-78f928b63f2d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-57f857ce-76da-4a43-b44e-78f928b63f2d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image-container {
      position: relative;
    }

    .s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-57f857ce-76da-4a43-b44e-78f928b63f2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-57f857ce-76da-4a43-b44e-78f928b63f2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-d7c3e3a8-d845-40ac-aecc-201c8fb49d27 {
  margin-left: auto;
margin-right: auto;
}

#s-45c32202-f70b-4cc3-b9c1-252a5570a7dd {
  margin-left: auto;
margin-right: auto;
padding-left: 10%;
padding-right: 10%;
}

#s-f7b1ff6c-1822-4ab2-a035-a91c0a5623ff {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-f7b1ff6c-1822-4ab2-a035-a91c0a5623ff > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f7b1ff6c-1822-4ab2-a035-a91c0a5623ff.shg-box.shg-c {
  justify-content: center;
}

#s-410f77f8-3bf1-4063-8010-4016f1104e64 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-410f77f8-3bf1-4063-8010-4016f1104e64 {
  margin: 0 !important;
  overflow: visible;
}

#s-410f77f8-3bf1-4063-8010-4016f1104e64-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-410f77f8-3bf1-4063-8010-4016f1104e64 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-410f77f8-3bf1-4063-8010-4016f1104e64 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-410f77f8-3bf1-4063-8010-4016f1104e64 img.shogun-image {
  /* Add background color handling */
  
}

#s-410f77f8-3bf1-4063-8010-4016f1104e64 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-410f77f8-3bf1-4063-8010-4016f1104e64 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-410f77f8-3bf1-4063-8010-4016f1104e64 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-410f77f8-3bf1-4063-8010-4016f1104e64 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-410f77f8-3bf1-4063-8010-4016f1104e64 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-410f77f8-3bf1-4063-8010-4016f1104e64 .shogun-image-content {
  
    justify-content: center;
  
}

.s-410f77f8-3bf1-4063-8010-4016f1104e64.shg-align-container {
  display: flex;
  justify-content: center
}

.s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image {
  box-sizing: border-box;
}



.s-410f77f8-3bf1-4063-8010-4016f1104e64 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-410f77f8-3bf1-4063-8010-4016f1104e64 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image-container {
      position: relative;
    }

    .s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-410f77f8-3bf1-4063-8010-4016f1104e64 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-410f77f8-3bf1-4063-8010-4016f1104e64 {
  margin: 0 !important;
  overflow: visible;
}

#s-410f77f8-3bf1-4063-8010-4016f1104e64-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-410f77f8-3bf1-4063-8010-4016f1104e64 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-410f77f8-3bf1-4063-8010-4016f1104e64 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-410f77f8-3bf1-4063-8010-4016f1104e64 img.shogun-image {
  /* Add background color handling */
  
}

#s-410f77f8-3bf1-4063-8010-4016f1104e64 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-410f77f8-3bf1-4063-8010-4016f1104e64 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-410f77f8-3bf1-4063-8010-4016f1104e64 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-410f77f8-3bf1-4063-8010-4016f1104e64 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-410f77f8-3bf1-4063-8010-4016f1104e64 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-410f77f8-3bf1-4063-8010-4016f1104e64 .shogun-image-content {
  
    justify-content: center;
  
}

.s-410f77f8-3bf1-4063-8010-4016f1104e64.shg-align-container {
  display: flex;
  justify-content: center
}

.s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image {
  box-sizing: border-box;
}



.s-410f77f8-3bf1-4063-8010-4016f1104e64 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-410f77f8-3bf1-4063-8010-4016f1104e64 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image-container {
      position: relative;
    }

    .s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-410f77f8-3bf1-4063-8010-4016f1104e64 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-410f77f8-3bf1-4063-8010-4016f1104e64 {
  margin: 0 !important;
  overflow: visible;
}

#s-410f77f8-3bf1-4063-8010-4016f1104e64-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-410f77f8-3bf1-4063-8010-4016f1104e64 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-410f77f8-3bf1-4063-8010-4016f1104e64 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-410f77f8-3bf1-4063-8010-4016f1104e64 img.shogun-image {
  /* Add background color handling */
  
}

#s-410f77f8-3bf1-4063-8010-4016f1104e64 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-410f77f8-3bf1-4063-8010-4016f1104e64 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-410f77f8-3bf1-4063-8010-4016f1104e64 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-410f77f8-3bf1-4063-8010-4016f1104e64 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-410f77f8-3bf1-4063-8010-4016f1104e64 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-410f77f8-3bf1-4063-8010-4016f1104e64 .shogun-image-content {
  
    justify-content: center;
  
}

.s-410f77f8-3bf1-4063-8010-4016f1104e64.shg-align-container {
  display: flex;
  justify-content: center
}

.s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image {
  box-sizing: border-box;
}



.s-410f77f8-3bf1-4063-8010-4016f1104e64 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-410f77f8-3bf1-4063-8010-4016f1104e64 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image-container {
      position: relative;
    }

    .s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-410f77f8-3bf1-4063-8010-4016f1104e64 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-410f77f8-3bf1-4063-8010-4016f1104e64 {
  margin: 0 !important;
  overflow: visible;
}

#s-410f77f8-3bf1-4063-8010-4016f1104e64-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-410f77f8-3bf1-4063-8010-4016f1104e64 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-410f77f8-3bf1-4063-8010-4016f1104e64 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-410f77f8-3bf1-4063-8010-4016f1104e64 img.shogun-image {
  /* Add background color handling */
  
}

#s-410f77f8-3bf1-4063-8010-4016f1104e64 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-410f77f8-3bf1-4063-8010-4016f1104e64 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-410f77f8-3bf1-4063-8010-4016f1104e64 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-410f77f8-3bf1-4063-8010-4016f1104e64 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-410f77f8-3bf1-4063-8010-4016f1104e64 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-410f77f8-3bf1-4063-8010-4016f1104e64 .shogun-image-content {
  
    justify-content: center;
  
}

.s-410f77f8-3bf1-4063-8010-4016f1104e64.shg-align-container {
  display: flex;
  justify-content: center
}

.s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image {
  box-sizing: border-box;
}



.s-410f77f8-3bf1-4063-8010-4016f1104e64 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-410f77f8-3bf1-4063-8010-4016f1104e64 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image-container {
      position: relative;
    }

    .s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-410f77f8-3bf1-4063-8010-4016f1104e64 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-410f77f8-3bf1-4063-8010-4016f1104e64 {
  margin: 0 !important;
  overflow: visible;
}

#s-410f77f8-3bf1-4063-8010-4016f1104e64-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-410f77f8-3bf1-4063-8010-4016f1104e64 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-410f77f8-3bf1-4063-8010-4016f1104e64 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-410f77f8-3bf1-4063-8010-4016f1104e64 img.shogun-image {
  /* Add background color handling */
  
}

#s-410f77f8-3bf1-4063-8010-4016f1104e64 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-410f77f8-3bf1-4063-8010-4016f1104e64 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-410f77f8-3bf1-4063-8010-4016f1104e64 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-410f77f8-3bf1-4063-8010-4016f1104e64 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-410f77f8-3bf1-4063-8010-4016f1104e64 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-410f77f8-3bf1-4063-8010-4016f1104e64 .shogun-image-content {
  
    justify-content: center;
  
}

.s-410f77f8-3bf1-4063-8010-4016f1104e64.shg-align-container {
  display: flex;
  justify-content: center
}

.s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image {
  box-sizing: border-box;
}



.s-410f77f8-3bf1-4063-8010-4016f1104e64 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-410f77f8-3bf1-4063-8010-4016f1104e64 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image-container {
      position: relative;
    }

    .s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-410f77f8-3bf1-4063-8010-4016f1104e64.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-410f77f8-3bf1-4063-8010-4016f1104e64 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-bcb94020-af19-43f4-923a-2e85228bfb11 {
  margin-left: auto;
margin-right: auto;
}

#s-2ee9e0bd-ce8e-47eb-92a4-b3ceff23d6f4 {
  margin-left: auto;
margin-right: auto;
padding-left: 12%;
padding-right: 12%;
}

#s-bb55f120-eb58-4a96-b679-6000e6484438 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-bb55f120-eb58-4a96-b679-6000e6484438 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bb55f120-eb58-4a96-b679-6000e6484438.shg-box.shg-c {
  justify-content: center;
}

#s-bf4b313b-6bb1-4099-a702-5ae99334b12a {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-bf4b313b-6bb1-4099-a702-5ae99334b12a {
  margin: 0 !important;
  overflow: visible;
}

#s-bf4b313b-6bb1-4099-a702-5ae99334b12a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bf4b313b-6bb1-4099-a702-5ae99334b12a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bf4b313b-6bb1-4099-a702-5ae99334b12a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bf4b313b-6bb1-4099-a702-5ae99334b12a img.shogun-image {
  /* Add background color handling */
  
}

#s-bf4b313b-6bb1-4099-a702-5ae99334b12a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bf4b313b-6bb1-4099-a702-5ae99334b12a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bf4b313b-6bb1-4099-a702-5ae99334b12a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bf4b313b-6bb1-4099-a702-5ae99334b12a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bf4b313b-6bb1-4099-a702-5ae99334b12a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-bf4b313b-6bb1-4099-a702-5ae99334b12a .shogun-image-content {
  
    justify-content: center;
  
}

.s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image {
  box-sizing: border-box;
}



.s-bf4b313b-6bb1-4099-a702-5ae99334b12a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bf4b313b-6bb1-4099-a702-5ae99334b12a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image-container {
      position: relative;
    }

    .s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bf4b313b-6bb1-4099-a702-5ae99334b12a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-bf4b313b-6bb1-4099-a702-5ae99334b12a {
  margin: 0 !important;
  overflow: visible;
}

#s-bf4b313b-6bb1-4099-a702-5ae99334b12a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bf4b313b-6bb1-4099-a702-5ae99334b12a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bf4b313b-6bb1-4099-a702-5ae99334b12a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bf4b313b-6bb1-4099-a702-5ae99334b12a img.shogun-image {
  /* Add background color handling */
  
}

#s-bf4b313b-6bb1-4099-a702-5ae99334b12a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bf4b313b-6bb1-4099-a702-5ae99334b12a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bf4b313b-6bb1-4099-a702-5ae99334b12a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bf4b313b-6bb1-4099-a702-5ae99334b12a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bf4b313b-6bb1-4099-a702-5ae99334b12a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-bf4b313b-6bb1-4099-a702-5ae99334b12a .shogun-image-content {
  
    justify-content: center;
  
}

.s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image {
  box-sizing: border-box;
}



.s-bf4b313b-6bb1-4099-a702-5ae99334b12a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bf4b313b-6bb1-4099-a702-5ae99334b12a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image-container {
      position: relative;
    }

    .s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bf4b313b-6bb1-4099-a702-5ae99334b12a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-bf4b313b-6bb1-4099-a702-5ae99334b12a {
  margin: 0 !important;
  overflow: visible;
}

#s-bf4b313b-6bb1-4099-a702-5ae99334b12a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bf4b313b-6bb1-4099-a702-5ae99334b12a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bf4b313b-6bb1-4099-a702-5ae99334b12a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bf4b313b-6bb1-4099-a702-5ae99334b12a img.shogun-image {
  /* Add background color handling */
  
}

#s-bf4b313b-6bb1-4099-a702-5ae99334b12a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bf4b313b-6bb1-4099-a702-5ae99334b12a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bf4b313b-6bb1-4099-a702-5ae99334b12a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bf4b313b-6bb1-4099-a702-5ae99334b12a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bf4b313b-6bb1-4099-a702-5ae99334b12a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-bf4b313b-6bb1-4099-a702-5ae99334b12a .shogun-image-content {
  
    justify-content: center;
  
}

.s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image {
  box-sizing: border-box;
}



.s-bf4b313b-6bb1-4099-a702-5ae99334b12a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bf4b313b-6bb1-4099-a702-5ae99334b12a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image-container {
      position: relative;
    }

    .s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bf4b313b-6bb1-4099-a702-5ae99334b12a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-bf4b313b-6bb1-4099-a702-5ae99334b12a {
  margin: 0 !important;
  overflow: visible;
}

#s-bf4b313b-6bb1-4099-a702-5ae99334b12a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bf4b313b-6bb1-4099-a702-5ae99334b12a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bf4b313b-6bb1-4099-a702-5ae99334b12a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bf4b313b-6bb1-4099-a702-5ae99334b12a img.shogun-image {
  /* Add background color handling */
  
}

#s-bf4b313b-6bb1-4099-a702-5ae99334b12a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bf4b313b-6bb1-4099-a702-5ae99334b12a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bf4b313b-6bb1-4099-a702-5ae99334b12a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bf4b313b-6bb1-4099-a702-5ae99334b12a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bf4b313b-6bb1-4099-a702-5ae99334b12a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-bf4b313b-6bb1-4099-a702-5ae99334b12a .shogun-image-content {
  
    justify-content: center;
  
}

.s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image {
  box-sizing: border-box;
}



.s-bf4b313b-6bb1-4099-a702-5ae99334b12a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bf4b313b-6bb1-4099-a702-5ae99334b12a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image-container {
      position: relative;
    }

    .s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bf4b313b-6bb1-4099-a702-5ae99334b12a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-bf4b313b-6bb1-4099-a702-5ae99334b12a {
  margin: 0 !important;
  overflow: visible;
}

#s-bf4b313b-6bb1-4099-a702-5ae99334b12a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bf4b313b-6bb1-4099-a702-5ae99334b12a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bf4b313b-6bb1-4099-a702-5ae99334b12a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bf4b313b-6bb1-4099-a702-5ae99334b12a img.shogun-image {
  /* Add background color handling */
  
}

#s-bf4b313b-6bb1-4099-a702-5ae99334b12a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bf4b313b-6bb1-4099-a702-5ae99334b12a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bf4b313b-6bb1-4099-a702-5ae99334b12a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bf4b313b-6bb1-4099-a702-5ae99334b12a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bf4b313b-6bb1-4099-a702-5ae99334b12a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-bf4b313b-6bb1-4099-a702-5ae99334b12a .shogun-image-content {
  
    justify-content: center;
  
}

.s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image {
  box-sizing: border-box;
}



.s-bf4b313b-6bb1-4099-a702-5ae99334b12a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bf4b313b-6bb1-4099-a702-5ae99334b12a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image-container {
      position: relative;
    }

    .s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bf4b313b-6bb1-4099-a702-5ae99334b12a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bf4b313b-6bb1-4099-a702-5ae99334b12a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-54cb20ef-691c-49de-8d89-e5ba149f1835 {
  margin-left: auto;
margin-right: auto;
}

#s-1d4d45c5-db0c-45d3-86df-cc33072b41f1 {
  margin-left: auto;
margin-right: auto;
padding-left: 12%;
padding-right: 12%;
}

#s-0d9d3653-cfa4-4b89-b71e-615abed1ee4e {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-0d9d3653-cfa4-4b89-b71e-615abed1ee4e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0d9d3653-cfa4-4b89-b71e-615abed1ee4e.shg-box.shg-c {
  justify-content: center;
}

#s-46f98664-2c18-430c-89c6-f85d86675883 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-46f98664-2c18-430c-89c6-f85d86675883 {
  margin: 0 !important;
  overflow: visible;
}

#s-46f98664-2c18-430c-89c6-f85d86675883-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-46f98664-2c18-430c-89c6-f85d86675883 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-46f98664-2c18-430c-89c6-f85d86675883 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-46f98664-2c18-430c-89c6-f85d86675883 img.shogun-image {
  /* Add background color handling */
  
}

#s-46f98664-2c18-430c-89c6-f85d86675883 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-46f98664-2c18-430c-89c6-f85d86675883 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-46f98664-2c18-430c-89c6-f85d86675883 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-46f98664-2c18-430c-89c6-f85d86675883 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-46f98664-2c18-430c-89c6-f85d86675883 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-46f98664-2c18-430c-89c6-f85d86675883 .shogun-image-content {
  
    justify-content: center;
  
}

.s-46f98664-2c18-430c-89c6-f85d86675883.shg-align-container {
  display: flex;
  justify-content: center
}

.s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image {
  box-sizing: border-box;
}



.s-46f98664-2c18-430c-89c6-f85d86675883 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-46f98664-2c18-430c-89c6-f85d86675883 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image-container {
      position: relative;
    }

    .s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-46f98664-2c18-430c-89c6-f85d86675883 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-46f98664-2c18-430c-89c6-f85d86675883 {
  margin: 0 !important;
  overflow: visible;
}

#s-46f98664-2c18-430c-89c6-f85d86675883-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-46f98664-2c18-430c-89c6-f85d86675883 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-46f98664-2c18-430c-89c6-f85d86675883 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-46f98664-2c18-430c-89c6-f85d86675883 img.shogun-image {
  /* Add background color handling */
  
}

#s-46f98664-2c18-430c-89c6-f85d86675883 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-46f98664-2c18-430c-89c6-f85d86675883 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-46f98664-2c18-430c-89c6-f85d86675883 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-46f98664-2c18-430c-89c6-f85d86675883 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-46f98664-2c18-430c-89c6-f85d86675883 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-46f98664-2c18-430c-89c6-f85d86675883 .shogun-image-content {
  
    justify-content: center;
  
}

.s-46f98664-2c18-430c-89c6-f85d86675883.shg-align-container {
  display: flex;
  justify-content: center
}

.s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image {
  box-sizing: border-box;
}



.s-46f98664-2c18-430c-89c6-f85d86675883 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-46f98664-2c18-430c-89c6-f85d86675883 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image-container {
      position: relative;
    }

    .s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-46f98664-2c18-430c-89c6-f85d86675883 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-46f98664-2c18-430c-89c6-f85d86675883 {
  margin: 0 !important;
  overflow: visible;
}

#s-46f98664-2c18-430c-89c6-f85d86675883-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-46f98664-2c18-430c-89c6-f85d86675883 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-46f98664-2c18-430c-89c6-f85d86675883 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-46f98664-2c18-430c-89c6-f85d86675883 img.shogun-image {
  /* Add background color handling */
  
}

#s-46f98664-2c18-430c-89c6-f85d86675883 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-46f98664-2c18-430c-89c6-f85d86675883 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-46f98664-2c18-430c-89c6-f85d86675883 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-46f98664-2c18-430c-89c6-f85d86675883 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-46f98664-2c18-430c-89c6-f85d86675883 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-46f98664-2c18-430c-89c6-f85d86675883 .shogun-image-content {
  
    justify-content: center;
  
}

.s-46f98664-2c18-430c-89c6-f85d86675883.shg-align-container {
  display: flex;
  justify-content: center
}

.s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image {
  box-sizing: border-box;
}



.s-46f98664-2c18-430c-89c6-f85d86675883 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-46f98664-2c18-430c-89c6-f85d86675883 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image-container {
      position: relative;
    }

    .s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-46f98664-2c18-430c-89c6-f85d86675883 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-46f98664-2c18-430c-89c6-f85d86675883 {
  margin: 0 !important;
  overflow: visible;
}

#s-46f98664-2c18-430c-89c6-f85d86675883-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-46f98664-2c18-430c-89c6-f85d86675883 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-46f98664-2c18-430c-89c6-f85d86675883 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-46f98664-2c18-430c-89c6-f85d86675883 img.shogun-image {
  /* Add background color handling */
  
}

#s-46f98664-2c18-430c-89c6-f85d86675883 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-46f98664-2c18-430c-89c6-f85d86675883 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-46f98664-2c18-430c-89c6-f85d86675883 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-46f98664-2c18-430c-89c6-f85d86675883 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-46f98664-2c18-430c-89c6-f85d86675883 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-46f98664-2c18-430c-89c6-f85d86675883 .shogun-image-content {
  
    justify-content: center;
  
}

.s-46f98664-2c18-430c-89c6-f85d86675883.shg-align-container {
  display: flex;
  justify-content: center
}

.s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image {
  box-sizing: border-box;
}



.s-46f98664-2c18-430c-89c6-f85d86675883 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-46f98664-2c18-430c-89c6-f85d86675883 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image-container {
      position: relative;
    }

    .s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-46f98664-2c18-430c-89c6-f85d86675883 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-46f98664-2c18-430c-89c6-f85d86675883 {
  margin: 0 !important;
  overflow: visible;
}

#s-46f98664-2c18-430c-89c6-f85d86675883-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-46f98664-2c18-430c-89c6-f85d86675883 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-46f98664-2c18-430c-89c6-f85d86675883 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-46f98664-2c18-430c-89c6-f85d86675883 img.shogun-image {
  /* Add background color handling */
  
}

#s-46f98664-2c18-430c-89c6-f85d86675883 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-46f98664-2c18-430c-89c6-f85d86675883 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-46f98664-2c18-430c-89c6-f85d86675883 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-46f98664-2c18-430c-89c6-f85d86675883 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-46f98664-2c18-430c-89c6-f85d86675883 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-46f98664-2c18-430c-89c6-f85d86675883 .shogun-image-content {
  
    justify-content: center;
  
}

.s-46f98664-2c18-430c-89c6-f85d86675883.shg-align-container {
  display: flex;
  justify-content: center
}

.s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image {
  box-sizing: border-box;
}



.s-46f98664-2c18-430c-89c6-f85d86675883 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-46f98664-2c18-430c-89c6-f85d86675883 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image-container {
      position: relative;
    }

    .s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-46f98664-2c18-430c-89c6-f85d86675883.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-46f98664-2c18-430c-89c6-f85d86675883 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-6c08d559-86c0-41ae-979a-5aafbf01d7a8 {
  margin-left: auto;
margin-right: auto;
}

#s-b8adccde-4bfe-4bb2-b6ff-00c78c614950 {
  margin-left: auto;
margin-right: auto;
padding-left: 7%;
padding-right: 7%;
}

#s-76ed0eeb-a159-411c-9c79-6b9a24fc908a {
  margin-left: auto;
margin-right: auto;
padding-top: 25px;
padding-left: 45%;
padding-right: 45%;
}

#s-76ed0eeb-a159-411c-9c79-6b9a24fc908a hr {
  border-top: 2px solid #ddd;
}

#s-774f3822-32b2-4a01-9a8f-040c50dfef41 {
  margin-left: auto;
margin-right: auto;
padding-left: 5%;
padding-bottom: 100px;
padding-right: 5%;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-774f3822-32b2-4a01-9a8f-040c50dfef41 {
  
}
}@media (max-width: 767px){#s-774f3822-32b2-4a01-9a8f-040c50dfef41 {
  
}
}







#s-774f3822-32b2-4a01-9a8f-040c50dfef41 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-774f3822-32b2-4a01-9a8f-040c50dfef41.shg-box.shg-c {
  justify-content: center;
}

#s-2e0644ab-8173-45ef-911a-3537e500fa51 {
  margin-left: auto;
margin-right: auto;
padding-top: 25px;
padding-left: 45%;
padding-right: 45%;
}

#s-2e0644ab-8173-45ef-911a-3537e500fa51 hr {
  border-top: 2px solid #ddd;
}

#s-0b2f0c91-eac1-4d1b-ac20-c7cff0163d36 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
}
@media (min-width: 1200px){#s-0b2f0c91-eac1-4d1b-ac20-c7cff0163d36 {
  
}
}
#s-8edb9780-2865-426b-9f87-48d6b2ef8a10 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 6%;
padding-bottom: 15px;
padding-right: 6%;
}

#s-7839b884-2280-45e0-8948-ee5bd9e9124c {
  margin-left: auto;
margin-right: auto;
padding-left: 10%;
padding-right: 10%;
text-align: left;
}

#s-fe2525da-a50e-4cc6-9f1a-51ebccf5749a {
  margin-left: auto;
margin-right: auto;
padding-top: 50px;
padding-left: 10%;
padding-bottom: 50px;
padding-right: 10%;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 1200px){#s-fe2525da-a50e-4cc6-9f1a-51ebccf5749a {
  display: none;
}
#s-fe2525da-a50e-4cc6-9f1a-51ebccf5749a, #wrap-s-fe2525da-a50e-4cc6-9f1a-51ebccf5749a, #wrap-content-s-fe2525da-a50e-4cc6-9f1a-51ebccf5749a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-fe2525da-a50e-4cc6-9f1a-51ebccf5749a {
  display: none;
}
#s-fe2525da-a50e-4cc6-9f1a-51ebccf5749a, #wrap-s-fe2525da-a50e-4cc6-9f1a-51ebccf5749a, #wrap-content-s-fe2525da-a50e-4cc6-9f1a-51ebccf5749a { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-fe2525da-a50e-4cc6-9f1a-51ebccf5749a {
  display: none;
}
#s-fe2525da-a50e-4cc6-9f1a-51ebccf5749a, #wrap-s-fe2525da-a50e-4cc6-9f1a-51ebccf5749a, #wrap-content-s-fe2525da-a50e-4cc6-9f1a-51ebccf5749a { display: none !important; }}@media (max-width: 767px){#s-fe2525da-a50e-4cc6-9f1a-51ebccf5749a {
  display: none;
}
#s-fe2525da-a50e-4cc6-9f1a-51ebccf5749a, #wrap-s-fe2525da-a50e-4cc6-9f1a-51ebccf5749a, #wrap-content-s-fe2525da-a50e-4cc6-9f1a-51ebccf5749a { display: none !important; }}







#s-fe2525da-a50e-4cc6-9f1a-51ebccf5749a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fe2525da-a50e-4cc6-9f1a-51ebccf5749a.shg-box.shg-c {
  justify-content: center;
}

#s-5b073687-2f72-40f0-ac3e-7ef69af97dd1 {
  margin-left: 0px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-5b073687-2f72-40f0-ac3e-7ef69af97dd1 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5b073687-2f72-40f0-ac3e-7ef69af97dd1 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-5b073687-2f72-40f0-ac3e-7ef69af97dd1 {
  
}
}@media (max-width: 767px){#s-5b073687-2f72-40f0-ac3e-7ef69af97dd1 {
  
}
}
@media (min-width: 0px) {
[id="s-5b073687-2f72-40f0-ac3e-7ef69af97dd1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5b073687-2f72-40f0-ac3e-7ef69af97dd1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-5b073687-2f72-40f0-ac3e-7ef69af97dd1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-5b073687-2f72-40f0-ac3e-7ef69af97dd1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-39d76dc7-6165-49c9-bd35-7473e04fbc6c {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
min-height: 670px;
background-attachment: scroll;
}
@media (min-width: 1200px){#s-39d76dc7-6165-49c9-bd35-7473e04fbc6c {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-39d76dc7-6165-49c9-bd35-7473e04fbc6c {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-39d76dc7-6165-49c9-bd35-7473e04fbc6c {
  
}
}@media (max-width: 767px){#s-39d76dc7-6165-49c9-bd35-7473e04fbc6c {
  
}
}







#s-39d76dc7-6165-49c9-bd35-7473e04fbc6c > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
  display: block;
}#s-39d76dc7-6165-49c9-bd35-7473e04fbc6c.shg-box.shg-c {
  justify-content: center;
}

#s-41551bb7-f55d-4842-9488-eea73340589e {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-41551bb7-f55d-4842-9488-eea73340589e {
  margin: 0 !important;
  overflow: visible;
}

#s-41551bb7-f55d-4842-9488-eea73340589e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-41551bb7-f55d-4842-9488-eea73340589e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-41551bb7-f55d-4842-9488-eea73340589e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-41551bb7-f55d-4842-9488-eea73340589e img.shogun-image {
  /* Add background color handling */
  
}

#s-41551bb7-f55d-4842-9488-eea73340589e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-41551bb7-f55d-4842-9488-eea73340589e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-41551bb7-f55d-4842-9488-eea73340589e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-41551bb7-f55d-4842-9488-eea73340589e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-41551bb7-f55d-4842-9488-eea73340589e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-41551bb7-f55d-4842-9488-eea73340589e .shogun-image-content {
  
    justify-content: center;
  
}

.s-41551bb7-f55d-4842-9488-eea73340589e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image {
  box-sizing: border-box;
}



.s-41551bb7-f55d-4842-9488-eea73340589e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-41551bb7-f55d-4842-9488-eea73340589e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image-container {
      position: relative;
    }

    .s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-41551bb7-f55d-4842-9488-eea73340589e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-41551bb7-f55d-4842-9488-eea73340589e {
  margin: 0 !important;
  overflow: visible;
}

#s-41551bb7-f55d-4842-9488-eea73340589e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-41551bb7-f55d-4842-9488-eea73340589e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-41551bb7-f55d-4842-9488-eea73340589e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-41551bb7-f55d-4842-9488-eea73340589e img.shogun-image {
  /* Add background color handling */
  
}

#s-41551bb7-f55d-4842-9488-eea73340589e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-41551bb7-f55d-4842-9488-eea73340589e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-41551bb7-f55d-4842-9488-eea73340589e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-41551bb7-f55d-4842-9488-eea73340589e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-41551bb7-f55d-4842-9488-eea73340589e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-41551bb7-f55d-4842-9488-eea73340589e .shogun-image-content {
  
    justify-content: center;
  
}

.s-41551bb7-f55d-4842-9488-eea73340589e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image {
  box-sizing: border-box;
}



.s-41551bb7-f55d-4842-9488-eea73340589e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-41551bb7-f55d-4842-9488-eea73340589e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image-container {
      position: relative;
    }

    .s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-41551bb7-f55d-4842-9488-eea73340589e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-41551bb7-f55d-4842-9488-eea73340589e {
  margin: 0 !important;
  overflow: visible;
}

#s-41551bb7-f55d-4842-9488-eea73340589e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-41551bb7-f55d-4842-9488-eea73340589e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-41551bb7-f55d-4842-9488-eea73340589e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-41551bb7-f55d-4842-9488-eea73340589e img.shogun-image {
  /* Add background color handling */
  
}

#s-41551bb7-f55d-4842-9488-eea73340589e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-41551bb7-f55d-4842-9488-eea73340589e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-41551bb7-f55d-4842-9488-eea73340589e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-41551bb7-f55d-4842-9488-eea73340589e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-41551bb7-f55d-4842-9488-eea73340589e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-41551bb7-f55d-4842-9488-eea73340589e .shogun-image-content {
  
    justify-content: center;
  
}

.s-41551bb7-f55d-4842-9488-eea73340589e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image {
  box-sizing: border-box;
}



.s-41551bb7-f55d-4842-9488-eea73340589e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-41551bb7-f55d-4842-9488-eea73340589e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image-container {
      position: relative;
    }

    .s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-41551bb7-f55d-4842-9488-eea73340589e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-41551bb7-f55d-4842-9488-eea73340589e {
  margin: 0 !important;
  overflow: visible;
}

#s-41551bb7-f55d-4842-9488-eea73340589e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-41551bb7-f55d-4842-9488-eea73340589e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-41551bb7-f55d-4842-9488-eea73340589e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-41551bb7-f55d-4842-9488-eea73340589e img.shogun-image {
  /* Add background color handling */
  
}

#s-41551bb7-f55d-4842-9488-eea73340589e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-41551bb7-f55d-4842-9488-eea73340589e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-41551bb7-f55d-4842-9488-eea73340589e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-41551bb7-f55d-4842-9488-eea73340589e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-41551bb7-f55d-4842-9488-eea73340589e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-41551bb7-f55d-4842-9488-eea73340589e .shogun-image-content {
  
    justify-content: center;
  
}

.s-41551bb7-f55d-4842-9488-eea73340589e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image {
  box-sizing: border-box;
}



.s-41551bb7-f55d-4842-9488-eea73340589e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-41551bb7-f55d-4842-9488-eea73340589e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image-container {
      position: relative;
    }

    .s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-41551bb7-f55d-4842-9488-eea73340589e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-41551bb7-f55d-4842-9488-eea73340589e {
  margin: 0 !important;
  overflow: visible;
}

#s-41551bb7-f55d-4842-9488-eea73340589e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-41551bb7-f55d-4842-9488-eea73340589e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-41551bb7-f55d-4842-9488-eea73340589e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-41551bb7-f55d-4842-9488-eea73340589e img.shogun-image {
  /* Add background color handling */
  
}

#s-41551bb7-f55d-4842-9488-eea73340589e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-41551bb7-f55d-4842-9488-eea73340589e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-41551bb7-f55d-4842-9488-eea73340589e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-41551bb7-f55d-4842-9488-eea73340589e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-41551bb7-f55d-4842-9488-eea73340589e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-41551bb7-f55d-4842-9488-eea73340589e .shogun-image-content {
  
    justify-content: center;
  
}

.s-41551bb7-f55d-4842-9488-eea73340589e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image {
  box-sizing: border-box;
}



.s-41551bb7-f55d-4842-9488-eea73340589e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-41551bb7-f55d-4842-9488-eea73340589e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image-container {
      position: relative;
    }

    .s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-41551bb7-f55d-4842-9488-eea73340589e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-41551bb7-f55d-4842-9488-eea73340589e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-8fa9661e-3175-453f-b200-34b5032e7b08 {
  padding-left: 0%;
padding-right: 5%;
background-color: rgba(255, 255, 255, 0);
}
@media (min-width: 1200px){#s-8fa9661e-3175-453f-b200-34b5032e7b08 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-8fa9661e-3175-453f-b200-34b5032e7b08 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-8fa9661e-3175-453f-b200-34b5032e7b08 {
  
}
}@media (max-width: 767px){#s-8fa9661e-3175-453f-b200-34b5032e7b08 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 60px;
padding-bottom: 60px;
}
}







#s-8fa9661e-3175-453f-b200-34b5032e7b08 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
  display: block;
}#s-8fa9661e-3175-453f-b200-34b5032e7b08.shg-box.shg-c {
  justify-content: center;
}

#s-a2c7142b-5a9b-423c-93e1-bcd3c56ee025 {
  margin-left: auto;
margin-right: auto;
padding-bottom: 15px;
}

#s-2d658c09-2668-4056-871a-b4ff2d8e0fdb {
  margin-left: auto;
margin-right: auto;
}

#s-8d5097b6-2e42-456c-9bb5-63287903f1e1 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 5%;
padding-bottom: 25px;
padding-right: 5%;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 1200px){#s-8d5097b6-2e42-456c-9bb5-63287903f1e1 {
  display: none;
}
#s-8d5097b6-2e42-456c-9bb5-63287903f1e1, #wrap-s-8d5097b6-2e42-456c-9bb5-63287903f1e1, #wrap-content-s-8d5097b6-2e42-456c-9bb5-63287903f1e1 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8d5097b6-2e42-456c-9bb5-63287903f1e1 {
  display: none;
}
#s-8d5097b6-2e42-456c-9bb5-63287903f1e1, #wrap-s-8d5097b6-2e42-456c-9bb5-63287903f1e1, #wrap-content-s-8d5097b6-2e42-456c-9bb5-63287903f1e1 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-8d5097b6-2e42-456c-9bb5-63287903f1e1 {
  display: none;
}
#s-8d5097b6-2e42-456c-9bb5-63287903f1e1, #wrap-s-8d5097b6-2e42-456c-9bb5-63287903f1e1, #wrap-content-s-8d5097b6-2e42-456c-9bb5-63287903f1e1 { display: none !important; }}@media (max-width: 767px){#s-8d5097b6-2e42-456c-9bb5-63287903f1e1 {
  display: none;
}
#s-8d5097b6-2e42-456c-9bb5-63287903f1e1, #wrap-s-8d5097b6-2e42-456c-9bb5-63287903f1e1, #wrap-content-s-8d5097b6-2e42-456c-9bb5-63287903f1e1 { display: none !important; }}







#s-8d5097b6-2e42-456c-9bb5-63287903f1e1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8d5097b6-2e42-456c-9bb5-63287903f1e1.shg-box.shg-c {
  justify-content: center;
}

#s-1f671127-16f9-4865-9738-593e6b0d8779 {
  padding-left: 0%;
padding-right: 0%;
background-color: rgba(255, 255, 255, 0);
}
@media (min-width: 1200px){#s-1f671127-16f9-4865-9738-593e6b0d8779 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-1f671127-16f9-4865-9738-593e6b0d8779 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-1f671127-16f9-4865-9738-593e6b0d8779 {
  
}
}@media (max-width: 767px){#s-1f671127-16f9-4865-9738-593e6b0d8779 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 60px;
padding-bottom: 60px;
}
}







#s-1f671127-16f9-4865-9738-593e6b0d8779 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
  display: block;
}#s-1f671127-16f9-4865-9738-593e6b0d8779.shg-box.shg-c {
  justify-content: center;
}

#s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a {
  margin: 0 !important;
  overflow: visible;
}

#s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a img.shogun-image {
  /* Add background color handling */
  
}

#s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a .shogun-image-content {
  
    justify-content: center;
  
}

.s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image {
  box-sizing: border-box;
}



.s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image-container {
      position: relative;
    }

    .s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a {
  margin: 0 !important;
  overflow: visible;
}

#s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a img.shogun-image {
  /* Add background color handling */
  
}

#s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a .shogun-image-content {
  
    justify-content: center;
  
}

.s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image {
  box-sizing: border-box;
}



.s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image-container {
      position: relative;
    }

    .s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a {
  margin: 0 !important;
  overflow: visible;
}

#s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a img.shogun-image {
  /* Add background color handling */
  
}

#s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a .shogun-image-content {
  
    justify-content: center;
  
}

.s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image {
  box-sizing: border-box;
}



.s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image-container {
      position: relative;
    }

    .s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a {
  margin: 0 !important;
  overflow: visible;
}

#s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a img.shogun-image {
  /* Add background color handling */
  
}

#s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a .shogun-image-content {
  
    justify-content: center;
  
}

.s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image {
  box-sizing: border-box;
}



.s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image-container {
      position: relative;
    }

    .s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a {
  margin: 0 !important;
  overflow: visible;
}

#s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a img.shogun-image {
  /* Add background color handling */
  
}

#s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a .shogun-image-content {
  
    justify-content: center;
  
}

.s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image {
  box-sizing: border-box;
}



.s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image-container {
      position: relative;
    }

    .s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c7b2ba9c-b024-4984-a9bc-9fd69ad5604a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-d216d132-32ce-4a5e-833c-eadd9fdb37de {
  margin-left: auto;
margin-right: auto;
padding-bottom: 15px;
}

#s-89eac5aa-cfc6-4abc-9a1a-5c071854a972 {
  margin-left: auto;
margin-right: auto;
padding-left: 6%;
padding-right: 6%;
}

#s-8bbf8488-8fa3-42cb-b12b-3a6ad3b6a2e2 {
  margin-left: auto;
margin-right: auto;
padding-top: 25px;
padding-left: 45%;
padding-right: 45%;
}

#s-8bbf8488-8fa3-42cb-b12b-3a6ad3b6a2e2 hr {
  border-top: 2px solid #ddd;
}

#s-fe086f98-e1bf-4d6a-a6d2-9bea34608a1f {
  margin-left: auto;
margin-right: auto;
padding-left: 10%;
padding-bottom: 50px;
padding-right: 10%;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-fe086f98-e1bf-4d6a-a6d2-9bea34608a1f {
  display: none;
}
#s-fe086f98-e1bf-4d6a-a6d2-9bea34608a1f, #wrap-s-fe086f98-e1bf-4d6a-a6d2-9bea34608a1f, #wrap-content-s-fe086f98-e1bf-4d6a-a6d2-9bea34608a1f { display: none !important; }}@media (max-width: 767px){#s-fe086f98-e1bf-4d6a-a6d2-9bea34608a1f {
  display: none;
}
#s-fe086f98-e1bf-4d6a-a6d2-9bea34608a1f, #wrap-s-fe086f98-e1bf-4d6a-a6d2-9bea34608a1f, #wrap-content-s-fe086f98-e1bf-4d6a-a6d2-9bea34608a1f { display: none !important; }}







#s-fe086f98-e1bf-4d6a-a6d2-9bea34608a1f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fe086f98-e1bf-4d6a-a6d2-9bea34608a1f.shg-box.shg-c {
  justify-content: center;
}

#s-9da9675b-21e9-499b-ab41-b2c3749ec225 {
  margin-left: auto;
margin-right: auto;
padding-left: 0%;
padding-right: 0%;
}

@media (min-width: 0px) {
[id="s-9da9675b-21e9-499b-ab41-b2c3749ec225"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9da9675b-21e9-499b-ab41-b2c3749ec225"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 12.5px);
}

}

@media (min-width: 992px) {
[id="s-9da9675b-21e9-499b-ab41-b2c3749ec225"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 12.5px);
}

}

@media (min-width: 1200px) {
[id="s-9da9675b-21e9-499b-ab41-b2c3749ec225"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 12.5px);
}

}

#s-f0491ee6-8275-49a5-be7f-1d1151429bca {
  margin-left: auto;
margin-right: auto;
min-height: 670px;
}








#s-f0491ee6-8275-49a5-be7f-1d1151429bca > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f0491ee6-8275-49a5-be7f-1d1151429bca.shg-box.shg-c {
  justify-content: center;
}

#s-70887adc-5745-47dc-b52e-057a5d43b499 {
  margin-left: auto;
margin-right: auto;
}

#s-6fe57ef1-27ce-48cf-9b99-ae1c79332a8b {
  margin-left: auto;
margin-right: auto;
padding-left: 0%;
padding-bottom: 25px;
padding-right: 0%;
}

#s-2fbcd8e2-d0a8-4af9-ae06-128efd14b417 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-2fbcd8e2-d0a8-4af9-ae06-128efd14b417 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2fbcd8e2-d0a8-4af9-ae06-128efd14b417.shg-box.shg-c {
  justify-content: center;
}

#s-772048bd-f470-4acf-821b-07f1d0f5b1ad {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
}

/* Duplicated Styles are also in Category dynamic.css.liquid - keep them in sync */

#slider-v3-s-772048bd-f470-4acf-821b-07f1d0f5b1ad {
  --swiper-pagination-color: rgba(252, 249, 249, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(252, 249, 249, 1) !important;
  --swiper-pagination-bullet-active-color: rgba(113, 113, 113, 1) !important;
  --arrow-button-size: 35px !important;
  --swiper-pagination-bullet-size: 14px !important;
  
}

#slider-v3-s-772048bd-f470-4acf-821b-07f1d0f5b1ad > .swiper-button-prev,
#slider-v3-s-772048bd-f470-4acf-821b-07f1d0f5b1ad > .swiper-button-next {
  
}

#slider-v3-s-772048bd-f470-4acf-821b-07f1d0f5b1ad > .swiper-button-prev svg,
#slider-v3-s-772048bd-f470-4acf-821b-07f1d0f5b1ad > .swiper-button-next svg {
  fill: rgba(255, 255, 255, 1) !important;
  stroke: rgba(255, 255, 255, 1) !important;
  
}

#slider-v3-s-772048bd-f470-4acf-821b-07f1d0f5b1ad > .swiper-button-prev {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-772048bd-f470-4acf-821b-07f1d0f5b1ad > .swiper-button-next {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-772048bd-f470-4acf-821b-07f1d0f5b1ad > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-772048bd-f470-4acf-821b-07f1d0f5b1ad .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-772048bd-f470-4acf-821b-07f1d0f5b1ad .swiper-pagination-bullet-active {
  background-color: rgba(113, 113, 113, 1) !important;
  width: calc(14px * 1) !important;
  height: 14px !important;
  border-radius:  50px  !important;
}

#slider-v3-s-772048bd-f470-4acf-821b-07f1d0f5b1ad .swiper-pagination {
  position:  initial ;
  display: flex;
  margin-top:  8px ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}

#s-5b150207-6119-4ad4-97da-37a9f42788b1 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1080/1350;
text-align: center;
}

#s-5b150207-6119-4ad4-97da-37a9f42788b1 {
  margin: 0 !important;
  overflow: visible;
}

#s-5b150207-6119-4ad4-97da-37a9f42788b1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5b150207-6119-4ad4-97da-37a9f42788b1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5b150207-6119-4ad4-97da-37a9f42788b1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5b150207-6119-4ad4-97da-37a9f42788b1 img.shogun-image {
  /* Add background color handling */
  
}

#s-5b150207-6119-4ad4-97da-37a9f42788b1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5b150207-6119-4ad4-97da-37a9f42788b1 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-5b150207-6119-4ad4-97da-37a9f42788b1 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b150207-6119-4ad4-97da-37a9f42788b1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5b150207-6119-4ad4-97da-37a9f42788b1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-5b150207-6119-4ad4-97da-37a9f42788b1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5b150207-6119-4ad4-97da-37a9f42788b1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image {
  box-sizing: border-box;
}



.s-5b150207-6119-4ad4-97da-37a9f42788b1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5b150207-6119-4ad4-97da-37a9f42788b1 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image-container {
      position: relative;
    }

    .s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b150207-6119-4ad4-97da-37a9f42788b1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-5b150207-6119-4ad4-97da-37a9f42788b1 {
  margin: 0 !important;
  overflow: visible;
}

#s-5b150207-6119-4ad4-97da-37a9f42788b1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5b150207-6119-4ad4-97da-37a9f42788b1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5b150207-6119-4ad4-97da-37a9f42788b1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5b150207-6119-4ad4-97da-37a9f42788b1 img.shogun-image {
  /* Add background color handling */
  
}

#s-5b150207-6119-4ad4-97da-37a9f42788b1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5b150207-6119-4ad4-97da-37a9f42788b1 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-5b150207-6119-4ad4-97da-37a9f42788b1 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b150207-6119-4ad4-97da-37a9f42788b1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5b150207-6119-4ad4-97da-37a9f42788b1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-5b150207-6119-4ad4-97da-37a9f42788b1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5b150207-6119-4ad4-97da-37a9f42788b1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image {
  box-sizing: border-box;
}



.s-5b150207-6119-4ad4-97da-37a9f42788b1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5b150207-6119-4ad4-97da-37a9f42788b1 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image-container {
      position: relative;
    }

    .s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b150207-6119-4ad4-97da-37a9f42788b1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-5b150207-6119-4ad4-97da-37a9f42788b1 {
  margin: 0 !important;
  overflow: visible;
}

#s-5b150207-6119-4ad4-97da-37a9f42788b1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5b150207-6119-4ad4-97da-37a9f42788b1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5b150207-6119-4ad4-97da-37a9f42788b1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5b150207-6119-4ad4-97da-37a9f42788b1 img.shogun-image {
  /* Add background color handling */
  
}

#s-5b150207-6119-4ad4-97da-37a9f42788b1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5b150207-6119-4ad4-97da-37a9f42788b1 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-5b150207-6119-4ad4-97da-37a9f42788b1 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b150207-6119-4ad4-97da-37a9f42788b1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5b150207-6119-4ad4-97da-37a9f42788b1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-5b150207-6119-4ad4-97da-37a9f42788b1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5b150207-6119-4ad4-97da-37a9f42788b1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image {
  box-sizing: border-box;
}



.s-5b150207-6119-4ad4-97da-37a9f42788b1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5b150207-6119-4ad4-97da-37a9f42788b1 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image-container {
      position: relative;
    }

    .s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b150207-6119-4ad4-97da-37a9f42788b1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-5b150207-6119-4ad4-97da-37a9f42788b1 {
  margin: 0 !important;
  overflow: visible;
}

#s-5b150207-6119-4ad4-97da-37a9f42788b1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5b150207-6119-4ad4-97da-37a9f42788b1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5b150207-6119-4ad4-97da-37a9f42788b1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5b150207-6119-4ad4-97da-37a9f42788b1 img.shogun-image {
  /* Add background color handling */
  
}

#s-5b150207-6119-4ad4-97da-37a9f42788b1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5b150207-6119-4ad4-97da-37a9f42788b1 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-5b150207-6119-4ad4-97da-37a9f42788b1 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b150207-6119-4ad4-97da-37a9f42788b1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5b150207-6119-4ad4-97da-37a9f42788b1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-5b150207-6119-4ad4-97da-37a9f42788b1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5b150207-6119-4ad4-97da-37a9f42788b1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image {
  box-sizing: border-box;
}



.s-5b150207-6119-4ad4-97da-37a9f42788b1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5b150207-6119-4ad4-97da-37a9f42788b1 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image-container {
      position: relative;
    }

    .s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b150207-6119-4ad4-97da-37a9f42788b1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-5b150207-6119-4ad4-97da-37a9f42788b1 {
  margin: 0 !important;
  overflow: visible;
}

#s-5b150207-6119-4ad4-97da-37a9f42788b1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5b150207-6119-4ad4-97da-37a9f42788b1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5b150207-6119-4ad4-97da-37a9f42788b1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5b150207-6119-4ad4-97da-37a9f42788b1 img.shogun-image {
  /* Add background color handling */
  
}

#s-5b150207-6119-4ad4-97da-37a9f42788b1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5b150207-6119-4ad4-97da-37a9f42788b1 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-5b150207-6119-4ad4-97da-37a9f42788b1 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b150207-6119-4ad4-97da-37a9f42788b1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5b150207-6119-4ad4-97da-37a9f42788b1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-5b150207-6119-4ad4-97da-37a9f42788b1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5b150207-6119-4ad4-97da-37a9f42788b1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image {
  box-sizing: border-box;
}



.s-5b150207-6119-4ad4-97da-37a9f42788b1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5b150207-6119-4ad4-97da-37a9f42788b1 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image-container {
      position: relative;
    }

    .s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b150207-6119-4ad4-97da-37a9f42788b1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b150207-6119-4ad4-97da-37a9f42788b1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-b94dc704-5941-435e-b96a-3ed9c08f1f8d {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1080/1350;
text-align: center;
}

#s-b94dc704-5941-435e-b96a-3ed9c08f1f8d {
  margin: 0 !important;
  overflow: visible;
}

#s-b94dc704-5941-435e-b96a-3ed9c08f1f8d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b94dc704-5941-435e-b96a-3ed9c08f1f8d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b94dc704-5941-435e-b96a-3ed9c08f1f8d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b94dc704-5941-435e-b96a-3ed9c08f1f8d img.shogun-image {
  /* Add background color handling */
  
}

#s-b94dc704-5941-435e-b96a-3ed9c08f1f8d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b94dc704-5941-435e-b96a-3ed9c08f1f8d .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-b94dc704-5941-435e-b96a-3ed9c08f1f8d .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b94dc704-5941-435e-b96a-3ed9c08f1f8d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b94dc704-5941-435e-b96a-3ed9c08f1f8d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-b94dc704-5941-435e-b96a-3ed9c08f1f8d .shogun-image-content {
  
    justify-content: center;
  
}

.s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image {
  box-sizing: border-box;
}



.s-b94dc704-5941-435e-b96a-3ed9c08f1f8d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b94dc704-5941-435e-b96a-3ed9c08f1f8d {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image-container {
      position: relative;
    }

    .s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b94dc704-5941-435e-b96a-3ed9c08f1f8d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-b94dc704-5941-435e-b96a-3ed9c08f1f8d {
  margin: 0 !important;
  overflow: visible;
}

#s-b94dc704-5941-435e-b96a-3ed9c08f1f8d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b94dc704-5941-435e-b96a-3ed9c08f1f8d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b94dc704-5941-435e-b96a-3ed9c08f1f8d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b94dc704-5941-435e-b96a-3ed9c08f1f8d img.shogun-image {
  /* Add background color handling */
  
}

#s-b94dc704-5941-435e-b96a-3ed9c08f1f8d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b94dc704-5941-435e-b96a-3ed9c08f1f8d .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-b94dc704-5941-435e-b96a-3ed9c08f1f8d .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b94dc704-5941-435e-b96a-3ed9c08f1f8d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b94dc704-5941-435e-b96a-3ed9c08f1f8d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-b94dc704-5941-435e-b96a-3ed9c08f1f8d .shogun-image-content {
  
    justify-content: center;
  
}

.s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image {
  box-sizing: border-box;
}



.s-b94dc704-5941-435e-b96a-3ed9c08f1f8d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b94dc704-5941-435e-b96a-3ed9c08f1f8d {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image-container {
      position: relative;
    }

    .s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b94dc704-5941-435e-b96a-3ed9c08f1f8d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-b94dc704-5941-435e-b96a-3ed9c08f1f8d {
  margin: 0 !important;
  overflow: visible;
}

#s-b94dc704-5941-435e-b96a-3ed9c08f1f8d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b94dc704-5941-435e-b96a-3ed9c08f1f8d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b94dc704-5941-435e-b96a-3ed9c08f1f8d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b94dc704-5941-435e-b96a-3ed9c08f1f8d img.shogun-image {
  /* Add background color handling */
  
}

#s-b94dc704-5941-435e-b96a-3ed9c08f1f8d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b94dc704-5941-435e-b96a-3ed9c08f1f8d .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-b94dc704-5941-435e-b96a-3ed9c08f1f8d .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b94dc704-5941-435e-b96a-3ed9c08f1f8d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b94dc704-5941-435e-b96a-3ed9c08f1f8d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-b94dc704-5941-435e-b96a-3ed9c08f1f8d .shogun-image-content {
  
    justify-content: center;
  
}

.s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image {
  box-sizing: border-box;
}



.s-b94dc704-5941-435e-b96a-3ed9c08f1f8d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b94dc704-5941-435e-b96a-3ed9c08f1f8d {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image-container {
      position: relative;
    }

    .s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b94dc704-5941-435e-b96a-3ed9c08f1f8d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-b94dc704-5941-435e-b96a-3ed9c08f1f8d {
  margin: 0 !important;
  overflow: visible;
}

#s-b94dc704-5941-435e-b96a-3ed9c08f1f8d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b94dc704-5941-435e-b96a-3ed9c08f1f8d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b94dc704-5941-435e-b96a-3ed9c08f1f8d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b94dc704-5941-435e-b96a-3ed9c08f1f8d img.shogun-image {
  /* Add background color handling */
  
}

#s-b94dc704-5941-435e-b96a-3ed9c08f1f8d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b94dc704-5941-435e-b96a-3ed9c08f1f8d .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-b94dc704-5941-435e-b96a-3ed9c08f1f8d .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b94dc704-5941-435e-b96a-3ed9c08f1f8d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b94dc704-5941-435e-b96a-3ed9c08f1f8d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-b94dc704-5941-435e-b96a-3ed9c08f1f8d .shogun-image-content {
  
    justify-content: center;
  
}

.s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image {
  box-sizing: border-box;
}



.s-b94dc704-5941-435e-b96a-3ed9c08f1f8d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b94dc704-5941-435e-b96a-3ed9c08f1f8d {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image-container {
      position: relative;
    }

    .s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b94dc704-5941-435e-b96a-3ed9c08f1f8d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-b94dc704-5941-435e-b96a-3ed9c08f1f8d {
  margin: 0 !important;
  overflow: visible;
}

#s-b94dc704-5941-435e-b96a-3ed9c08f1f8d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b94dc704-5941-435e-b96a-3ed9c08f1f8d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b94dc704-5941-435e-b96a-3ed9c08f1f8d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b94dc704-5941-435e-b96a-3ed9c08f1f8d img.shogun-image {
  /* Add background color handling */
  
}

#s-b94dc704-5941-435e-b96a-3ed9c08f1f8d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b94dc704-5941-435e-b96a-3ed9c08f1f8d .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-b94dc704-5941-435e-b96a-3ed9c08f1f8d .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b94dc704-5941-435e-b96a-3ed9c08f1f8d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b94dc704-5941-435e-b96a-3ed9c08f1f8d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-b94dc704-5941-435e-b96a-3ed9c08f1f8d .shogun-image-content {
  
    justify-content: center;
  
}

.s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image {
  box-sizing: border-box;
}



.s-b94dc704-5941-435e-b96a-3ed9c08f1f8d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b94dc704-5941-435e-b96a-3ed9c08f1f8d {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image-container {
      position: relative;
    }

    .s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b94dc704-5941-435e-b96a-3ed9c08f1f8d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b94dc704-5941-435e-b96a-3ed9c08f1f8d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1080/1350;
text-align: center;
}

#s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 {
  margin: 0 !important;
  overflow: visible;
}

#s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 img.shogun-image {
  /* Add background color handling */
  
}

#s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image {
  box-sizing: border-box;
}



.s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image-container {
      position: relative;
    }

    .s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 {
  margin: 0 !important;
  overflow: visible;
}

#s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 img.shogun-image {
  /* Add background color handling */
  
}

#s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image {
  box-sizing: border-box;
}



.s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image-container {
      position: relative;
    }

    .s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 {
  margin: 0 !important;
  overflow: visible;
}

#s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 img.shogun-image {
  /* Add background color handling */
  
}

#s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image {
  box-sizing: border-box;
}



.s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image-container {
      position: relative;
    }

    .s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 {
  margin: 0 !important;
  overflow: visible;
}

#s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 img.shogun-image {
  /* Add background color handling */
  
}

#s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image {
  box-sizing: border-box;
}



.s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image-container {
      position: relative;
    }

    .s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 {
  margin: 0 !important;
  overflow: visible;
}

#s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 img.shogun-image {
  /* Add background color handling */
  
}

#s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image {
  box-sizing: border-box;
}



.s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image-container {
      position: relative;
    }

    .s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7b631213-9ae7-42a8-aab2-2eb5e3d45fb6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1080/1350;
text-align: center;
}

#s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a {
  margin: 0 !important;
  overflow: visible;
}

#s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a img.shogun-image {
  /* Add background color handling */
  
}

#s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a .shogun-image-content {
  
    justify-content: center;
  
}

.s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image {
  box-sizing: border-box;
}



.s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image-container {
      position: relative;
    }

    .s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a {
  margin: 0 !important;
  overflow: visible;
}

#s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a img.shogun-image {
  /* Add background color handling */
  
}

#s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a .shogun-image-content {
  
    justify-content: center;
  
}

.s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image {
  box-sizing: border-box;
}



.s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image-container {
      position: relative;
    }

    .s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a {
  margin: 0 !important;
  overflow: visible;
}

#s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a img.shogun-image {
  /* Add background color handling */
  
}

#s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a .shogun-image-content {
  
    justify-content: center;
  
}

.s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image {
  box-sizing: border-box;
}



.s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image-container {
      position: relative;
    }

    .s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a {
  margin: 0 !important;
  overflow: visible;
}

#s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a img.shogun-image {
  /* Add background color handling */
  
}

#s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a .shogun-image-content {
  
    justify-content: center;
  
}

.s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image {
  box-sizing: border-box;
}



.s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image-container {
      position: relative;
    }

    .s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a {
  margin: 0 !important;
  overflow: visible;
}

#s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a img.shogun-image {
  /* Add background color handling */
  
}

#s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a .shogun-image-content {
  
    justify-content: center;
  
}

.s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image {
  box-sizing: border-box;
}



.s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image-container {
      position: relative;
    }

    .s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c2e9ee59-f85b-441c-a0c2-7c19d3e4af5a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-d56b86a2-bdf2-49af-9d85-ced3eb1b7be1 {
  margin-left: auto;
margin-right: auto;
padding-left: 10%;
padding-bottom: 50px;
padding-right: 10%;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 1200px){#s-d56b86a2-bdf2-49af-9d85-ced3eb1b7be1 {
  display: none;
}
#s-d56b86a2-bdf2-49af-9d85-ced3eb1b7be1, #wrap-s-d56b86a2-bdf2-49af-9d85-ced3eb1b7be1, #wrap-content-s-d56b86a2-bdf2-49af-9d85-ced3eb1b7be1 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d56b86a2-bdf2-49af-9d85-ced3eb1b7be1 {
  display: none;
}
#s-d56b86a2-bdf2-49af-9d85-ced3eb1b7be1, #wrap-s-d56b86a2-bdf2-49af-9d85-ced3eb1b7be1, #wrap-content-s-d56b86a2-bdf2-49af-9d85-ced3eb1b7be1 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d56b86a2-bdf2-49af-9d85-ced3eb1b7be1 {
  
}
}@media (max-width: 767px){#s-d56b86a2-bdf2-49af-9d85-ced3eb1b7be1 {
  display: none;
}
#s-d56b86a2-bdf2-49af-9d85-ced3eb1b7be1, #wrap-s-d56b86a2-bdf2-49af-9d85-ced3eb1b7be1, #wrap-content-s-d56b86a2-bdf2-49af-9d85-ced3eb1b7be1 { display: none !important; }}







#s-d56b86a2-bdf2-49af-9d85-ced3eb1b7be1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d56b86a2-bdf2-49af-9d85-ced3eb1b7be1.shg-box.shg-c {
  justify-content: center;
}

#s-ae2d0e6d-7c7f-4202-8b9f-b036bcdb51f4 {
  margin-left: auto;
margin-right: auto;
min-height: 670px;
}








#s-ae2d0e6d-7c7f-4202-8b9f-b036bcdb51f4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ae2d0e6d-7c7f-4202-8b9f-b036bcdb51f4.shg-box.shg-c {
  justify-content: center;
}

#s-7a253ee7-23c1-4b54-af1b-34e141b593e4 {
  margin-left: auto;
margin-right: auto;
}

#s-d08f79a8-634a-44ba-9af3-8aeac797287d {
  margin-left: auto;
margin-right: auto;
padding-left: 14%;
padding-bottom: 25px;
padding-right: 14%;
}

#s-e7d6b054-638d-4a4b-a0ad-5b7227faa03d {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-e7d6b054-638d-4a4b-a0ad-5b7227faa03d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e7d6b054-638d-4a4b-a0ad-5b7227faa03d.shg-box.shg-c {
  justify-content: center;
}

#s-4c9109d3-b31e-4b00-94ee-80bc745ba8e8 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
}

/* Duplicated Styles are also in Category dynamic.css.liquid - keep them in sync */

#slider-v3-s-4c9109d3-b31e-4b00-94ee-80bc745ba8e8 {
  --swiper-pagination-color: rgba(252, 249, 249, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(252, 249, 249, 1) !important;
  --swiper-pagination-bullet-active-color: rgba(113, 113, 113, 1) !important;
  --arrow-button-size: 35px !important;
  --swiper-pagination-bullet-size: 14px !important;
  
}

#slider-v3-s-4c9109d3-b31e-4b00-94ee-80bc745ba8e8 > .swiper-button-prev,
#slider-v3-s-4c9109d3-b31e-4b00-94ee-80bc745ba8e8 > .swiper-button-next {
  
}

#slider-v3-s-4c9109d3-b31e-4b00-94ee-80bc745ba8e8 > .swiper-button-prev svg,
#slider-v3-s-4c9109d3-b31e-4b00-94ee-80bc745ba8e8 > .swiper-button-next svg {
  fill: rgba(255, 255, 255, 1) !important;
  stroke: rgba(255, 255, 255, 1) !important;
  
}

#slider-v3-s-4c9109d3-b31e-4b00-94ee-80bc745ba8e8 > .swiper-button-prev {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-4c9109d3-b31e-4b00-94ee-80bc745ba8e8 > .swiper-button-next {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-4c9109d3-b31e-4b00-94ee-80bc745ba8e8 > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-4c9109d3-b31e-4b00-94ee-80bc745ba8e8 .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-4c9109d3-b31e-4b00-94ee-80bc745ba8e8 .swiper-pagination-bullet-active {
  background-color: rgba(113, 113, 113, 1) !important;
  width: calc(14px * 1) !important;
  height: 14px !important;
  border-radius:  50px  !important;
}

#slider-v3-s-4c9109d3-b31e-4b00-94ee-80bc745ba8e8 .swiper-pagination {
  position:  initial ;
  display: flex;
  margin-top:  8px ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}

#s-44404504-e3d4-495f-bdc5-b726bbd9eb87 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1080/1350;
text-align: center;
}

#s-44404504-e3d4-495f-bdc5-b726bbd9eb87 {
  margin: 0 !important;
  overflow: visible;
}

#s-44404504-e3d4-495f-bdc5-b726bbd9eb87-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-44404504-e3d4-495f-bdc5-b726bbd9eb87 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-44404504-e3d4-495f-bdc5-b726bbd9eb87 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-44404504-e3d4-495f-bdc5-b726bbd9eb87 img.shogun-image {
  /* Add background color handling */
  
}

#s-44404504-e3d4-495f-bdc5-b726bbd9eb87 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-44404504-e3d4-495f-bdc5-b726bbd9eb87 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-44404504-e3d4-495f-bdc5-b726bbd9eb87 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-44404504-e3d4-495f-bdc5-b726bbd9eb87 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-44404504-e3d4-495f-bdc5-b726bbd9eb87 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-44404504-e3d4-495f-bdc5-b726bbd9eb87 .shogun-image-content {
  
    justify-content: center;
  
}

.s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image {
  box-sizing: border-box;
}



.s-44404504-e3d4-495f-bdc5-b726bbd9eb87 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-44404504-e3d4-495f-bdc5-b726bbd9eb87 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image-container {
      position: relative;
    }

    .s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44404504-e3d4-495f-bdc5-b726bbd9eb87 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-44404504-e3d4-495f-bdc5-b726bbd9eb87 {
  margin: 0 !important;
  overflow: visible;
}

#s-44404504-e3d4-495f-bdc5-b726bbd9eb87-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-44404504-e3d4-495f-bdc5-b726bbd9eb87 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-44404504-e3d4-495f-bdc5-b726bbd9eb87 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-44404504-e3d4-495f-bdc5-b726bbd9eb87 img.shogun-image {
  /* Add background color handling */
  
}

#s-44404504-e3d4-495f-bdc5-b726bbd9eb87 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-44404504-e3d4-495f-bdc5-b726bbd9eb87 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-44404504-e3d4-495f-bdc5-b726bbd9eb87 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-44404504-e3d4-495f-bdc5-b726bbd9eb87 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-44404504-e3d4-495f-bdc5-b726bbd9eb87 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-44404504-e3d4-495f-bdc5-b726bbd9eb87 .shogun-image-content {
  
    justify-content: center;
  
}

.s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image {
  box-sizing: border-box;
}



.s-44404504-e3d4-495f-bdc5-b726bbd9eb87 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-44404504-e3d4-495f-bdc5-b726bbd9eb87 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image-container {
      position: relative;
    }

    .s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44404504-e3d4-495f-bdc5-b726bbd9eb87 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-44404504-e3d4-495f-bdc5-b726bbd9eb87 {
  margin: 0 !important;
  overflow: visible;
}

#s-44404504-e3d4-495f-bdc5-b726bbd9eb87-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-44404504-e3d4-495f-bdc5-b726bbd9eb87 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-44404504-e3d4-495f-bdc5-b726bbd9eb87 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-44404504-e3d4-495f-bdc5-b726bbd9eb87 img.shogun-image {
  /* Add background color handling */
  
}

#s-44404504-e3d4-495f-bdc5-b726bbd9eb87 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-44404504-e3d4-495f-bdc5-b726bbd9eb87 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-44404504-e3d4-495f-bdc5-b726bbd9eb87 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-44404504-e3d4-495f-bdc5-b726bbd9eb87 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-44404504-e3d4-495f-bdc5-b726bbd9eb87 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-44404504-e3d4-495f-bdc5-b726bbd9eb87 .shogun-image-content {
  
    justify-content: center;
  
}

.s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image {
  box-sizing: border-box;
}



.s-44404504-e3d4-495f-bdc5-b726bbd9eb87 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-44404504-e3d4-495f-bdc5-b726bbd9eb87 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image-container {
      position: relative;
    }

    .s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44404504-e3d4-495f-bdc5-b726bbd9eb87 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-44404504-e3d4-495f-bdc5-b726bbd9eb87 {
  margin: 0 !important;
  overflow: visible;
}

#s-44404504-e3d4-495f-bdc5-b726bbd9eb87-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-44404504-e3d4-495f-bdc5-b726bbd9eb87 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-44404504-e3d4-495f-bdc5-b726bbd9eb87 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-44404504-e3d4-495f-bdc5-b726bbd9eb87 img.shogun-image {
  /* Add background color handling */
  
}

#s-44404504-e3d4-495f-bdc5-b726bbd9eb87 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-44404504-e3d4-495f-bdc5-b726bbd9eb87 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-44404504-e3d4-495f-bdc5-b726bbd9eb87 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-44404504-e3d4-495f-bdc5-b726bbd9eb87 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-44404504-e3d4-495f-bdc5-b726bbd9eb87 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-44404504-e3d4-495f-bdc5-b726bbd9eb87 .shogun-image-content {
  
    justify-content: center;
  
}

.s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image {
  box-sizing: border-box;
}



.s-44404504-e3d4-495f-bdc5-b726bbd9eb87 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-44404504-e3d4-495f-bdc5-b726bbd9eb87 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image-container {
      position: relative;
    }

    .s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44404504-e3d4-495f-bdc5-b726bbd9eb87 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-44404504-e3d4-495f-bdc5-b726bbd9eb87 {
  margin: 0 !important;
  overflow: visible;
}

#s-44404504-e3d4-495f-bdc5-b726bbd9eb87-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-44404504-e3d4-495f-bdc5-b726bbd9eb87 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-44404504-e3d4-495f-bdc5-b726bbd9eb87 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-44404504-e3d4-495f-bdc5-b726bbd9eb87 img.shogun-image {
  /* Add background color handling */
  
}

#s-44404504-e3d4-495f-bdc5-b726bbd9eb87 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-44404504-e3d4-495f-bdc5-b726bbd9eb87 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-44404504-e3d4-495f-bdc5-b726bbd9eb87 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-44404504-e3d4-495f-bdc5-b726bbd9eb87 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-44404504-e3d4-495f-bdc5-b726bbd9eb87 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-44404504-e3d4-495f-bdc5-b726bbd9eb87 .shogun-image-content {
  
    justify-content: center;
  
}

.s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image {
  box-sizing: border-box;
}



.s-44404504-e3d4-495f-bdc5-b726bbd9eb87 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-44404504-e3d4-495f-bdc5-b726bbd9eb87 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image-container {
      position: relative;
    }

    .s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44404504-e3d4-495f-bdc5-b726bbd9eb87.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44404504-e3d4-495f-bdc5-b726bbd9eb87 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1080/1350;
text-align: center;
}

#s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 {
  margin: 0 !important;
  overflow: visible;
}

#s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 img.shogun-image {
  /* Add background color handling */
  
}

#s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image {
  box-sizing: border-box;
}



.s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image-container {
      position: relative;
    }

    .s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 {
  margin: 0 !important;
  overflow: visible;
}

#s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 img.shogun-image {
  /* Add background color handling */
  
}

#s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image {
  box-sizing: border-box;
}



.s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image-container {
      position: relative;
    }

    .s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 {
  margin: 0 !important;
  overflow: visible;
}

#s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 img.shogun-image {
  /* Add background color handling */
  
}

#s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image {
  box-sizing: border-box;
}



.s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image-container {
      position: relative;
    }

    .s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 {
  margin: 0 !important;
  overflow: visible;
}

#s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 img.shogun-image {
  /* Add background color handling */
  
}

#s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image {
  box-sizing: border-box;
}



.s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image-container {
      position: relative;
    }

    .s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 {
  margin: 0 !important;
  overflow: visible;
}

#s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 img.shogun-image {
  /* Add background color handling */
  
}

#s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image {
  box-sizing: border-box;
}



.s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image-container {
      position: relative;
    }

    .s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b3198e29-e68b-457f-9cd1-cc00fcf5dfa9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-35c12573-a603-47bf-a2ad-9d0699833d65 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1080/1350;
text-align: center;
}

#s-35c12573-a603-47bf-a2ad-9d0699833d65 {
  margin: 0 !important;
  overflow: visible;
}

#s-35c12573-a603-47bf-a2ad-9d0699833d65-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-35c12573-a603-47bf-a2ad-9d0699833d65 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-35c12573-a603-47bf-a2ad-9d0699833d65 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-35c12573-a603-47bf-a2ad-9d0699833d65 img.shogun-image {
  /* Add background color handling */
  
}

#s-35c12573-a603-47bf-a2ad-9d0699833d65 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-35c12573-a603-47bf-a2ad-9d0699833d65 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-35c12573-a603-47bf-a2ad-9d0699833d65 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-35c12573-a603-47bf-a2ad-9d0699833d65 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-35c12573-a603-47bf-a2ad-9d0699833d65 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-35c12573-a603-47bf-a2ad-9d0699833d65 .shogun-image-content {
  
    justify-content: center;
  
}

.s-35c12573-a603-47bf-a2ad-9d0699833d65.shg-align-container {
  display: flex;
  justify-content: center
}

.s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image {
  box-sizing: border-box;
}



.s-35c12573-a603-47bf-a2ad-9d0699833d65 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-35c12573-a603-47bf-a2ad-9d0699833d65 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image-container {
      position: relative;
    }

    .s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-35c12573-a603-47bf-a2ad-9d0699833d65 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-35c12573-a603-47bf-a2ad-9d0699833d65 {
  margin: 0 !important;
  overflow: visible;
}

#s-35c12573-a603-47bf-a2ad-9d0699833d65-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-35c12573-a603-47bf-a2ad-9d0699833d65 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-35c12573-a603-47bf-a2ad-9d0699833d65 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-35c12573-a603-47bf-a2ad-9d0699833d65 img.shogun-image {
  /* Add background color handling */
  
}

#s-35c12573-a603-47bf-a2ad-9d0699833d65 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-35c12573-a603-47bf-a2ad-9d0699833d65 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-35c12573-a603-47bf-a2ad-9d0699833d65 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-35c12573-a603-47bf-a2ad-9d0699833d65 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-35c12573-a603-47bf-a2ad-9d0699833d65 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-35c12573-a603-47bf-a2ad-9d0699833d65 .shogun-image-content {
  
    justify-content: center;
  
}

.s-35c12573-a603-47bf-a2ad-9d0699833d65.shg-align-container {
  display: flex;
  justify-content: center
}

.s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image {
  box-sizing: border-box;
}



.s-35c12573-a603-47bf-a2ad-9d0699833d65 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-35c12573-a603-47bf-a2ad-9d0699833d65 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image-container {
      position: relative;
    }

    .s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-35c12573-a603-47bf-a2ad-9d0699833d65 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-35c12573-a603-47bf-a2ad-9d0699833d65 {
  margin: 0 !important;
  overflow: visible;
}

#s-35c12573-a603-47bf-a2ad-9d0699833d65-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-35c12573-a603-47bf-a2ad-9d0699833d65 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-35c12573-a603-47bf-a2ad-9d0699833d65 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-35c12573-a603-47bf-a2ad-9d0699833d65 img.shogun-image {
  /* Add background color handling */
  
}

#s-35c12573-a603-47bf-a2ad-9d0699833d65 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-35c12573-a603-47bf-a2ad-9d0699833d65 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-35c12573-a603-47bf-a2ad-9d0699833d65 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-35c12573-a603-47bf-a2ad-9d0699833d65 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-35c12573-a603-47bf-a2ad-9d0699833d65 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-35c12573-a603-47bf-a2ad-9d0699833d65 .shogun-image-content {
  
    justify-content: center;
  
}

.s-35c12573-a603-47bf-a2ad-9d0699833d65.shg-align-container {
  display: flex;
  justify-content: center
}

.s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image {
  box-sizing: border-box;
}



.s-35c12573-a603-47bf-a2ad-9d0699833d65 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-35c12573-a603-47bf-a2ad-9d0699833d65 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image-container {
      position: relative;
    }

    .s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-35c12573-a603-47bf-a2ad-9d0699833d65 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-35c12573-a603-47bf-a2ad-9d0699833d65 {
  margin: 0 !important;
  overflow: visible;
}

#s-35c12573-a603-47bf-a2ad-9d0699833d65-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-35c12573-a603-47bf-a2ad-9d0699833d65 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-35c12573-a603-47bf-a2ad-9d0699833d65 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-35c12573-a603-47bf-a2ad-9d0699833d65 img.shogun-image {
  /* Add background color handling */
  
}

#s-35c12573-a603-47bf-a2ad-9d0699833d65 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-35c12573-a603-47bf-a2ad-9d0699833d65 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-35c12573-a603-47bf-a2ad-9d0699833d65 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-35c12573-a603-47bf-a2ad-9d0699833d65 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-35c12573-a603-47bf-a2ad-9d0699833d65 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-35c12573-a603-47bf-a2ad-9d0699833d65 .shogun-image-content {
  
    justify-content: center;
  
}

.s-35c12573-a603-47bf-a2ad-9d0699833d65.shg-align-container {
  display: flex;
  justify-content: center
}

.s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image {
  box-sizing: border-box;
}



.s-35c12573-a603-47bf-a2ad-9d0699833d65 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-35c12573-a603-47bf-a2ad-9d0699833d65 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image-container {
      position: relative;
    }

    .s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-35c12573-a603-47bf-a2ad-9d0699833d65 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-35c12573-a603-47bf-a2ad-9d0699833d65 {
  margin: 0 !important;
  overflow: visible;
}

#s-35c12573-a603-47bf-a2ad-9d0699833d65-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-35c12573-a603-47bf-a2ad-9d0699833d65 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-35c12573-a603-47bf-a2ad-9d0699833d65 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-35c12573-a603-47bf-a2ad-9d0699833d65 img.shogun-image {
  /* Add background color handling */
  
}

#s-35c12573-a603-47bf-a2ad-9d0699833d65 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-35c12573-a603-47bf-a2ad-9d0699833d65 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-35c12573-a603-47bf-a2ad-9d0699833d65 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-35c12573-a603-47bf-a2ad-9d0699833d65 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-35c12573-a603-47bf-a2ad-9d0699833d65 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-35c12573-a603-47bf-a2ad-9d0699833d65 .shogun-image-content {
  
    justify-content: center;
  
}

.s-35c12573-a603-47bf-a2ad-9d0699833d65.shg-align-container {
  display: flex;
  justify-content: center
}

.s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image {
  box-sizing: border-box;
}



.s-35c12573-a603-47bf-a2ad-9d0699833d65 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-35c12573-a603-47bf-a2ad-9d0699833d65 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image-container {
      position: relative;
    }

    .s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-35c12573-a603-47bf-a2ad-9d0699833d65.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-35c12573-a603-47bf-a2ad-9d0699833d65 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-8c472be3-f281-408c-8e50-fb10c75b29c6 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1080/1350;
text-align: center;
}

#s-8c472be3-f281-408c-8e50-fb10c75b29c6 {
  margin: 0 !important;
  overflow: visible;
}

#s-8c472be3-f281-408c-8e50-fb10c75b29c6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8c472be3-f281-408c-8e50-fb10c75b29c6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8c472be3-f281-408c-8e50-fb10c75b29c6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8c472be3-f281-408c-8e50-fb10c75b29c6 img.shogun-image {
  /* Add background color handling */
  
}

#s-8c472be3-f281-408c-8e50-fb10c75b29c6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8c472be3-f281-408c-8e50-fb10c75b29c6 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-8c472be3-f281-408c-8e50-fb10c75b29c6 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8c472be3-f281-408c-8e50-fb10c75b29c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8c472be3-f281-408c-8e50-fb10c75b29c6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-8c472be3-f281-408c-8e50-fb10c75b29c6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8c472be3-f281-408c-8e50-fb10c75b29c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image {
  box-sizing: border-box;
}



.s-8c472be3-f281-408c-8e50-fb10c75b29c6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8c472be3-f281-408c-8e50-fb10c75b29c6 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image-container {
      position: relative;
    }

    .s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8c472be3-f281-408c-8e50-fb10c75b29c6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-8c472be3-f281-408c-8e50-fb10c75b29c6 {
  margin: 0 !important;
  overflow: visible;
}

#s-8c472be3-f281-408c-8e50-fb10c75b29c6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8c472be3-f281-408c-8e50-fb10c75b29c6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8c472be3-f281-408c-8e50-fb10c75b29c6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8c472be3-f281-408c-8e50-fb10c75b29c6 img.shogun-image {
  /* Add background color handling */
  
}

#s-8c472be3-f281-408c-8e50-fb10c75b29c6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8c472be3-f281-408c-8e50-fb10c75b29c6 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-8c472be3-f281-408c-8e50-fb10c75b29c6 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8c472be3-f281-408c-8e50-fb10c75b29c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8c472be3-f281-408c-8e50-fb10c75b29c6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-8c472be3-f281-408c-8e50-fb10c75b29c6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8c472be3-f281-408c-8e50-fb10c75b29c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image {
  box-sizing: border-box;
}



.s-8c472be3-f281-408c-8e50-fb10c75b29c6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8c472be3-f281-408c-8e50-fb10c75b29c6 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image-container {
      position: relative;
    }

    .s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8c472be3-f281-408c-8e50-fb10c75b29c6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-8c472be3-f281-408c-8e50-fb10c75b29c6 {
  margin: 0 !important;
  overflow: visible;
}

#s-8c472be3-f281-408c-8e50-fb10c75b29c6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8c472be3-f281-408c-8e50-fb10c75b29c6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8c472be3-f281-408c-8e50-fb10c75b29c6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8c472be3-f281-408c-8e50-fb10c75b29c6 img.shogun-image {
  /* Add background color handling */
  
}

#s-8c472be3-f281-408c-8e50-fb10c75b29c6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8c472be3-f281-408c-8e50-fb10c75b29c6 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-8c472be3-f281-408c-8e50-fb10c75b29c6 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8c472be3-f281-408c-8e50-fb10c75b29c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8c472be3-f281-408c-8e50-fb10c75b29c6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-8c472be3-f281-408c-8e50-fb10c75b29c6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8c472be3-f281-408c-8e50-fb10c75b29c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image {
  box-sizing: border-box;
}



.s-8c472be3-f281-408c-8e50-fb10c75b29c6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8c472be3-f281-408c-8e50-fb10c75b29c6 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image-container {
      position: relative;
    }

    .s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8c472be3-f281-408c-8e50-fb10c75b29c6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-8c472be3-f281-408c-8e50-fb10c75b29c6 {
  margin: 0 !important;
  overflow: visible;
}

#s-8c472be3-f281-408c-8e50-fb10c75b29c6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8c472be3-f281-408c-8e50-fb10c75b29c6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8c472be3-f281-408c-8e50-fb10c75b29c6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8c472be3-f281-408c-8e50-fb10c75b29c6 img.shogun-image {
  /* Add background color handling */
  
}

#s-8c472be3-f281-408c-8e50-fb10c75b29c6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8c472be3-f281-408c-8e50-fb10c75b29c6 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-8c472be3-f281-408c-8e50-fb10c75b29c6 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8c472be3-f281-408c-8e50-fb10c75b29c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8c472be3-f281-408c-8e50-fb10c75b29c6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-8c472be3-f281-408c-8e50-fb10c75b29c6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8c472be3-f281-408c-8e50-fb10c75b29c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image {
  box-sizing: border-box;
}



.s-8c472be3-f281-408c-8e50-fb10c75b29c6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8c472be3-f281-408c-8e50-fb10c75b29c6 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image-container {
      position: relative;
    }

    .s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8c472be3-f281-408c-8e50-fb10c75b29c6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-8c472be3-f281-408c-8e50-fb10c75b29c6 {
  margin: 0 !important;
  overflow: visible;
}

#s-8c472be3-f281-408c-8e50-fb10c75b29c6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8c472be3-f281-408c-8e50-fb10c75b29c6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8c472be3-f281-408c-8e50-fb10c75b29c6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8c472be3-f281-408c-8e50-fb10c75b29c6 img.shogun-image {
  /* Add background color handling */
  
}

#s-8c472be3-f281-408c-8e50-fb10c75b29c6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8c472be3-f281-408c-8e50-fb10c75b29c6 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-8c472be3-f281-408c-8e50-fb10c75b29c6 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8c472be3-f281-408c-8e50-fb10c75b29c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8c472be3-f281-408c-8e50-fb10c75b29c6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-8c472be3-f281-408c-8e50-fb10c75b29c6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8c472be3-f281-408c-8e50-fb10c75b29c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image {
  box-sizing: border-box;
}



.s-8c472be3-f281-408c-8e50-fb10c75b29c6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8c472be3-f281-408c-8e50-fb10c75b29c6 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image-container {
      position: relative;
    }

    .s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8c472be3-f281-408c-8e50-fb10c75b29c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8c472be3-f281-408c-8e50-fb10c75b29c6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-e74736e6-1942-4572-96ba-8462513ea976 {
  margin-left: auto;
margin-right: auto;
padding-top: 25px;
padding-left: 15%;
padding-right: 15%;
}

#s-e74736e6-1942-4572-96ba-8462513ea976 hr {
  border-top: 2px solid #ddd;
}

#s-173e27cb-12c4-48d4-b87e-a1e7c5e5fdf2 {
  margin-left: auto;
margin-right: auto;
padding-bottom: 0px;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 1200px){#s-173e27cb-12c4-48d4-b87e-a1e7c5e5fdf2 {
  display: none;
}
#s-173e27cb-12c4-48d4-b87e-a1e7c5e5fdf2, #wrap-s-173e27cb-12c4-48d4-b87e-a1e7c5e5fdf2, #wrap-content-s-173e27cb-12c4-48d4-b87e-a1e7c5e5fdf2 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-173e27cb-12c4-48d4-b87e-a1e7c5e5fdf2 {
  display: none;
}
#s-173e27cb-12c4-48d4-b87e-a1e7c5e5fdf2, #wrap-s-173e27cb-12c4-48d4-b87e-a1e7c5e5fdf2, #wrap-content-s-173e27cb-12c4-48d4-b87e-a1e7c5e5fdf2 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-173e27cb-12c4-48d4-b87e-a1e7c5e5fdf2 {
  display: none;
}
#s-173e27cb-12c4-48d4-b87e-a1e7c5e5fdf2, #wrap-s-173e27cb-12c4-48d4-b87e-a1e7c5e5fdf2, #wrap-content-s-173e27cb-12c4-48d4-b87e-a1e7c5e5fdf2 { display: none !important; }}







#s-173e27cb-12c4-48d4-b87e-a1e7c5e5fdf2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-173e27cb-12c4-48d4-b87e-a1e7c5e5fdf2.shg-box.shg-c {
  justify-content: center;
}

#s-02df6ca5-6536-4b76-aabf-7d5be6a748dd {
  margin-left: auto;
margin-right: auto;
min-height: 670px;
}








#s-02df6ca5-6536-4b76-aabf-7d5be6a748dd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-02df6ca5-6536-4b76-aabf-7d5be6a748dd.shg-box.shg-c {
  justify-content: center;
}

#s-ffb8c042-b0fe-4606-b77d-864267c3f754 {
  margin-left: auto;
margin-right: auto;
padding-left: 0%;
padding-right: 0%;
}

#s-db3bb07b-742f-4169-ad9d-9eb05267494f {
  margin-left: auto;
margin-right: auto;
padding-left: 14%;
padding-bottom: 25px;
padding-right: 14%;
}

#s-c14a4112-5907-4614-a8d5-4c47abb7e0c9 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-c14a4112-5907-4614-a8d5-4c47abb7e0c9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c14a4112-5907-4614-a8d5-4c47abb7e0c9.shg-box.shg-c {
  justify-content: center;
}

#s-9d86ac8b-34e7-4f75-bb17-a728b5c199e8 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
}

/* Duplicated Styles are also in Category dynamic.css.liquid - keep them in sync */

#slider-v3-s-9d86ac8b-34e7-4f75-bb17-a728b5c199e8 {
  --swiper-pagination-color: rgba(252, 249, 249, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(252, 249, 249, 1) !important;
  --swiper-pagination-bullet-active-color: rgba(113, 113, 113, 1) !important;
  --arrow-button-size: 35px !important;
  --swiper-pagination-bullet-size: 14px !important;
  
}

#slider-v3-s-9d86ac8b-34e7-4f75-bb17-a728b5c199e8 > .swiper-button-prev,
#slider-v3-s-9d86ac8b-34e7-4f75-bb17-a728b5c199e8 > .swiper-button-next {
  
}

#slider-v3-s-9d86ac8b-34e7-4f75-bb17-a728b5c199e8 > .swiper-button-prev svg,
#slider-v3-s-9d86ac8b-34e7-4f75-bb17-a728b5c199e8 > .swiper-button-next svg {
  fill: rgba(255, 255, 255, 1) !important;
  stroke: rgba(255, 255, 255, 1) !important;
  
}

#slider-v3-s-9d86ac8b-34e7-4f75-bb17-a728b5c199e8 > .swiper-button-prev {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-9d86ac8b-34e7-4f75-bb17-a728b5c199e8 > .swiper-button-next {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-9d86ac8b-34e7-4f75-bb17-a728b5c199e8 > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-9d86ac8b-34e7-4f75-bb17-a728b5c199e8 .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-9d86ac8b-34e7-4f75-bb17-a728b5c199e8 .swiper-pagination-bullet-active {
  background-color: rgba(113, 113, 113, 1) !important;
  width: calc(14px * 1) !important;
  height: 14px !important;
  border-radius:  50px  !important;
}

#slider-v3-s-9d86ac8b-34e7-4f75-bb17-a728b5c199e8 .swiper-pagination {
  position:  initial ;
  display: flex;
  margin-top:  8px ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}

#s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1080/1920;
text-align: center;
}

#s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 {
  margin: 0 !important;
  overflow: visible;
}

#s-0c89e726-e1bb-4375-a02b-7bb91ca978d7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 img.shogun-image {
  /* Add background color handling */
  
}

#s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 .shg-image-content-wrapper {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }

    #s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 .shogun-image-link {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image {
  box-sizing: border-box;
}



.s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image-container {
      position: relative;
    }

    .s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 {
  margin: 0 !important;
  overflow: visible;
}

#s-0c89e726-e1bb-4375-a02b-7bb91ca978d7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 img.shogun-image {
  /* Add background color handling */
  
}

#s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 .shg-image-content-wrapper {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }

    #s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 .shogun-image-link {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image {
  box-sizing: border-box;
}



.s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image-container {
      position: relative;
    }

    .s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 {
  margin: 0 !important;
  overflow: visible;
}

#s-0c89e726-e1bb-4375-a02b-7bb91ca978d7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 img.shogun-image {
  /* Add background color handling */
  
}

#s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 .shg-image-content-wrapper {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }

    #s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 .shogun-image-link {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image {
  box-sizing: border-box;
}



.s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image-container {
      position: relative;
    }

    .s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 {
  margin: 0 !important;
  overflow: visible;
}

#s-0c89e726-e1bb-4375-a02b-7bb91ca978d7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 img.shogun-image {
  /* Add background color handling */
  
}

#s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 .shg-image-content-wrapper {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }

    #s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 .shogun-image-link {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image {
  box-sizing: border-box;
}



.s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image-container {
      position: relative;
    }

    .s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 {
  margin: 0 !important;
  overflow: visible;
}

#s-0c89e726-e1bb-4375-a02b-7bb91ca978d7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 img.shogun-image {
  /* Add background color handling */
  
}

#s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 .shg-image-content-wrapper {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }

    #s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 .shogun-image-link {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image {
  box-sizing: border-box;
}



.s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image-container {
      position: relative;
    }

    .s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0c89e726-e1bb-4375-a02b-7bb91ca978d7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0c89e726-e1bb-4375-a02b-7bb91ca978d7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-3680de91-2d1d-4a1f-8e02-2685cef144a8 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1080/1920;
text-align: center;
}

#s-3680de91-2d1d-4a1f-8e02-2685cef144a8 {
  margin: 0 !important;
  overflow: visible;
}

#s-3680de91-2d1d-4a1f-8e02-2685cef144a8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3680de91-2d1d-4a1f-8e02-2685cef144a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3680de91-2d1d-4a1f-8e02-2685cef144a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3680de91-2d1d-4a1f-8e02-2685cef144a8 img.shogun-image {
  /* Add background color handling */
  
}

#s-3680de91-2d1d-4a1f-8e02-2685cef144a8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3680de91-2d1d-4a1f-8e02-2685cef144a8 .shg-image-content-wrapper {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }

    #s-3680de91-2d1d-4a1f-8e02-2685cef144a8 .shogun-image-link {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3680de91-2d1d-4a1f-8e02-2685cef144a8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3680de91-2d1d-4a1f-8e02-2685cef144a8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-3680de91-2d1d-4a1f-8e02-2685cef144a8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image {
  box-sizing: border-box;
}



.s-3680de91-2d1d-4a1f-8e02-2685cef144a8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3680de91-2d1d-4a1f-8e02-2685cef144a8 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image-container {
      position: relative;
    }

    .s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3680de91-2d1d-4a1f-8e02-2685cef144a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-3680de91-2d1d-4a1f-8e02-2685cef144a8 {
  margin: 0 !important;
  overflow: visible;
}

#s-3680de91-2d1d-4a1f-8e02-2685cef144a8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3680de91-2d1d-4a1f-8e02-2685cef144a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3680de91-2d1d-4a1f-8e02-2685cef144a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3680de91-2d1d-4a1f-8e02-2685cef144a8 img.shogun-image {
  /* Add background color handling */
  
}

#s-3680de91-2d1d-4a1f-8e02-2685cef144a8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3680de91-2d1d-4a1f-8e02-2685cef144a8 .shg-image-content-wrapper {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }

    #s-3680de91-2d1d-4a1f-8e02-2685cef144a8 .shogun-image-link {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3680de91-2d1d-4a1f-8e02-2685cef144a8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3680de91-2d1d-4a1f-8e02-2685cef144a8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-3680de91-2d1d-4a1f-8e02-2685cef144a8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image {
  box-sizing: border-box;
}



.s-3680de91-2d1d-4a1f-8e02-2685cef144a8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3680de91-2d1d-4a1f-8e02-2685cef144a8 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image-container {
      position: relative;
    }

    .s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3680de91-2d1d-4a1f-8e02-2685cef144a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-3680de91-2d1d-4a1f-8e02-2685cef144a8 {
  margin: 0 !important;
  overflow: visible;
}

#s-3680de91-2d1d-4a1f-8e02-2685cef144a8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3680de91-2d1d-4a1f-8e02-2685cef144a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3680de91-2d1d-4a1f-8e02-2685cef144a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3680de91-2d1d-4a1f-8e02-2685cef144a8 img.shogun-image {
  /* Add background color handling */
  
}

#s-3680de91-2d1d-4a1f-8e02-2685cef144a8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3680de91-2d1d-4a1f-8e02-2685cef144a8 .shg-image-content-wrapper {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }

    #s-3680de91-2d1d-4a1f-8e02-2685cef144a8 .shogun-image-link {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3680de91-2d1d-4a1f-8e02-2685cef144a8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3680de91-2d1d-4a1f-8e02-2685cef144a8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-3680de91-2d1d-4a1f-8e02-2685cef144a8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image {
  box-sizing: border-box;
}



.s-3680de91-2d1d-4a1f-8e02-2685cef144a8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3680de91-2d1d-4a1f-8e02-2685cef144a8 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image-container {
      position: relative;
    }

    .s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3680de91-2d1d-4a1f-8e02-2685cef144a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-3680de91-2d1d-4a1f-8e02-2685cef144a8 {
  margin: 0 !important;
  overflow: visible;
}

#s-3680de91-2d1d-4a1f-8e02-2685cef144a8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3680de91-2d1d-4a1f-8e02-2685cef144a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3680de91-2d1d-4a1f-8e02-2685cef144a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3680de91-2d1d-4a1f-8e02-2685cef144a8 img.shogun-image {
  /* Add background color handling */
  
}

#s-3680de91-2d1d-4a1f-8e02-2685cef144a8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3680de91-2d1d-4a1f-8e02-2685cef144a8 .shg-image-content-wrapper {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }

    #s-3680de91-2d1d-4a1f-8e02-2685cef144a8 .shogun-image-link {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3680de91-2d1d-4a1f-8e02-2685cef144a8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3680de91-2d1d-4a1f-8e02-2685cef144a8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-3680de91-2d1d-4a1f-8e02-2685cef144a8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image {
  box-sizing: border-box;
}



.s-3680de91-2d1d-4a1f-8e02-2685cef144a8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3680de91-2d1d-4a1f-8e02-2685cef144a8 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image-container {
      position: relative;
    }

    .s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3680de91-2d1d-4a1f-8e02-2685cef144a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-3680de91-2d1d-4a1f-8e02-2685cef144a8 {
  margin: 0 !important;
  overflow: visible;
}

#s-3680de91-2d1d-4a1f-8e02-2685cef144a8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3680de91-2d1d-4a1f-8e02-2685cef144a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3680de91-2d1d-4a1f-8e02-2685cef144a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3680de91-2d1d-4a1f-8e02-2685cef144a8 img.shogun-image {
  /* Add background color handling */
  
}

#s-3680de91-2d1d-4a1f-8e02-2685cef144a8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3680de91-2d1d-4a1f-8e02-2685cef144a8 .shg-image-content-wrapper {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }

    #s-3680de91-2d1d-4a1f-8e02-2685cef144a8 .shogun-image-link {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3680de91-2d1d-4a1f-8e02-2685cef144a8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3680de91-2d1d-4a1f-8e02-2685cef144a8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-3680de91-2d1d-4a1f-8e02-2685cef144a8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image {
  box-sizing: border-box;
}



.s-3680de91-2d1d-4a1f-8e02-2685cef144a8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3680de91-2d1d-4a1f-8e02-2685cef144a8 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image-container {
      position: relative;
    }

    .s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3680de91-2d1d-4a1f-8e02-2685cef144a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3680de91-2d1d-4a1f-8e02-2685cef144a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1080/1920;
text-align: center;
}

#s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c {
  margin: 0 !important;
  overflow: visible;
}

#s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c img.shogun-image {
  /* Add background color handling */
  
}

#s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c .shg-image-content-wrapper {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }

    #s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c .shogun-image-link {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c .shogun-image-content {
  
    justify-content: center;
  
}

.s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image {
  box-sizing: border-box;
}



.s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image-container {
      position: relative;
    }

    .s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c {
  margin: 0 !important;
  overflow: visible;
}

#s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c img.shogun-image {
  /* Add background color handling */
  
}

#s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c .shg-image-content-wrapper {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }

    #s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c .shogun-image-link {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c .shogun-image-content {
  
    justify-content: center;
  
}

.s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image {
  box-sizing: border-box;
}



.s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image-container {
      position: relative;
    }

    .s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c {
  margin: 0 !important;
  overflow: visible;
}

#s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c img.shogun-image {
  /* Add background color handling */
  
}

#s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c .shg-image-content-wrapper {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }

    #s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c .shogun-image-link {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c .shogun-image-content {
  
    justify-content: center;
  
}

.s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image {
  box-sizing: border-box;
}



.s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image-container {
      position: relative;
    }

    .s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c {
  margin: 0 !important;
  overflow: visible;
}

#s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c img.shogun-image {
  /* Add background color handling */
  
}

#s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c .shg-image-content-wrapper {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }

    #s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c .shogun-image-link {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c .shogun-image-content {
  
    justify-content: center;
  
}

.s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image {
  box-sizing: border-box;
}



.s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image-container {
      position: relative;
    }

    .s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c {
  margin: 0 !important;
  overflow: visible;
}

#s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c img.shogun-image {
  /* Add background color handling */
  
}

#s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c .shg-image-content-wrapper {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }

    #s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c .shogun-image-link {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c .shogun-image-content {
  
    justify-content: center;
  
}

.s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image {
  box-sizing: border-box;
}



.s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image-container {
      position: relative;
    }

    .s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0abe41a6-0ec9-4f3d-892b-c3bfc9e2fc4c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-ee6c5e16-8daf-4034-b876-64cc0f048504 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1080/1920;
text-align: center;
}

#s-ee6c5e16-8daf-4034-b876-64cc0f048504 {
  margin: 0 !important;
  overflow: visible;
}

#s-ee6c5e16-8daf-4034-b876-64cc0f048504-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ee6c5e16-8daf-4034-b876-64cc0f048504 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ee6c5e16-8daf-4034-b876-64cc0f048504 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ee6c5e16-8daf-4034-b876-64cc0f048504 img.shogun-image {
  /* Add background color handling */
  
}

#s-ee6c5e16-8daf-4034-b876-64cc0f048504 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ee6c5e16-8daf-4034-b876-64cc0f048504 .shg-image-content-wrapper {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }

    #s-ee6c5e16-8daf-4034-b876-64cc0f048504 .shogun-image-link {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ee6c5e16-8daf-4034-b876-64cc0f048504 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ee6c5e16-8daf-4034-b876-64cc0f048504 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-ee6c5e16-8daf-4034-b876-64cc0f048504 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ee6c5e16-8daf-4034-b876-64cc0f048504.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image {
  box-sizing: border-box;
}



.s-ee6c5e16-8daf-4034-b876-64cc0f048504 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ee6c5e16-8daf-4034-b876-64cc0f048504 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image-container {
      position: relative;
    }

    .s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ee6c5e16-8daf-4034-b876-64cc0f048504 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-ee6c5e16-8daf-4034-b876-64cc0f048504 {
  margin: 0 !important;
  overflow: visible;
}

#s-ee6c5e16-8daf-4034-b876-64cc0f048504-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ee6c5e16-8daf-4034-b876-64cc0f048504 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ee6c5e16-8daf-4034-b876-64cc0f048504 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ee6c5e16-8daf-4034-b876-64cc0f048504 img.shogun-image {
  /* Add background color handling */
  
}

#s-ee6c5e16-8daf-4034-b876-64cc0f048504 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ee6c5e16-8daf-4034-b876-64cc0f048504 .shg-image-content-wrapper {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }

    #s-ee6c5e16-8daf-4034-b876-64cc0f048504 .shogun-image-link {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ee6c5e16-8daf-4034-b876-64cc0f048504 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ee6c5e16-8daf-4034-b876-64cc0f048504 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-ee6c5e16-8daf-4034-b876-64cc0f048504 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ee6c5e16-8daf-4034-b876-64cc0f048504.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image {
  box-sizing: border-box;
}



.s-ee6c5e16-8daf-4034-b876-64cc0f048504 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ee6c5e16-8daf-4034-b876-64cc0f048504 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image-container {
      position: relative;
    }

    .s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ee6c5e16-8daf-4034-b876-64cc0f048504 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-ee6c5e16-8daf-4034-b876-64cc0f048504 {
  margin: 0 !important;
  overflow: visible;
}

#s-ee6c5e16-8daf-4034-b876-64cc0f048504-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ee6c5e16-8daf-4034-b876-64cc0f048504 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ee6c5e16-8daf-4034-b876-64cc0f048504 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ee6c5e16-8daf-4034-b876-64cc0f048504 img.shogun-image {
  /* Add background color handling */
  
}

#s-ee6c5e16-8daf-4034-b876-64cc0f048504 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ee6c5e16-8daf-4034-b876-64cc0f048504 .shg-image-content-wrapper {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }

    #s-ee6c5e16-8daf-4034-b876-64cc0f048504 .shogun-image-link {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ee6c5e16-8daf-4034-b876-64cc0f048504 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ee6c5e16-8daf-4034-b876-64cc0f048504 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-ee6c5e16-8daf-4034-b876-64cc0f048504 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ee6c5e16-8daf-4034-b876-64cc0f048504.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image {
  box-sizing: border-box;
}



.s-ee6c5e16-8daf-4034-b876-64cc0f048504 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ee6c5e16-8daf-4034-b876-64cc0f048504 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image-container {
      position: relative;
    }

    .s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ee6c5e16-8daf-4034-b876-64cc0f048504 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-ee6c5e16-8daf-4034-b876-64cc0f048504 {
  margin: 0 !important;
  overflow: visible;
}

#s-ee6c5e16-8daf-4034-b876-64cc0f048504-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ee6c5e16-8daf-4034-b876-64cc0f048504 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ee6c5e16-8daf-4034-b876-64cc0f048504 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ee6c5e16-8daf-4034-b876-64cc0f048504 img.shogun-image {
  /* Add background color handling */
  
}

#s-ee6c5e16-8daf-4034-b876-64cc0f048504 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ee6c5e16-8daf-4034-b876-64cc0f048504 .shg-image-content-wrapper {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }

    #s-ee6c5e16-8daf-4034-b876-64cc0f048504 .shogun-image-link {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ee6c5e16-8daf-4034-b876-64cc0f048504 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ee6c5e16-8daf-4034-b876-64cc0f048504 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-ee6c5e16-8daf-4034-b876-64cc0f048504 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ee6c5e16-8daf-4034-b876-64cc0f048504.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image {
  box-sizing: border-box;
}



.s-ee6c5e16-8daf-4034-b876-64cc0f048504 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ee6c5e16-8daf-4034-b876-64cc0f048504 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image-container {
      position: relative;
    }

    .s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ee6c5e16-8daf-4034-b876-64cc0f048504 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-ee6c5e16-8daf-4034-b876-64cc0f048504 {
  margin: 0 !important;
  overflow: visible;
}

#s-ee6c5e16-8daf-4034-b876-64cc0f048504-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ee6c5e16-8daf-4034-b876-64cc0f048504 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ee6c5e16-8daf-4034-b876-64cc0f048504 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ee6c5e16-8daf-4034-b876-64cc0f048504 img.shogun-image {
  /* Add background color handling */
  
}

#s-ee6c5e16-8daf-4034-b876-64cc0f048504 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ee6c5e16-8daf-4034-b876-64cc0f048504 .shg-image-content-wrapper {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }

    #s-ee6c5e16-8daf-4034-b876-64cc0f048504 .shogun-image-link {
      aspect-ratio: 1080/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ee6c5e16-8daf-4034-b876-64cc0f048504 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ee6c5e16-8daf-4034-b876-64cc0f048504 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-ee6c5e16-8daf-4034-b876-64cc0f048504 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ee6c5e16-8daf-4034-b876-64cc0f048504.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image {
  box-sizing: border-box;
}



.s-ee6c5e16-8daf-4034-b876-64cc0f048504 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ee6c5e16-8daf-4034-b876-64cc0f048504 {
      --shg-aspect-ratio: calc(1080/1920); 
    }

    .s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image-container {
      position: relative;
    }

    .s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ee6c5e16-8daf-4034-b876-64cc0f048504.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ee6c5e16-8daf-4034-b876-64cc0f048504 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-90c4269c-2c74-4e8f-abc6-cc2bea364e99 {
  margin-left: auto;
margin-right: auto;
padding-top: 25px;
padding-left: 45%;
padding-right: 45%;
}

#s-90c4269c-2c74-4e8f-abc6-cc2bea364e99 hr {
  border-top: 2px solid #ddd;
}

#s-822d1e98-fb2a-478d-9501-95da0f05e2f2 {
  margin-left: auto;
margin-right: auto;
padding-left: 10%;
padding-right: 10%;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-822d1e98-fb2a-478d-9501-95da0f05e2f2 {
  display: none;
}
#s-822d1e98-fb2a-478d-9501-95da0f05e2f2, #wrap-s-822d1e98-fb2a-478d-9501-95da0f05e2f2, #wrap-content-s-822d1e98-fb2a-478d-9501-95da0f05e2f2 { display: none !important; }}@media (max-width: 767px){#s-822d1e98-fb2a-478d-9501-95da0f05e2f2 {
  display: none;
}
#s-822d1e98-fb2a-478d-9501-95da0f05e2f2, #wrap-s-822d1e98-fb2a-478d-9501-95da0f05e2f2, #wrap-content-s-822d1e98-fb2a-478d-9501-95da0f05e2f2 { display: none !important; }}







#s-822d1e98-fb2a-478d-9501-95da0f05e2f2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-822d1e98-fb2a-478d-9501-95da0f05e2f2.shg-box.shg-c {
  justify-content: center;
}

#s-a7698883-2051-4bd0-9d79-043d802d4525 {
  margin-left: 0px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-a7698883-2051-4bd0-9d79-043d802d4525 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a7698883-2051-4bd0-9d79-043d802d4525 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-a7698883-2051-4bd0-9d79-043d802d4525 {
  
}
}@media (max-width: 767px){#s-a7698883-2051-4bd0-9d79-043d802d4525 {
  
}
}
@media (min-width: 0px) {
[id="s-a7698883-2051-4bd0-9d79-043d802d4525"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a7698883-2051-4bd0-9d79-043d802d4525"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-a7698883-2051-4bd0-9d79-043d802d4525"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-a7698883-2051-4bd0-9d79-043d802d4525"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-a877bc7e-bc7d-4438-88c0-4fc77bd684fd {
  padding-left: 0%;
padding-right: 0%;
background-color: rgba(255, 255, 255, 0);
}
@media (min-width: 1200px){#s-a877bc7e-bc7d-4438-88c0-4fc77bd684fd {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a877bc7e-bc7d-4438-88c0-4fc77bd684fd {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-a877bc7e-bc7d-4438-88c0-4fc77bd684fd {
  
}
}@media (max-width: 767px){#s-a877bc7e-bc7d-4438-88c0-4fc77bd684fd {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 60px;
padding-bottom: 60px;
}
}







#s-a877bc7e-bc7d-4438-88c0-4fc77bd684fd > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
  display: block;
}#s-a877bc7e-bc7d-4438-88c0-4fc77bd684fd.shg-box.shg-c {
  justify-content: center;
}

#s-e1f27af0-aa3c-40b6-bf41-da2582850808 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
}

/* Duplicated Styles are also in Category dynamic.css.liquid - keep them in sync */

#slider-v3-s-e1f27af0-aa3c-40b6-bf41-da2582850808 {
  --swiper-pagination-color: rgba(255, 255, 255, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(255, 255, 255, 1) !important;
  --swiper-pagination-bullet-active-color: rgba(113, 113, 113, 1) !important;
  --arrow-button-size: 35px !important;
  --swiper-pagination-bullet-size: 14px !important;
  
}

#slider-v3-s-e1f27af0-aa3c-40b6-bf41-da2582850808 > .swiper-button-prev,
#slider-v3-s-e1f27af0-aa3c-40b6-bf41-da2582850808 > .swiper-button-next {
  
}

#slider-v3-s-e1f27af0-aa3c-40b6-bf41-da2582850808 > .swiper-button-prev svg,
#slider-v3-s-e1f27af0-aa3c-40b6-bf41-da2582850808 > .swiper-button-next svg {
  fill: rgba(255, 255, 255, 1) !important;
  stroke: rgba(255, 255, 255, 1) !important;
  
}

#slider-v3-s-e1f27af0-aa3c-40b6-bf41-da2582850808 > .swiper-button-prev {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-e1f27af0-aa3c-40b6-bf41-da2582850808 > .swiper-button-next {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-e1f27af0-aa3c-40b6-bf41-da2582850808 > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-e1f27af0-aa3c-40b6-bf41-da2582850808 .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-e1f27af0-aa3c-40b6-bf41-da2582850808 .swiper-pagination-bullet-active {
  background-color: rgba(113, 113, 113, 1) !important;
  width: calc(14px * 1) !important;
  height: 14px !important;
  border-radius:  50px  !important;
}

#slider-v3-s-e1f27af0-aa3c-40b6-bf41-da2582850808 .swiper-pagination {
  position:  initial ;
  display: flex;
  margin-top:  8px ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}

#s-b08c1418-3876-4e90-9e09-f74f16538d4d {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-b08c1418-3876-4e90-9e09-f74f16538d4d {
  margin: 0 !important;
  overflow: visible;
}

#s-b08c1418-3876-4e90-9e09-f74f16538d4d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b08c1418-3876-4e90-9e09-f74f16538d4d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b08c1418-3876-4e90-9e09-f74f16538d4d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b08c1418-3876-4e90-9e09-f74f16538d4d img.shogun-image {
  /* Add background color handling */
  
}

#s-b08c1418-3876-4e90-9e09-f74f16538d4d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b08c1418-3876-4e90-9e09-f74f16538d4d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b08c1418-3876-4e90-9e09-f74f16538d4d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b08c1418-3876-4e90-9e09-f74f16538d4d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b08c1418-3876-4e90-9e09-f74f16538d4d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-b08c1418-3876-4e90-9e09-f74f16538d4d .shogun-image-content {
  
    justify-content: center;
  
}

.s-b08c1418-3876-4e90-9e09-f74f16538d4d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image {
  box-sizing: border-box;
}



.s-b08c1418-3876-4e90-9e09-f74f16538d4d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b08c1418-3876-4e90-9e09-f74f16538d4d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image-container {
      position: relative;
    }

    .s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b08c1418-3876-4e90-9e09-f74f16538d4d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-b08c1418-3876-4e90-9e09-f74f16538d4d {
  margin: 0 !important;
  overflow: visible;
}

#s-b08c1418-3876-4e90-9e09-f74f16538d4d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b08c1418-3876-4e90-9e09-f74f16538d4d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b08c1418-3876-4e90-9e09-f74f16538d4d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b08c1418-3876-4e90-9e09-f74f16538d4d img.shogun-image {
  /* Add background color handling */
  
}

#s-b08c1418-3876-4e90-9e09-f74f16538d4d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b08c1418-3876-4e90-9e09-f74f16538d4d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b08c1418-3876-4e90-9e09-f74f16538d4d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b08c1418-3876-4e90-9e09-f74f16538d4d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b08c1418-3876-4e90-9e09-f74f16538d4d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-b08c1418-3876-4e90-9e09-f74f16538d4d .shogun-image-content {
  
    justify-content: center;
  
}

.s-b08c1418-3876-4e90-9e09-f74f16538d4d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image {
  box-sizing: border-box;
}



.s-b08c1418-3876-4e90-9e09-f74f16538d4d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b08c1418-3876-4e90-9e09-f74f16538d4d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image-container {
      position: relative;
    }

    .s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b08c1418-3876-4e90-9e09-f74f16538d4d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-b08c1418-3876-4e90-9e09-f74f16538d4d {
  margin: 0 !important;
  overflow: visible;
}

#s-b08c1418-3876-4e90-9e09-f74f16538d4d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b08c1418-3876-4e90-9e09-f74f16538d4d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b08c1418-3876-4e90-9e09-f74f16538d4d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b08c1418-3876-4e90-9e09-f74f16538d4d img.shogun-image {
  /* Add background color handling */
  
}

#s-b08c1418-3876-4e90-9e09-f74f16538d4d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b08c1418-3876-4e90-9e09-f74f16538d4d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b08c1418-3876-4e90-9e09-f74f16538d4d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b08c1418-3876-4e90-9e09-f74f16538d4d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b08c1418-3876-4e90-9e09-f74f16538d4d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-b08c1418-3876-4e90-9e09-f74f16538d4d .shogun-image-content {
  
    justify-content: center;
  
}

.s-b08c1418-3876-4e90-9e09-f74f16538d4d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image {
  box-sizing: border-box;
}



.s-b08c1418-3876-4e90-9e09-f74f16538d4d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b08c1418-3876-4e90-9e09-f74f16538d4d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image-container {
      position: relative;
    }

    .s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b08c1418-3876-4e90-9e09-f74f16538d4d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-b08c1418-3876-4e90-9e09-f74f16538d4d {
  margin: 0 !important;
  overflow: visible;
}

#s-b08c1418-3876-4e90-9e09-f74f16538d4d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b08c1418-3876-4e90-9e09-f74f16538d4d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b08c1418-3876-4e90-9e09-f74f16538d4d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b08c1418-3876-4e90-9e09-f74f16538d4d img.shogun-image {
  /* Add background color handling */
  
}

#s-b08c1418-3876-4e90-9e09-f74f16538d4d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b08c1418-3876-4e90-9e09-f74f16538d4d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b08c1418-3876-4e90-9e09-f74f16538d4d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b08c1418-3876-4e90-9e09-f74f16538d4d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b08c1418-3876-4e90-9e09-f74f16538d4d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-b08c1418-3876-4e90-9e09-f74f16538d4d .shogun-image-content {
  
    justify-content: center;
  
}

.s-b08c1418-3876-4e90-9e09-f74f16538d4d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image {
  box-sizing: border-box;
}



.s-b08c1418-3876-4e90-9e09-f74f16538d4d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b08c1418-3876-4e90-9e09-f74f16538d4d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image-container {
      position: relative;
    }

    .s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b08c1418-3876-4e90-9e09-f74f16538d4d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-b08c1418-3876-4e90-9e09-f74f16538d4d {
  margin: 0 !important;
  overflow: visible;
}

#s-b08c1418-3876-4e90-9e09-f74f16538d4d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b08c1418-3876-4e90-9e09-f74f16538d4d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b08c1418-3876-4e90-9e09-f74f16538d4d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b08c1418-3876-4e90-9e09-f74f16538d4d img.shogun-image {
  /* Add background color handling */
  
}

#s-b08c1418-3876-4e90-9e09-f74f16538d4d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b08c1418-3876-4e90-9e09-f74f16538d4d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b08c1418-3876-4e90-9e09-f74f16538d4d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b08c1418-3876-4e90-9e09-f74f16538d4d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b08c1418-3876-4e90-9e09-f74f16538d4d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-b08c1418-3876-4e90-9e09-f74f16538d4d .shogun-image-content {
  
    justify-content: center;
  
}

.s-b08c1418-3876-4e90-9e09-f74f16538d4d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image {
  box-sizing: border-box;
}



.s-b08c1418-3876-4e90-9e09-f74f16538d4d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b08c1418-3876-4e90-9e09-f74f16538d4d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image-container {
      position: relative;
    }

    .s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b08c1418-3876-4e90-9e09-f74f16538d4d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b08c1418-3876-4e90-9e09-f74f16538d4d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-1503d550-b1e0-49dc-83b4-35065d864404 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-1503d550-b1e0-49dc-83b4-35065d864404 {
  margin: 0 !important;
  overflow: visible;
}

#s-1503d550-b1e0-49dc-83b4-35065d864404-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1503d550-b1e0-49dc-83b4-35065d864404 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1503d550-b1e0-49dc-83b4-35065d864404 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1503d550-b1e0-49dc-83b4-35065d864404 img.shogun-image {
  /* Add background color handling */
  
}

#s-1503d550-b1e0-49dc-83b4-35065d864404 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1503d550-b1e0-49dc-83b4-35065d864404 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1503d550-b1e0-49dc-83b4-35065d864404 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1503d550-b1e0-49dc-83b4-35065d864404 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1503d550-b1e0-49dc-83b4-35065d864404 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-1503d550-b1e0-49dc-83b4-35065d864404 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1503d550-b1e0-49dc-83b4-35065d864404.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image {
  box-sizing: border-box;
}



.s-1503d550-b1e0-49dc-83b4-35065d864404 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1503d550-b1e0-49dc-83b4-35065d864404 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image-container {
      position: relative;
    }

    .s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1503d550-b1e0-49dc-83b4-35065d864404 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-1503d550-b1e0-49dc-83b4-35065d864404 {
  margin: 0 !important;
  overflow: visible;
}

#s-1503d550-b1e0-49dc-83b4-35065d864404-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1503d550-b1e0-49dc-83b4-35065d864404 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1503d550-b1e0-49dc-83b4-35065d864404 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1503d550-b1e0-49dc-83b4-35065d864404 img.shogun-image {
  /* Add background color handling */
  
}

#s-1503d550-b1e0-49dc-83b4-35065d864404 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1503d550-b1e0-49dc-83b4-35065d864404 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1503d550-b1e0-49dc-83b4-35065d864404 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1503d550-b1e0-49dc-83b4-35065d864404 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1503d550-b1e0-49dc-83b4-35065d864404 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-1503d550-b1e0-49dc-83b4-35065d864404 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1503d550-b1e0-49dc-83b4-35065d864404.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image {
  box-sizing: border-box;
}



.s-1503d550-b1e0-49dc-83b4-35065d864404 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1503d550-b1e0-49dc-83b4-35065d864404 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image-container {
      position: relative;
    }

    .s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1503d550-b1e0-49dc-83b4-35065d864404 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-1503d550-b1e0-49dc-83b4-35065d864404 {
  margin: 0 !important;
  overflow: visible;
}

#s-1503d550-b1e0-49dc-83b4-35065d864404-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1503d550-b1e0-49dc-83b4-35065d864404 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1503d550-b1e0-49dc-83b4-35065d864404 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1503d550-b1e0-49dc-83b4-35065d864404 img.shogun-image {
  /* Add background color handling */
  
}

#s-1503d550-b1e0-49dc-83b4-35065d864404 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1503d550-b1e0-49dc-83b4-35065d864404 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1503d550-b1e0-49dc-83b4-35065d864404 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1503d550-b1e0-49dc-83b4-35065d864404 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1503d550-b1e0-49dc-83b4-35065d864404 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-1503d550-b1e0-49dc-83b4-35065d864404 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1503d550-b1e0-49dc-83b4-35065d864404.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image {
  box-sizing: border-box;
}



.s-1503d550-b1e0-49dc-83b4-35065d864404 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1503d550-b1e0-49dc-83b4-35065d864404 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image-container {
      position: relative;
    }

    .s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1503d550-b1e0-49dc-83b4-35065d864404 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-1503d550-b1e0-49dc-83b4-35065d864404 {
  margin: 0 !important;
  overflow: visible;
}

#s-1503d550-b1e0-49dc-83b4-35065d864404-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1503d550-b1e0-49dc-83b4-35065d864404 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1503d550-b1e0-49dc-83b4-35065d864404 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1503d550-b1e0-49dc-83b4-35065d864404 img.shogun-image {
  /* Add background color handling */
  
}

#s-1503d550-b1e0-49dc-83b4-35065d864404 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1503d550-b1e0-49dc-83b4-35065d864404 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1503d550-b1e0-49dc-83b4-35065d864404 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1503d550-b1e0-49dc-83b4-35065d864404 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1503d550-b1e0-49dc-83b4-35065d864404 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-1503d550-b1e0-49dc-83b4-35065d864404 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1503d550-b1e0-49dc-83b4-35065d864404.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image {
  box-sizing: border-box;
}



.s-1503d550-b1e0-49dc-83b4-35065d864404 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1503d550-b1e0-49dc-83b4-35065d864404 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image-container {
      position: relative;
    }

    .s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1503d550-b1e0-49dc-83b4-35065d864404 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-1503d550-b1e0-49dc-83b4-35065d864404 {
  margin: 0 !important;
  overflow: visible;
}

#s-1503d550-b1e0-49dc-83b4-35065d864404-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1503d550-b1e0-49dc-83b4-35065d864404 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1503d550-b1e0-49dc-83b4-35065d864404 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1503d550-b1e0-49dc-83b4-35065d864404 img.shogun-image {
  /* Add background color handling */
  
}

#s-1503d550-b1e0-49dc-83b4-35065d864404 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1503d550-b1e0-49dc-83b4-35065d864404 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1503d550-b1e0-49dc-83b4-35065d864404 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1503d550-b1e0-49dc-83b4-35065d864404 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1503d550-b1e0-49dc-83b4-35065d864404 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-1503d550-b1e0-49dc-83b4-35065d864404 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1503d550-b1e0-49dc-83b4-35065d864404.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image {
  box-sizing: border-box;
}



.s-1503d550-b1e0-49dc-83b4-35065d864404 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1503d550-b1e0-49dc-83b4-35065d864404 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image-container {
      position: relative;
    }

    .s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1503d550-b1e0-49dc-83b4-35065d864404.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1503d550-b1e0-49dc-83b4-35065d864404 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-276d6885-a99d-4a0a-9835-06edbc51bca6 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-276d6885-a99d-4a0a-9835-06edbc51bca6 {
  margin: 0 !important;
  overflow: visible;
}

#s-276d6885-a99d-4a0a-9835-06edbc51bca6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-276d6885-a99d-4a0a-9835-06edbc51bca6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-276d6885-a99d-4a0a-9835-06edbc51bca6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-276d6885-a99d-4a0a-9835-06edbc51bca6 img.shogun-image {
  /* Add background color handling */
  
}

#s-276d6885-a99d-4a0a-9835-06edbc51bca6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-276d6885-a99d-4a0a-9835-06edbc51bca6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-276d6885-a99d-4a0a-9835-06edbc51bca6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-276d6885-a99d-4a0a-9835-06edbc51bca6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-276d6885-a99d-4a0a-9835-06edbc51bca6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-276d6885-a99d-4a0a-9835-06edbc51bca6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-276d6885-a99d-4a0a-9835-06edbc51bca6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image {
  box-sizing: border-box;
}



.s-276d6885-a99d-4a0a-9835-06edbc51bca6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-276d6885-a99d-4a0a-9835-06edbc51bca6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image-container {
      position: relative;
    }

    .s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-276d6885-a99d-4a0a-9835-06edbc51bca6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-276d6885-a99d-4a0a-9835-06edbc51bca6 {
  margin: 0 !important;
  overflow: visible;
}

#s-276d6885-a99d-4a0a-9835-06edbc51bca6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-276d6885-a99d-4a0a-9835-06edbc51bca6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-276d6885-a99d-4a0a-9835-06edbc51bca6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-276d6885-a99d-4a0a-9835-06edbc51bca6 img.shogun-image {
  /* Add background color handling */
  
}

#s-276d6885-a99d-4a0a-9835-06edbc51bca6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-276d6885-a99d-4a0a-9835-06edbc51bca6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-276d6885-a99d-4a0a-9835-06edbc51bca6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-276d6885-a99d-4a0a-9835-06edbc51bca6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-276d6885-a99d-4a0a-9835-06edbc51bca6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-276d6885-a99d-4a0a-9835-06edbc51bca6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-276d6885-a99d-4a0a-9835-06edbc51bca6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image {
  box-sizing: border-box;
}



.s-276d6885-a99d-4a0a-9835-06edbc51bca6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-276d6885-a99d-4a0a-9835-06edbc51bca6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image-container {
      position: relative;
    }

    .s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-276d6885-a99d-4a0a-9835-06edbc51bca6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-276d6885-a99d-4a0a-9835-06edbc51bca6 {
  margin: 0 !important;
  overflow: visible;
}

#s-276d6885-a99d-4a0a-9835-06edbc51bca6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-276d6885-a99d-4a0a-9835-06edbc51bca6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-276d6885-a99d-4a0a-9835-06edbc51bca6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-276d6885-a99d-4a0a-9835-06edbc51bca6 img.shogun-image {
  /* Add background color handling */
  
}

#s-276d6885-a99d-4a0a-9835-06edbc51bca6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-276d6885-a99d-4a0a-9835-06edbc51bca6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-276d6885-a99d-4a0a-9835-06edbc51bca6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-276d6885-a99d-4a0a-9835-06edbc51bca6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-276d6885-a99d-4a0a-9835-06edbc51bca6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-276d6885-a99d-4a0a-9835-06edbc51bca6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-276d6885-a99d-4a0a-9835-06edbc51bca6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image {
  box-sizing: border-box;
}



.s-276d6885-a99d-4a0a-9835-06edbc51bca6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-276d6885-a99d-4a0a-9835-06edbc51bca6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image-container {
      position: relative;
    }

    .s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-276d6885-a99d-4a0a-9835-06edbc51bca6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-276d6885-a99d-4a0a-9835-06edbc51bca6 {
  margin: 0 !important;
  overflow: visible;
}

#s-276d6885-a99d-4a0a-9835-06edbc51bca6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-276d6885-a99d-4a0a-9835-06edbc51bca6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-276d6885-a99d-4a0a-9835-06edbc51bca6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-276d6885-a99d-4a0a-9835-06edbc51bca6 img.shogun-image {
  /* Add background color handling */
  
}

#s-276d6885-a99d-4a0a-9835-06edbc51bca6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-276d6885-a99d-4a0a-9835-06edbc51bca6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-276d6885-a99d-4a0a-9835-06edbc51bca6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-276d6885-a99d-4a0a-9835-06edbc51bca6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-276d6885-a99d-4a0a-9835-06edbc51bca6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-276d6885-a99d-4a0a-9835-06edbc51bca6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-276d6885-a99d-4a0a-9835-06edbc51bca6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image {
  box-sizing: border-box;
}



.s-276d6885-a99d-4a0a-9835-06edbc51bca6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-276d6885-a99d-4a0a-9835-06edbc51bca6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image-container {
      position: relative;
    }

    .s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-276d6885-a99d-4a0a-9835-06edbc51bca6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-276d6885-a99d-4a0a-9835-06edbc51bca6 {
  margin: 0 !important;
  overflow: visible;
}

#s-276d6885-a99d-4a0a-9835-06edbc51bca6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-276d6885-a99d-4a0a-9835-06edbc51bca6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-276d6885-a99d-4a0a-9835-06edbc51bca6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-276d6885-a99d-4a0a-9835-06edbc51bca6 img.shogun-image {
  /* Add background color handling */
  
}

#s-276d6885-a99d-4a0a-9835-06edbc51bca6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-276d6885-a99d-4a0a-9835-06edbc51bca6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-276d6885-a99d-4a0a-9835-06edbc51bca6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-276d6885-a99d-4a0a-9835-06edbc51bca6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-276d6885-a99d-4a0a-9835-06edbc51bca6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-276d6885-a99d-4a0a-9835-06edbc51bca6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-276d6885-a99d-4a0a-9835-06edbc51bca6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image {
  box-sizing: border-box;
}



.s-276d6885-a99d-4a0a-9835-06edbc51bca6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-276d6885-a99d-4a0a-9835-06edbc51bca6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image-container {
      position: relative;
    }

    .s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-276d6885-a99d-4a0a-9835-06edbc51bca6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-276d6885-a99d-4a0a-9835-06edbc51bca6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-24bc554a-e48e-406b-af80-a3ab33742c2a {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-24bc554a-e48e-406b-af80-a3ab33742c2a {
  margin: 0 !important;
  overflow: visible;
}

#s-24bc554a-e48e-406b-af80-a3ab33742c2a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-24bc554a-e48e-406b-af80-a3ab33742c2a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-24bc554a-e48e-406b-af80-a3ab33742c2a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-24bc554a-e48e-406b-af80-a3ab33742c2a img.shogun-image {
  /* Add background color handling */
  
}

#s-24bc554a-e48e-406b-af80-a3ab33742c2a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-24bc554a-e48e-406b-af80-a3ab33742c2a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-24bc554a-e48e-406b-af80-a3ab33742c2a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-24bc554a-e48e-406b-af80-a3ab33742c2a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-24bc554a-e48e-406b-af80-a3ab33742c2a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-24bc554a-e48e-406b-af80-a3ab33742c2a .shogun-image-content {
  
    justify-content: center;
  
}

.s-24bc554a-e48e-406b-af80-a3ab33742c2a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image {
  box-sizing: border-box;
}



.s-24bc554a-e48e-406b-af80-a3ab33742c2a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-24bc554a-e48e-406b-af80-a3ab33742c2a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image-container {
      position: relative;
    }

    .s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24bc554a-e48e-406b-af80-a3ab33742c2a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-24bc554a-e48e-406b-af80-a3ab33742c2a {
  margin: 0 !important;
  overflow: visible;
}

#s-24bc554a-e48e-406b-af80-a3ab33742c2a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-24bc554a-e48e-406b-af80-a3ab33742c2a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-24bc554a-e48e-406b-af80-a3ab33742c2a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-24bc554a-e48e-406b-af80-a3ab33742c2a img.shogun-image {
  /* Add background color handling */
  
}

#s-24bc554a-e48e-406b-af80-a3ab33742c2a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-24bc554a-e48e-406b-af80-a3ab33742c2a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-24bc554a-e48e-406b-af80-a3ab33742c2a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-24bc554a-e48e-406b-af80-a3ab33742c2a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-24bc554a-e48e-406b-af80-a3ab33742c2a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-24bc554a-e48e-406b-af80-a3ab33742c2a .shogun-image-content {
  
    justify-content: center;
  
}

.s-24bc554a-e48e-406b-af80-a3ab33742c2a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image {
  box-sizing: border-box;
}



.s-24bc554a-e48e-406b-af80-a3ab33742c2a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-24bc554a-e48e-406b-af80-a3ab33742c2a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image-container {
      position: relative;
    }

    .s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24bc554a-e48e-406b-af80-a3ab33742c2a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-24bc554a-e48e-406b-af80-a3ab33742c2a {
  margin: 0 !important;
  overflow: visible;
}

#s-24bc554a-e48e-406b-af80-a3ab33742c2a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-24bc554a-e48e-406b-af80-a3ab33742c2a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-24bc554a-e48e-406b-af80-a3ab33742c2a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-24bc554a-e48e-406b-af80-a3ab33742c2a img.shogun-image {
  /* Add background color handling */
  
}

#s-24bc554a-e48e-406b-af80-a3ab33742c2a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-24bc554a-e48e-406b-af80-a3ab33742c2a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-24bc554a-e48e-406b-af80-a3ab33742c2a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-24bc554a-e48e-406b-af80-a3ab33742c2a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-24bc554a-e48e-406b-af80-a3ab33742c2a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-24bc554a-e48e-406b-af80-a3ab33742c2a .shogun-image-content {
  
    justify-content: center;
  
}

.s-24bc554a-e48e-406b-af80-a3ab33742c2a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image {
  box-sizing: border-box;
}



.s-24bc554a-e48e-406b-af80-a3ab33742c2a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-24bc554a-e48e-406b-af80-a3ab33742c2a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image-container {
      position: relative;
    }

    .s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24bc554a-e48e-406b-af80-a3ab33742c2a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-24bc554a-e48e-406b-af80-a3ab33742c2a {
  margin: 0 !important;
  overflow: visible;
}

#s-24bc554a-e48e-406b-af80-a3ab33742c2a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-24bc554a-e48e-406b-af80-a3ab33742c2a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-24bc554a-e48e-406b-af80-a3ab33742c2a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-24bc554a-e48e-406b-af80-a3ab33742c2a img.shogun-image {
  /* Add background color handling */
  
}

#s-24bc554a-e48e-406b-af80-a3ab33742c2a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-24bc554a-e48e-406b-af80-a3ab33742c2a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-24bc554a-e48e-406b-af80-a3ab33742c2a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-24bc554a-e48e-406b-af80-a3ab33742c2a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-24bc554a-e48e-406b-af80-a3ab33742c2a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-24bc554a-e48e-406b-af80-a3ab33742c2a .shogun-image-content {
  
    justify-content: center;
  
}

.s-24bc554a-e48e-406b-af80-a3ab33742c2a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image {
  box-sizing: border-box;
}



.s-24bc554a-e48e-406b-af80-a3ab33742c2a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-24bc554a-e48e-406b-af80-a3ab33742c2a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image-container {
      position: relative;
    }

    .s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24bc554a-e48e-406b-af80-a3ab33742c2a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-24bc554a-e48e-406b-af80-a3ab33742c2a {
  margin: 0 !important;
  overflow: visible;
}

#s-24bc554a-e48e-406b-af80-a3ab33742c2a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-24bc554a-e48e-406b-af80-a3ab33742c2a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-24bc554a-e48e-406b-af80-a3ab33742c2a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-24bc554a-e48e-406b-af80-a3ab33742c2a img.shogun-image {
  /* Add background color handling */
  
}

#s-24bc554a-e48e-406b-af80-a3ab33742c2a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-24bc554a-e48e-406b-af80-a3ab33742c2a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-24bc554a-e48e-406b-af80-a3ab33742c2a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-24bc554a-e48e-406b-af80-a3ab33742c2a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-24bc554a-e48e-406b-af80-a3ab33742c2a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-24bc554a-e48e-406b-af80-a3ab33742c2a .shogun-image-content {
  
    justify-content: center;
  
}

.s-24bc554a-e48e-406b-af80-a3ab33742c2a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image {
  box-sizing: border-box;
}



.s-24bc554a-e48e-406b-af80-a3ab33742c2a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-24bc554a-e48e-406b-af80-a3ab33742c2a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image-container {
      position: relative;
    }

    .s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24bc554a-e48e-406b-af80-a3ab33742c2a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24bc554a-e48e-406b-af80-a3ab33742c2a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-76ef505e-ed41-48a9-809a-d894496f6580 {
  margin-left: auto;
margin-right: auto;
max-width: 1024px;
aspect-ratio: 1/1;
text-align: center;
}

#s-76ef505e-ed41-48a9-809a-d894496f6580 {
  margin: 0 !important;
  overflow: visible;
}

#s-76ef505e-ed41-48a9-809a-d894496f6580-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-76ef505e-ed41-48a9-809a-d894496f6580 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-76ef505e-ed41-48a9-809a-d894496f6580 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-76ef505e-ed41-48a9-809a-d894496f6580 img.shogun-image {
  /* Add background color handling */
  
}

#s-76ef505e-ed41-48a9-809a-d894496f6580 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-76ef505e-ed41-48a9-809a-d894496f6580 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-76ef505e-ed41-48a9-809a-d894496f6580 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-76ef505e-ed41-48a9-809a-d894496f6580 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-76ef505e-ed41-48a9-809a-d894496f6580 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1024px;
  }



  img.s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image {
    
    
    
    max-height: 1024px;
  }


.s-76ef505e-ed41-48a9-809a-d894496f6580 .shogun-image-content {
  
    justify-content: center;
  
}

.s-76ef505e-ed41-48a9-809a-d894496f6580.shg-align-container {
  display: flex;
  justify-content: center
}

.s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image {
  box-sizing: border-box;
}



.s-76ef505e-ed41-48a9-809a-d894496f6580 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-76ef505e-ed41-48a9-809a-d894496f6580 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image-container {
      position: relative;
    }

    .s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-76ef505e-ed41-48a9-809a-d894496f6580 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1024px;
    }
  }

@media (min-width: 1200px){#s-76ef505e-ed41-48a9-809a-d894496f6580 {
  margin: 0 !important;
  overflow: visible;
}

#s-76ef505e-ed41-48a9-809a-d894496f6580-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-76ef505e-ed41-48a9-809a-d894496f6580 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-76ef505e-ed41-48a9-809a-d894496f6580 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-76ef505e-ed41-48a9-809a-d894496f6580 img.shogun-image {
  /* Add background color handling */
  
}

#s-76ef505e-ed41-48a9-809a-d894496f6580 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-76ef505e-ed41-48a9-809a-d894496f6580 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-76ef505e-ed41-48a9-809a-d894496f6580 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-76ef505e-ed41-48a9-809a-d894496f6580 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-76ef505e-ed41-48a9-809a-d894496f6580 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1024px;
  }



  img.s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image {
    
    
    
    max-height: 1024px;
  }


.s-76ef505e-ed41-48a9-809a-d894496f6580 .shogun-image-content {
  
    justify-content: center;
  
}

.s-76ef505e-ed41-48a9-809a-d894496f6580.shg-align-container {
  display: flex;
  justify-content: center
}

.s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image {
  box-sizing: border-box;
}



.s-76ef505e-ed41-48a9-809a-d894496f6580 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-76ef505e-ed41-48a9-809a-d894496f6580 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image-container {
      position: relative;
    }

    .s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-76ef505e-ed41-48a9-809a-d894496f6580 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1024px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-76ef505e-ed41-48a9-809a-d894496f6580 {
  margin: 0 !important;
  overflow: visible;
}

#s-76ef505e-ed41-48a9-809a-d894496f6580-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-76ef505e-ed41-48a9-809a-d894496f6580 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-76ef505e-ed41-48a9-809a-d894496f6580 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-76ef505e-ed41-48a9-809a-d894496f6580 img.shogun-image {
  /* Add background color handling */
  
}

#s-76ef505e-ed41-48a9-809a-d894496f6580 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-76ef505e-ed41-48a9-809a-d894496f6580 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-76ef505e-ed41-48a9-809a-d894496f6580 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-76ef505e-ed41-48a9-809a-d894496f6580 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-76ef505e-ed41-48a9-809a-d894496f6580 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1024px;
  }



  img.s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image {
    
    
    
    max-height: 1024px;
  }


.s-76ef505e-ed41-48a9-809a-d894496f6580 .shogun-image-content {
  
    justify-content: center;
  
}

.s-76ef505e-ed41-48a9-809a-d894496f6580.shg-align-container {
  display: flex;
  justify-content: center
}

.s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image {
  box-sizing: border-box;
}



.s-76ef505e-ed41-48a9-809a-d894496f6580 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-76ef505e-ed41-48a9-809a-d894496f6580 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image-container {
      position: relative;
    }

    .s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-76ef505e-ed41-48a9-809a-d894496f6580 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1024px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-76ef505e-ed41-48a9-809a-d894496f6580 {
  margin: 0 !important;
  overflow: visible;
}

#s-76ef505e-ed41-48a9-809a-d894496f6580-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-76ef505e-ed41-48a9-809a-d894496f6580 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-76ef505e-ed41-48a9-809a-d894496f6580 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-76ef505e-ed41-48a9-809a-d894496f6580 img.shogun-image {
  /* Add background color handling */
  
}

#s-76ef505e-ed41-48a9-809a-d894496f6580 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-76ef505e-ed41-48a9-809a-d894496f6580 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-76ef505e-ed41-48a9-809a-d894496f6580 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-76ef505e-ed41-48a9-809a-d894496f6580 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-76ef505e-ed41-48a9-809a-d894496f6580 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1024px;
  }



  img.s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image {
    
    
    
    max-height: 1024px;
  }


.s-76ef505e-ed41-48a9-809a-d894496f6580 .shogun-image-content {
  
    justify-content: center;
  
}

.s-76ef505e-ed41-48a9-809a-d894496f6580.shg-align-container {
  display: flex;
  justify-content: center
}

.s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image {
  box-sizing: border-box;
}



.s-76ef505e-ed41-48a9-809a-d894496f6580 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-76ef505e-ed41-48a9-809a-d894496f6580 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image-container {
      position: relative;
    }

    .s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-76ef505e-ed41-48a9-809a-d894496f6580 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1024px;
    }
  }

}@media (max-width: 767px){#s-76ef505e-ed41-48a9-809a-d894496f6580 {
  margin: 0 !important;
  overflow: visible;
}

#s-76ef505e-ed41-48a9-809a-d894496f6580-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-76ef505e-ed41-48a9-809a-d894496f6580 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-76ef505e-ed41-48a9-809a-d894496f6580 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-76ef505e-ed41-48a9-809a-d894496f6580 img.shogun-image {
  /* Add background color handling */
  
}

#s-76ef505e-ed41-48a9-809a-d894496f6580 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-76ef505e-ed41-48a9-809a-d894496f6580 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-76ef505e-ed41-48a9-809a-d894496f6580 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-76ef505e-ed41-48a9-809a-d894496f6580 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-76ef505e-ed41-48a9-809a-d894496f6580 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1024px;
  }



  img.s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image {
    
    
    
    max-height: 1024px;
  }


.s-76ef505e-ed41-48a9-809a-d894496f6580 .shogun-image-content {
  
    justify-content: center;
  
}

.s-76ef505e-ed41-48a9-809a-d894496f6580.shg-align-container {
  display: flex;
  justify-content: center
}

.s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image {
  box-sizing: border-box;
}



.s-76ef505e-ed41-48a9-809a-d894496f6580 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-76ef505e-ed41-48a9-809a-d894496f6580 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image-container {
      position: relative;
    }

    .s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-76ef505e-ed41-48a9-809a-d894496f6580.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-76ef505e-ed41-48a9-809a-d894496f6580 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1024px;
    }
  }

}
#s-5108c71c-5487-4459-a357-7c031c4ef379 {
  margin-left: auto;
margin-right: auto;
max-width: 1024px;
aspect-ratio: 1/1;
text-align: center;
}

#s-5108c71c-5487-4459-a357-7c031c4ef379 {
  margin: 0 !important;
  overflow: visible;
}

#s-5108c71c-5487-4459-a357-7c031c4ef379-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5108c71c-5487-4459-a357-7c031c4ef379 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5108c71c-5487-4459-a357-7c031c4ef379 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5108c71c-5487-4459-a357-7c031c4ef379 img.shogun-image {
  /* Add background color handling */
  
}

#s-5108c71c-5487-4459-a357-7c031c4ef379 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5108c71c-5487-4459-a357-7c031c4ef379 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5108c71c-5487-4459-a357-7c031c4ef379 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5108c71c-5487-4459-a357-7c031c4ef379 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5108c71c-5487-4459-a357-7c031c4ef379 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1024px;
  }



  img.s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image {
    
    
    
    max-height: 1024px;
  }


.s-5108c71c-5487-4459-a357-7c031c4ef379 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5108c71c-5487-4459-a357-7c031c4ef379.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image {
  box-sizing: border-box;
}



.s-5108c71c-5487-4459-a357-7c031c4ef379 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5108c71c-5487-4459-a357-7c031c4ef379 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image-container {
      position: relative;
    }

    .s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5108c71c-5487-4459-a357-7c031c4ef379 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1024px;
    }
  }

@media (min-width: 1200px){#s-5108c71c-5487-4459-a357-7c031c4ef379 {
  margin: 0 !important;
  overflow: visible;
}

#s-5108c71c-5487-4459-a357-7c031c4ef379-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5108c71c-5487-4459-a357-7c031c4ef379 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5108c71c-5487-4459-a357-7c031c4ef379 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5108c71c-5487-4459-a357-7c031c4ef379 img.shogun-image {
  /* Add background color handling */
  
}

#s-5108c71c-5487-4459-a357-7c031c4ef379 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5108c71c-5487-4459-a357-7c031c4ef379 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5108c71c-5487-4459-a357-7c031c4ef379 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5108c71c-5487-4459-a357-7c031c4ef379 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5108c71c-5487-4459-a357-7c031c4ef379 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1024px;
  }



  img.s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image {
    
    
    
    max-height: 1024px;
  }


.s-5108c71c-5487-4459-a357-7c031c4ef379 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5108c71c-5487-4459-a357-7c031c4ef379.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image {
  box-sizing: border-box;
}



.s-5108c71c-5487-4459-a357-7c031c4ef379 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5108c71c-5487-4459-a357-7c031c4ef379 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image-container {
      position: relative;
    }

    .s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5108c71c-5487-4459-a357-7c031c4ef379 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1024px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-5108c71c-5487-4459-a357-7c031c4ef379 {
  margin: 0 !important;
  overflow: visible;
}

#s-5108c71c-5487-4459-a357-7c031c4ef379-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5108c71c-5487-4459-a357-7c031c4ef379 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5108c71c-5487-4459-a357-7c031c4ef379 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5108c71c-5487-4459-a357-7c031c4ef379 img.shogun-image {
  /* Add background color handling */
  
}

#s-5108c71c-5487-4459-a357-7c031c4ef379 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5108c71c-5487-4459-a357-7c031c4ef379 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5108c71c-5487-4459-a357-7c031c4ef379 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5108c71c-5487-4459-a357-7c031c4ef379 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5108c71c-5487-4459-a357-7c031c4ef379 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1024px;
  }



  img.s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image {
    
    
    
    max-height: 1024px;
  }


.s-5108c71c-5487-4459-a357-7c031c4ef379 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5108c71c-5487-4459-a357-7c031c4ef379.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image {
  box-sizing: border-box;
}



.s-5108c71c-5487-4459-a357-7c031c4ef379 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5108c71c-5487-4459-a357-7c031c4ef379 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image-container {
      position: relative;
    }

    .s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5108c71c-5487-4459-a357-7c031c4ef379 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1024px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-5108c71c-5487-4459-a357-7c031c4ef379 {
  margin: 0 !important;
  overflow: visible;
}

#s-5108c71c-5487-4459-a357-7c031c4ef379-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5108c71c-5487-4459-a357-7c031c4ef379 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5108c71c-5487-4459-a357-7c031c4ef379 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5108c71c-5487-4459-a357-7c031c4ef379 img.shogun-image {
  /* Add background color handling */
  
}

#s-5108c71c-5487-4459-a357-7c031c4ef379 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5108c71c-5487-4459-a357-7c031c4ef379 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5108c71c-5487-4459-a357-7c031c4ef379 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5108c71c-5487-4459-a357-7c031c4ef379 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5108c71c-5487-4459-a357-7c031c4ef379 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1024px;
  }



  img.s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image {
    
    
    
    max-height: 1024px;
  }


.s-5108c71c-5487-4459-a357-7c031c4ef379 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5108c71c-5487-4459-a357-7c031c4ef379.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image {
  box-sizing: border-box;
}



.s-5108c71c-5487-4459-a357-7c031c4ef379 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5108c71c-5487-4459-a357-7c031c4ef379 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image-container {
      position: relative;
    }

    .s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5108c71c-5487-4459-a357-7c031c4ef379 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1024px;
    }
  }

}@media (max-width: 767px){#s-5108c71c-5487-4459-a357-7c031c4ef379 {
  margin: 0 !important;
  overflow: visible;
}

#s-5108c71c-5487-4459-a357-7c031c4ef379-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5108c71c-5487-4459-a357-7c031c4ef379 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5108c71c-5487-4459-a357-7c031c4ef379 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5108c71c-5487-4459-a357-7c031c4ef379 img.shogun-image {
  /* Add background color handling */
  
}

#s-5108c71c-5487-4459-a357-7c031c4ef379 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5108c71c-5487-4459-a357-7c031c4ef379 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5108c71c-5487-4459-a357-7c031c4ef379 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5108c71c-5487-4459-a357-7c031c4ef379 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5108c71c-5487-4459-a357-7c031c4ef379 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1024px;
  }



  img.s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image {
    
    
    
    max-height: 1024px;
  }


.s-5108c71c-5487-4459-a357-7c031c4ef379 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5108c71c-5487-4459-a357-7c031c4ef379.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image {
  box-sizing: border-box;
}



.s-5108c71c-5487-4459-a357-7c031c4ef379 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5108c71c-5487-4459-a357-7c031c4ef379 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image-container {
      position: relative;
    }

    .s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5108c71c-5487-4459-a357-7c031c4ef379.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5108c71c-5487-4459-a357-7c031c4ef379 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1024px;
    }
  }

}
#s-af38a48d-1f13-4131-afeb-a9657e597aa4 {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
min-height: 670px;
background-attachment: scroll;
}
@media (min-width: 1200px){#s-af38a48d-1f13-4131-afeb-a9657e597aa4 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-af38a48d-1f13-4131-afeb-a9657e597aa4 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-af38a48d-1f13-4131-afeb-a9657e597aa4 {
  
}
}@media (max-width: 767px){#s-af38a48d-1f13-4131-afeb-a9657e597aa4 {
  
}
}







#s-af38a48d-1f13-4131-afeb-a9657e597aa4 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
  display: block;
}#s-af38a48d-1f13-4131-afeb-a9657e597aa4.shg-box.shg-c {
  justify-content: center;
}

#s-aacb8dc8-43e3-4d5f-9670-ca1ca4603f27 {
  margin-left: auto;
margin-right: auto;
padding-bottom: 15px;
}

#s-269bd389-db3e-4401-ab98-793b65f36630 {
  margin-left: auto;
margin-right: auto;
padding-left: 0%;
padding-right: 0%;
}

#s-776b2b73-17bc-423b-8e8b-cc1e097b00e7 {
  margin-left: auto;
margin-right: auto;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 1200px){#s-776b2b73-17bc-423b-8e8b-cc1e097b00e7 {
  display: none;
}
#s-776b2b73-17bc-423b-8e8b-cc1e097b00e7, #wrap-s-776b2b73-17bc-423b-8e8b-cc1e097b00e7, #wrap-content-s-776b2b73-17bc-423b-8e8b-cc1e097b00e7 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-776b2b73-17bc-423b-8e8b-cc1e097b00e7 {
  display: none;
}
#s-776b2b73-17bc-423b-8e8b-cc1e097b00e7, #wrap-s-776b2b73-17bc-423b-8e8b-cc1e097b00e7, #wrap-content-s-776b2b73-17bc-423b-8e8b-cc1e097b00e7 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-776b2b73-17bc-423b-8e8b-cc1e097b00e7 {
  
}
}







#s-776b2b73-17bc-423b-8e8b-cc1e097b00e7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-776b2b73-17bc-423b-8e8b-cc1e097b00e7.shg-box.shg-c {
  justify-content: center;
}

#s-4388c81b-9bb0-43b9-9450-7efc797c58a2 {
  padding-left: 5%;
padding-right: 5%;
background-color: rgba(255, 255, 255, 0);
}
@media (min-width: 1200px){#s-4388c81b-9bb0-43b9-9450-7efc797c58a2 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-4388c81b-9bb0-43b9-9450-7efc797c58a2 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-4388c81b-9bb0-43b9-9450-7efc797c58a2 {
  
}
}@media (max-width: 767px){#s-4388c81b-9bb0-43b9-9450-7efc797c58a2 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 60px;
padding-bottom: 60px;
}
}







#s-4388c81b-9bb0-43b9-9450-7efc797c58a2 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
  display: block;
}#s-4388c81b-9bb0-43b9-9450-7efc797c58a2.shg-box.shg-c {
  justify-content: center;
}

#s-5d0d04e9-6da8-42a9-8da0-98d27ce10c6e {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
}

/* Duplicated Styles are also in Category dynamic.css.liquid - keep them in sync */

#slider-v3-s-5d0d04e9-6da8-42a9-8da0-98d27ce10c6e {
  --swiper-pagination-color: rgba(255, 255, 255, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(255, 255, 255, 1) !important;
  --swiper-pagination-bullet-active-color: rgba(113, 113, 113, 1) !important;
  --arrow-button-size: 35px !important;
  --swiper-pagination-bullet-size: 14px !important;
  
}

#slider-v3-s-5d0d04e9-6da8-42a9-8da0-98d27ce10c6e > .swiper-button-prev,
#slider-v3-s-5d0d04e9-6da8-42a9-8da0-98d27ce10c6e > .swiper-button-next {
  
}

#slider-v3-s-5d0d04e9-6da8-42a9-8da0-98d27ce10c6e > .swiper-button-prev svg,
#slider-v3-s-5d0d04e9-6da8-42a9-8da0-98d27ce10c6e > .swiper-button-next svg {
  fill: rgba(255, 255, 255, 1) !important;
  stroke: rgba(255, 255, 255, 1) !important;
  
}

#slider-v3-s-5d0d04e9-6da8-42a9-8da0-98d27ce10c6e > .swiper-button-prev {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-5d0d04e9-6da8-42a9-8da0-98d27ce10c6e > .swiper-button-next {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-5d0d04e9-6da8-42a9-8da0-98d27ce10c6e > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-5d0d04e9-6da8-42a9-8da0-98d27ce10c6e .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-5d0d04e9-6da8-42a9-8da0-98d27ce10c6e .swiper-pagination-bullet-active {
  background-color: rgba(113, 113, 113, 1) !important;
  width: calc(14px * 1) !important;
  height: 14px !important;
  border-radius:  50px  !important;
}

#slider-v3-s-5d0d04e9-6da8-42a9-8da0-98d27ce10c6e .swiper-pagination {
  position:  initial ;
  display: flex;
  margin-top:  8px ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}

#s-dc206853-8695-469d-abf8-5a5cc521b6c4 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-dc206853-8695-469d-abf8-5a5cc521b6c4 {
  margin: 0 !important;
  overflow: visible;
}

#s-dc206853-8695-469d-abf8-5a5cc521b6c4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dc206853-8695-469d-abf8-5a5cc521b6c4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dc206853-8695-469d-abf8-5a5cc521b6c4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dc206853-8695-469d-abf8-5a5cc521b6c4 img.shogun-image {
  /* Add background color handling */
  
}

#s-dc206853-8695-469d-abf8-5a5cc521b6c4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dc206853-8695-469d-abf8-5a5cc521b6c4 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dc206853-8695-469d-abf8-5a5cc521b6c4 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dc206853-8695-469d-abf8-5a5cc521b6c4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dc206853-8695-469d-abf8-5a5cc521b6c4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-dc206853-8695-469d-abf8-5a5cc521b6c4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-dc206853-8695-469d-abf8-5a5cc521b6c4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image {
  box-sizing: border-box;
}



.s-dc206853-8695-469d-abf8-5a5cc521b6c4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dc206853-8695-469d-abf8-5a5cc521b6c4 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image-container {
      position: relative;
    }

    .s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dc206853-8695-469d-abf8-5a5cc521b6c4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-dc206853-8695-469d-abf8-5a5cc521b6c4 {
  margin: 0 !important;
  overflow: visible;
}

#s-dc206853-8695-469d-abf8-5a5cc521b6c4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dc206853-8695-469d-abf8-5a5cc521b6c4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dc206853-8695-469d-abf8-5a5cc521b6c4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dc206853-8695-469d-abf8-5a5cc521b6c4 img.shogun-image {
  /* Add background color handling */
  
}

#s-dc206853-8695-469d-abf8-5a5cc521b6c4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dc206853-8695-469d-abf8-5a5cc521b6c4 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dc206853-8695-469d-abf8-5a5cc521b6c4 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dc206853-8695-469d-abf8-5a5cc521b6c4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dc206853-8695-469d-abf8-5a5cc521b6c4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-dc206853-8695-469d-abf8-5a5cc521b6c4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-dc206853-8695-469d-abf8-5a5cc521b6c4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image {
  box-sizing: border-box;
}



.s-dc206853-8695-469d-abf8-5a5cc521b6c4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dc206853-8695-469d-abf8-5a5cc521b6c4 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image-container {
      position: relative;
    }

    .s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dc206853-8695-469d-abf8-5a5cc521b6c4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-dc206853-8695-469d-abf8-5a5cc521b6c4 {
  margin: 0 !important;
  overflow: visible;
}

#s-dc206853-8695-469d-abf8-5a5cc521b6c4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dc206853-8695-469d-abf8-5a5cc521b6c4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dc206853-8695-469d-abf8-5a5cc521b6c4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dc206853-8695-469d-abf8-5a5cc521b6c4 img.shogun-image {
  /* Add background color handling */
  
}

#s-dc206853-8695-469d-abf8-5a5cc521b6c4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dc206853-8695-469d-abf8-5a5cc521b6c4 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dc206853-8695-469d-abf8-5a5cc521b6c4 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dc206853-8695-469d-abf8-5a5cc521b6c4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dc206853-8695-469d-abf8-5a5cc521b6c4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-dc206853-8695-469d-abf8-5a5cc521b6c4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-dc206853-8695-469d-abf8-5a5cc521b6c4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image {
  box-sizing: border-box;
}



.s-dc206853-8695-469d-abf8-5a5cc521b6c4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dc206853-8695-469d-abf8-5a5cc521b6c4 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image-container {
      position: relative;
    }

    .s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dc206853-8695-469d-abf8-5a5cc521b6c4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-dc206853-8695-469d-abf8-5a5cc521b6c4 {
  margin: 0 !important;
  overflow: visible;
}

#s-dc206853-8695-469d-abf8-5a5cc521b6c4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dc206853-8695-469d-abf8-5a5cc521b6c4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dc206853-8695-469d-abf8-5a5cc521b6c4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dc206853-8695-469d-abf8-5a5cc521b6c4 img.shogun-image {
  /* Add background color handling */
  
}

#s-dc206853-8695-469d-abf8-5a5cc521b6c4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dc206853-8695-469d-abf8-5a5cc521b6c4 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dc206853-8695-469d-abf8-5a5cc521b6c4 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dc206853-8695-469d-abf8-5a5cc521b6c4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dc206853-8695-469d-abf8-5a5cc521b6c4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-dc206853-8695-469d-abf8-5a5cc521b6c4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-dc206853-8695-469d-abf8-5a5cc521b6c4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image {
  box-sizing: border-box;
}



.s-dc206853-8695-469d-abf8-5a5cc521b6c4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dc206853-8695-469d-abf8-5a5cc521b6c4 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image-container {
      position: relative;
    }

    .s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dc206853-8695-469d-abf8-5a5cc521b6c4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-dc206853-8695-469d-abf8-5a5cc521b6c4 {
  margin: 0 !important;
  overflow: visible;
}

#s-dc206853-8695-469d-abf8-5a5cc521b6c4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dc206853-8695-469d-abf8-5a5cc521b6c4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dc206853-8695-469d-abf8-5a5cc521b6c4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dc206853-8695-469d-abf8-5a5cc521b6c4 img.shogun-image {
  /* Add background color handling */
  
}

#s-dc206853-8695-469d-abf8-5a5cc521b6c4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dc206853-8695-469d-abf8-5a5cc521b6c4 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dc206853-8695-469d-abf8-5a5cc521b6c4 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dc206853-8695-469d-abf8-5a5cc521b6c4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dc206853-8695-469d-abf8-5a5cc521b6c4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-dc206853-8695-469d-abf8-5a5cc521b6c4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-dc206853-8695-469d-abf8-5a5cc521b6c4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image {
  box-sizing: border-box;
}



.s-dc206853-8695-469d-abf8-5a5cc521b6c4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dc206853-8695-469d-abf8-5a5cc521b6c4 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image-container {
      position: relative;
    }

    .s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dc206853-8695-469d-abf8-5a5cc521b6c4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dc206853-8695-469d-abf8-5a5cc521b6c4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 {
  margin: 0 !important;
  overflow: visible;
}

#s-992d3518-714c-4bf7-b2e8-bb2f56f5f562-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 img.shogun-image {
  /* Add background color handling */
  
}

#s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 .shogun-image-content {
  
    justify-content: center;
  
}

.s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shg-align-container {
  display: flex;
  justify-content: center
}

.s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image {
  box-sizing: border-box;
}



.s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image-container {
      position: relative;
    }

    .s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 {
  margin: 0 !important;
  overflow: visible;
}

#s-992d3518-714c-4bf7-b2e8-bb2f56f5f562-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 img.shogun-image {
  /* Add background color handling */
  
}

#s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 .shogun-image-content {
  
    justify-content: center;
  
}

.s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shg-align-container {
  display: flex;
  justify-content: center
}

.s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image {
  box-sizing: border-box;
}



.s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image-container {
      position: relative;
    }

    .s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 {
  margin: 0 !important;
  overflow: visible;
}

#s-992d3518-714c-4bf7-b2e8-bb2f56f5f562-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 img.shogun-image {
  /* Add background color handling */
  
}

#s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 .shogun-image-content {
  
    justify-content: center;
  
}

.s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shg-align-container {
  display: flex;
  justify-content: center
}

.s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image {
  box-sizing: border-box;
}



.s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image-container {
      position: relative;
    }

    .s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 {
  margin: 0 !important;
  overflow: visible;
}

#s-992d3518-714c-4bf7-b2e8-bb2f56f5f562-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 img.shogun-image {
  /* Add background color handling */
  
}

#s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 .shogun-image-content {
  
    justify-content: center;
  
}

.s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shg-align-container {
  display: flex;
  justify-content: center
}

.s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image {
  box-sizing: border-box;
}



.s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image-container {
      position: relative;
    }

    .s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 {
  margin: 0 !important;
  overflow: visible;
}

#s-992d3518-714c-4bf7-b2e8-bb2f56f5f562-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 img.shogun-image {
  /* Add background color handling */
  
}

#s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 .shogun-image-content {
  
    justify-content: center;
  
}

.s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shg-align-container {
  display: flex;
  justify-content: center
}

.s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image {
  box-sizing: border-box;
}



.s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image-container {
      position: relative;
    }

    .s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-992d3518-714c-4bf7-b2e8-bb2f56f5f562.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-992d3518-714c-4bf7-b2e8-bb2f56f5f562 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-e164c574-98ad-4234-b0f0-07131d5ed88d {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-e164c574-98ad-4234-b0f0-07131d5ed88d {
  margin: 0 !important;
  overflow: visible;
}

#s-e164c574-98ad-4234-b0f0-07131d5ed88d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e164c574-98ad-4234-b0f0-07131d5ed88d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e164c574-98ad-4234-b0f0-07131d5ed88d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e164c574-98ad-4234-b0f0-07131d5ed88d img.shogun-image {
  /* Add background color handling */
  
}

#s-e164c574-98ad-4234-b0f0-07131d5ed88d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e164c574-98ad-4234-b0f0-07131d5ed88d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e164c574-98ad-4234-b0f0-07131d5ed88d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e164c574-98ad-4234-b0f0-07131d5ed88d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e164c574-98ad-4234-b0f0-07131d5ed88d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-e164c574-98ad-4234-b0f0-07131d5ed88d .shogun-image-content {
  
    justify-content: center;
  
}

.s-e164c574-98ad-4234-b0f0-07131d5ed88d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image {
  box-sizing: border-box;
}



.s-e164c574-98ad-4234-b0f0-07131d5ed88d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e164c574-98ad-4234-b0f0-07131d5ed88d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image-container {
      position: relative;
    }

    .s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e164c574-98ad-4234-b0f0-07131d5ed88d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-e164c574-98ad-4234-b0f0-07131d5ed88d {
  margin: 0 !important;
  overflow: visible;
}

#s-e164c574-98ad-4234-b0f0-07131d5ed88d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e164c574-98ad-4234-b0f0-07131d5ed88d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e164c574-98ad-4234-b0f0-07131d5ed88d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e164c574-98ad-4234-b0f0-07131d5ed88d img.shogun-image {
  /* Add background color handling */
  
}

#s-e164c574-98ad-4234-b0f0-07131d5ed88d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e164c574-98ad-4234-b0f0-07131d5ed88d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e164c574-98ad-4234-b0f0-07131d5ed88d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e164c574-98ad-4234-b0f0-07131d5ed88d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e164c574-98ad-4234-b0f0-07131d5ed88d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-e164c574-98ad-4234-b0f0-07131d5ed88d .shogun-image-content {
  
    justify-content: center;
  
}

.s-e164c574-98ad-4234-b0f0-07131d5ed88d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image {
  box-sizing: border-box;
}



.s-e164c574-98ad-4234-b0f0-07131d5ed88d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e164c574-98ad-4234-b0f0-07131d5ed88d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image-container {
      position: relative;
    }

    .s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e164c574-98ad-4234-b0f0-07131d5ed88d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-e164c574-98ad-4234-b0f0-07131d5ed88d {
  margin: 0 !important;
  overflow: visible;
}

#s-e164c574-98ad-4234-b0f0-07131d5ed88d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e164c574-98ad-4234-b0f0-07131d5ed88d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e164c574-98ad-4234-b0f0-07131d5ed88d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e164c574-98ad-4234-b0f0-07131d5ed88d img.shogun-image {
  /* Add background color handling */
  
}

#s-e164c574-98ad-4234-b0f0-07131d5ed88d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e164c574-98ad-4234-b0f0-07131d5ed88d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e164c574-98ad-4234-b0f0-07131d5ed88d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e164c574-98ad-4234-b0f0-07131d5ed88d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e164c574-98ad-4234-b0f0-07131d5ed88d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-e164c574-98ad-4234-b0f0-07131d5ed88d .shogun-image-content {
  
    justify-content: center;
  
}

.s-e164c574-98ad-4234-b0f0-07131d5ed88d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image {
  box-sizing: border-box;
}



.s-e164c574-98ad-4234-b0f0-07131d5ed88d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e164c574-98ad-4234-b0f0-07131d5ed88d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image-container {
      position: relative;
    }

    .s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e164c574-98ad-4234-b0f0-07131d5ed88d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-e164c574-98ad-4234-b0f0-07131d5ed88d {
  margin: 0 !important;
  overflow: visible;
}

#s-e164c574-98ad-4234-b0f0-07131d5ed88d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e164c574-98ad-4234-b0f0-07131d5ed88d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e164c574-98ad-4234-b0f0-07131d5ed88d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e164c574-98ad-4234-b0f0-07131d5ed88d img.shogun-image {
  /* Add background color handling */
  
}

#s-e164c574-98ad-4234-b0f0-07131d5ed88d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e164c574-98ad-4234-b0f0-07131d5ed88d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e164c574-98ad-4234-b0f0-07131d5ed88d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e164c574-98ad-4234-b0f0-07131d5ed88d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e164c574-98ad-4234-b0f0-07131d5ed88d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-e164c574-98ad-4234-b0f0-07131d5ed88d .shogun-image-content {
  
    justify-content: center;
  
}

.s-e164c574-98ad-4234-b0f0-07131d5ed88d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image {
  box-sizing: border-box;
}



.s-e164c574-98ad-4234-b0f0-07131d5ed88d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e164c574-98ad-4234-b0f0-07131d5ed88d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image-container {
      position: relative;
    }

    .s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e164c574-98ad-4234-b0f0-07131d5ed88d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-e164c574-98ad-4234-b0f0-07131d5ed88d {
  margin: 0 !important;
  overflow: visible;
}

#s-e164c574-98ad-4234-b0f0-07131d5ed88d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e164c574-98ad-4234-b0f0-07131d5ed88d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e164c574-98ad-4234-b0f0-07131d5ed88d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e164c574-98ad-4234-b0f0-07131d5ed88d img.shogun-image {
  /* Add background color handling */
  
}

#s-e164c574-98ad-4234-b0f0-07131d5ed88d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e164c574-98ad-4234-b0f0-07131d5ed88d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e164c574-98ad-4234-b0f0-07131d5ed88d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e164c574-98ad-4234-b0f0-07131d5ed88d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e164c574-98ad-4234-b0f0-07131d5ed88d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-e164c574-98ad-4234-b0f0-07131d5ed88d .shogun-image-content {
  
    justify-content: center;
  
}

.s-e164c574-98ad-4234-b0f0-07131d5ed88d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image {
  box-sizing: border-box;
}



.s-e164c574-98ad-4234-b0f0-07131d5ed88d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e164c574-98ad-4234-b0f0-07131d5ed88d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image-container {
      position: relative;
    }

    .s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e164c574-98ad-4234-b0f0-07131d5ed88d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e164c574-98ad-4234-b0f0-07131d5ed88d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-0118f61e-172b-4cef-8276-61bdd1285c1a {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-0118f61e-172b-4cef-8276-61bdd1285c1a {
  margin: 0 !important;
  overflow: visible;
}

#s-0118f61e-172b-4cef-8276-61bdd1285c1a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0118f61e-172b-4cef-8276-61bdd1285c1a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0118f61e-172b-4cef-8276-61bdd1285c1a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0118f61e-172b-4cef-8276-61bdd1285c1a img.shogun-image {
  /* Add background color handling */
  
}

#s-0118f61e-172b-4cef-8276-61bdd1285c1a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0118f61e-172b-4cef-8276-61bdd1285c1a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0118f61e-172b-4cef-8276-61bdd1285c1a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0118f61e-172b-4cef-8276-61bdd1285c1a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0118f61e-172b-4cef-8276-61bdd1285c1a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-0118f61e-172b-4cef-8276-61bdd1285c1a .shogun-image-content {
  
    justify-content: center;
  
}

.s-0118f61e-172b-4cef-8276-61bdd1285c1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image {
  box-sizing: border-box;
}



.s-0118f61e-172b-4cef-8276-61bdd1285c1a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0118f61e-172b-4cef-8276-61bdd1285c1a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image-container {
      position: relative;
    }

    .s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0118f61e-172b-4cef-8276-61bdd1285c1a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-0118f61e-172b-4cef-8276-61bdd1285c1a {
  margin: 0 !important;
  overflow: visible;
}

#s-0118f61e-172b-4cef-8276-61bdd1285c1a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0118f61e-172b-4cef-8276-61bdd1285c1a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0118f61e-172b-4cef-8276-61bdd1285c1a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0118f61e-172b-4cef-8276-61bdd1285c1a img.shogun-image {
  /* Add background color handling */
  
}

#s-0118f61e-172b-4cef-8276-61bdd1285c1a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0118f61e-172b-4cef-8276-61bdd1285c1a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0118f61e-172b-4cef-8276-61bdd1285c1a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0118f61e-172b-4cef-8276-61bdd1285c1a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0118f61e-172b-4cef-8276-61bdd1285c1a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-0118f61e-172b-4cef-8276-61bdd1285c1a .shogun-image-content {
  
    justify-content: center;
  
}

.s-0118f61e-172b-4cef-8276-61bdd1285c1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image {
  box-sizing: border-box;
}



.s-0118f61e-172b-4cef-8276-61bdd1285c1a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0118f61e-172b-4cef-8276-61bdd1285c1a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image-container {
      position: relative;
    }

    .s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0118f61e-172b-4cef-8276-61bdd1285c1a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-0118f61e-172b-4cef-8276-61bdd1285c1a {
  margin: 0 !important;
  overflow: visible;
}

#s-0118f61e-172b-4cef-8276-61bdd1285c1a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0118f61e-172b-4cef-8276-61bdd1285c1a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0118f61e-172b-4cef-8276-61bdd1285c1a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0118f61e-172b-4cef-8276-61bdd1285c1a img.shogun-image {
  /* Add background color handling */
  
}

#s-0118f61e-172b-4cef-8276-61bdd1285c1a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0118f61e-172b-4cef-8276-61bdd1285c1a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0118f61e-172b-4cef-8276-61bdd1285c1a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0118f61e-172b-4cef-8276-61bdd1285c1a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0118f61e-172b-4cef-8276-61bdd1285c1a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-0118f61e-172b-4cef-8276-61bdd1285c1a .shogun-image-content {
  
    justify-content: center;
  
}

.s-0118f61e-172b-4cef-8276-61bdd1285c1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image {
  box-sizing: border-box;
}



.s-0118f61e-172b-4cef-8276-61bdd1285c1a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0118f61e-172b-4cef-8276-61bdd1285c1a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image-container {
      position: relative;
    }

    .s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0118f61e-172b-4cef-8276-61bdd1285c1a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-0118f61e-172b-4cef-8276-61bdd1285c1a {
  margin: 0 !important;
  overflow: visible;
}

#s-0118f61e-172b-4cef-8276-61bdd1285c1a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0118f61e-172b-4cef-8276-61bdd1285c1a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0118f61e-172b-4cef-8276-61bdd1285c1a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0118f61e-172b-4cef-8276-61bdd1285c1a img.shogun-image {
  /* Add background color handling */
  
}

#s-0118f61e-172b-4cef-8276-61bdd1285c1a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0118f61e-172b-4cef-8276-61bdd1285c1a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0118f61e-172b-4cef-8276-61bdd1285c1a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0118f61e-172b-4cef-8276-61bdd1285c1a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0118f61e-172b-4cef-8276-61bdd1285c1a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-0118f61e-172b-4cef-8276-61bdd1285c1a .shogun-image-content {
  
    justify-content: center;
  
}

.s-0118f61e-172b-4cef-8276-61bdd1285c1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image {
  box-sizing: border-box;
}



.s-0118f61e-172b-4cef-8276-61bdd1285c1a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0118f61e-172b-4cef-8276-61bdd1285c1a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image-container {
      position: relative;
    }

    .s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0118f61e-172b-4cef-8276-61bdd1285c1a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-0118f61e-172b-4cef-8276-61bdd1285c1a {
  margin: 0 !important;
  overflow: visible;
}

#s-0118f61e-172b-4cef-8276-61bdd1285c1a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0118f61e-172b-4cef-8276-61bdd1285c1a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0118f61e-172b-4cef-8276-61bdd1285c1a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0118f61e-172b-4cef-8276-61bdd1285c1a img.shogun-image {
  /* Add background color handling */
  
}

#s-0118f61e-172b-4cef-8276-61bdd1285c1a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0118f61e-172b-4cef-8276-61bdd1285c1a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0118f61e-172b-4cef-8276-61bdd1285c1a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0118f61e-172b-4cef-8276-61bdd1285c1a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0118f61e-172b-4cef-8276-61bdd1285c1a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-0118f61e-172b-4cef-8276-61bdd1285c1a .shogun-image-content {
  
    justify-content: center;
  
}

.s-0118f61e-172b-4cef-8276-61bdd1285c1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image {
  box-sizing: border-box;
}



.s-0118f61e-172b-4cef-8276-61bdd1285c1a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0118f61e-172b-4cef-8276-61bdd1285c1a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image-container {
      position: relative;
    }

    .s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0118f61e-172b-4cef-8276-61bdd1285c1a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0118f61e-172b-4cef-8276-61bdd1285c1a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-313b7756-3cf6-419a-8958-3d66a7ef0745 {
  margin-left: auto;
margin-right: auto;
max-width: 1024px;
aspect-ratio: 1/1;
text-align: center;
}

#s-313b7756-3cf6-419a-8958-3d66a7ef0745 {
  margin: 0 !important;
  overflow: visible;
}

#s-313b7756-3cf6-419a-8958-3d66a7ef0745-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-313b7756-3cf6-419a-8958-3d66a7ef0745 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-313b7756-3cf6-419a-8958-3d66a7ef0745 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-313b7756-3cf6-419a-8958-3d66a7ef0745 img.shogun-image {
  /* Add background color handling */
  
}

#s-313b7756-3cf6-419a-8958-3d66a7ef0745 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-313b7756-3cf6-419a-8958-3d66a7ef0745 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-313b7756-3cf6-419a-8958-3d66a7ef0745 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-313b7756-3cf6-419a-8958-3d66a7ef0745 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-313b7756-3cf6-419a-8958-3d66a7ef0745 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1024px;
  }



  img.s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image {
    
    
    
    max-height: 1024px;
  }


.s-313b7756-3cf6-419a-8958-3d66a7ef0745 .shogun-image-content {
  
    justify-content: center;
  
}

.s-313b7756-3cf6-419a-8958-3d66a7ef0745.shg-align-container {
  display: flex;
  justify-content: center
}

.s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image {
  box-sizing: border-box;
}



.s-313b7756-3cf6-419a-8958-3d66a7ef0745 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-313b7756-3cf6-419a-8958-3d66a7ef0745 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image-container {
      position: relative;
    }

    .s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-313b7756-3cf6-419a-8958-3d66a7ef0745 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1024px;
    }
  }

@media (min-width: 1200px){#s-313b7756-3cf6-419a-8958-3d66a7ef0745 {
  margin: 0 !important;
  overflow: visible;
}

#s-313b7756-3cf6-419a-8958-3d66a7ef0745-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-313b7756-3cf6-419a-8958-3d66a7ef0745 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-313b7756-3cf6-419a-8958-3d66a7ef0745 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-313b7756-3cf6-419a-8958-3d66a7ef0745 img.shogun-image {
  /* Add background color handling */
  
}

#s-313b7756-3cf6-419a-8958-3d66a7ef0745 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-313b7756-3cf6-419a-8958-3d66a7ef0745 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-313b7756-3cf6-419a-8958-3d66a7ef0745 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-313b7756-3cf6-419a-8958-3d66a7ef0745 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-313b7756-3cf6-419a-8958-3d66a7ef0745 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1024px;
  }



  img.s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image {
    
    
    
    max-height: 1024px;
  }


.s-313b7756-3cf6-419a-8958-3d66a7ef0745 .shogun-image-content {
  
    justify-content: center;
  
}

.s-313b7756-3cf6-419a-8958-3d66a7ef0745.shg-align-container {
  display: flex;
  justify-content: center
}

.s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image {
  box-sizing: border-box;
}



.s-313b7756-3cf6-419a-8958-3d66a7ef0745 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-313b7756-3cf6-419a-8958-3d66a7ef0745 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image-container {
      position: relative;
    }

    .s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-313b7756-3cf6-419a-8958-3d66a7ef0745 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1024px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-313b7756-3cf6-419a-8958-3d66a7ef0745 {
  margin: 0 !important;
  overflow: visible;
}

#s-313b7756-3cf6-419a-8958-3d66a7ef0745-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-313b7756-3cf6-419a-8958-3d66a7ef0745 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-313b7756-3cf6-419a-8958-3d66a7ef0745 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-313b7756-3cf6-419a-8958-3d66a7ef0745 img.shogun-image {
  /* Add background color handling */
  
}

#s-313b7756-3cf6-419a-8958-3d66a7ef0745 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-313b7756-3cf6-419a-8958-3d66a7ef0745 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-313b7756-3cf6-419a-8958-3d66a7ef0745 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-313b7756-3cf6-419a-8958-3d66a7ef0745 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-313b7756-3cf6-419a-8958-3d66a7ef0745 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1024px;
  }



  img.s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image {
    
    
    
    max-height: 1024px;
  }


.s-313b7756-3cf6-419a-8958-3d66a7ef0745 .shogun-image-content {
  
    justify-content: center;
  
}

.s-313b7756-3cf6-419a-8958-3d66a7ef0745.shg-align-container {
  display: flex;
  justify-content: center
}

.s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image {
  box-sizing: border-box;
}



.s-313b7756-3cf6-419a-8958-3d66a7ef0745 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-313b7756-3cf6-419a-8958-3d66a7ef0745 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image-container {
      position: relative;
    }

    .s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-313b7756-3cf6-419a-8958-3d66a7ef0745 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1024px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-313b7756-3cf6-419a-8958-3d66a7ef0745 {
  margin: 0 !important;
  overflow: visible;
}

#s-313b7756-3cf6-419a-8958-3d66a7ef0745-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-313b7756-3cf6-419a-8958-3d66a7ef0745 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-313b7756-3cf6-419a-8958-3d66a7ef0745 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-313b7756-3cf6-419a-8958-3d66a7ef0745 img.shogun-image {
  /* Add background color handling */
  
}

#s-313b7756-3cf6-419a-8958-3d66a7ef0745 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-313b7756-3cf6-419a-8958-3d66a7ef0745 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-313b7756-3cf6-419a-8958-3d66a7ef0745 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-313b7756-3cf6-419a-8958-3d66a7ef0745 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-313b7756-3cf6-419a-8958-3d66a7ef0745 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1024px;
  }



  img.s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image {
    
    
    
    max-height: 1024px;
  }


.s-313b7756-3cf6-419a-8958-3d66a7ef0745 .shogun-image-content {
  
    justify-content: center;
  
}

.s-313b7756-3cf6-419a-8958-3d66a7ef0745.shg-align-container {
  display: flex;
  justify-content: center
}

.s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image {
  box-sizing: border-box;
}



.s-313b7756-3cf6-419a-8958-3d66a7ef0745 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-313b7756-3cf6-419a-8958-3d66a7ef0745 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image-container {
      position: relative;
    }

    .s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-313b7756-3cf6-419a-8958-3d66a7ef0745 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1024px;
    }
  }

}@media (max-width: 767px){#s-313b7756-3cf6-419a-8958-3d66a7ef0745 {
  margin: 0 !important;
  overflow: visible;
}

#s-313b7756-3cf6-419a-8958-3d66a7ef0745-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-313b7756-3cf6-419a-8958-3d66a7ef0745 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-313b7756-3cf6-419a-8958-3d66a7ef0745 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-313b7756-3cf6-419a-8958-3d66a7ef0745 img.shogun-image {
  /* Add background color handling */
  
}

#s-313b7756-3cf6-419a-8958-3d66a7ef0745 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-313b7756-3cf6-419a-8958-3d66a7ef0745 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-313b7756-3cf6-419a-8958-3d66a7ef0745 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-313b7756-3cf6-419a-8958-3d66a7ef0745 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-313b7756-3cf6-419a-8958-3d66a7ef0745 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1024px;
  }



  img.s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image {
    
    
    
    max-height: 1024px;
  }


.s-313b7756-3cf6-419a-8958-3d66a7ef0745 .shogun-image-content {
  
    justify-content: center;
  
}

.s-313b7756-3cf6-419a-8958-3d66a7ef0745.shg-align-container {
  display: flex;
  justify-content: center
}

.s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image {
  box-sizing: border-box;
}



.s-313b7756-3cf6-419a-8958-3d66a7ef0745 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-313b7756-3cf6-419a-8958-3d66a7ef0745 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image-container {
      position: relative;
    }

    .s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-313b7756-3cf6-419a-8958-3d66a7ef0745.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-313b7756-3cf6-419a-8958-3d66a7ef0745 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1024px;
    }
  }

}
#s-692e4759-9245-4e57-9c40-199c4e2f2615 {
  margin-left: auto;
margin-right: auto;
max-width: 1024px;
aspect-ratio: 1/1;
text-align: center;
}

#s-692e4759-9245-4e57-9c40-199c4e2f2615 {
  margin: 0 !important;
  overflow: visible;
}

#s-692e4759-9245-4e57-9c40-199c4e2f2615-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-692e4759-9245-4e57-9c40-199c4e2f2615 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-692e4759-9245-4e57-9c40-199c4e2f2615 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-692e4759-9245-4e57-9c40-199c4e2f2615 img.shogun-image {
  /* Add background color handling */
  
}

#s-692e4759-9245-4e57-9c40-199c4e2f2615 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-692e4759-9245-4e57-9c40-199c4e2f2615 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-692e4759-9245-4e57-9c40-199c4e2f2615 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-692e4759-9245-4e57-9c40-199c4e2f2615 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-692e4759-9245-4e57-9c40-199c4e2f2615 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1024px;
  }



  img.s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image {
    
    
    
    max-height: 1024px;
  }


.s-692e4759-9245-4e57-9c40-199c4e2f2615 .shogun-image-content {
  
    justify-content: center;
  
}

.s-692e4759-9245-4e57-9c40-199c4e2f2615.shg-align-container {
  display: flex;
  justify-content: center
}

.s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image {
  box-sizing: border-box;
}



.s-692e4759-9245-4e57-9c40-199c4e2f2615 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-692e4759-9245-4e57-9c40-199c4e2f2615 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image-container {
      position: relative;
    }

    .s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-692e4759-9245-4e57-9c40-199c4e2f2615 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1024px;
    }
  }

@media (min-width: 1200px){#s-692e4759-9245-4e57-9c40-199c4e2f2615 {
  margin: 0 !important;
  overflow: visible;
}

#s-692e4759-9245-4e57-9c40-199c4e2f2615-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-692e4759-9245-4e57-9c40-199c4e2f2615 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-692e4759-9245-4e57-9c40-199c4e2f2615 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-692e4759-9245-4e57-9c40-199c4e2f2615 img.shogun-image {
  /* Add background color handling */
  
}

#s-692e4759-9245-4e57-9c40-199c4e2f2615 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-692e4759-9245-4e57-9c40-199c4e2f2615 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-692e4759-9245-4e57-9c40-199c4e2f2615 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-692e4759-9245-4e57-9c40-199c4e2f2615 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-692e4759-9245-4e57-9c40-199c4e2f2615 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1024px;
  }



  img.s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image {
    
    
    
    max-height: 1024px;
  }


.s-692e4759-9245-4e57-9c40-199c4e2f2615 .shogun-image-content {
  
    justify-content: center;
  
}

.s-692e4759-9245-4e57-9c40-199c4e2f2615.shg-align-container {
  display: flex;
  justify-content: center
}

.s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image {
  box-sizing: border-box;
}



.s-692e4759-9245-4e57-9c40-199c4e2f2615 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-692e4759-9245-4e57-9c40-199c4e2f2615 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image-container {
      position: relative;
    }

    .s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-692e4759-9245-4e57-9c40-199c4e2f2615 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1024px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-692e4759-9245-4e57-9c40-199c4e2f2615 {
  margin: 0 !important;
  overflow: visible;
}

#s-692e4759-9245-4e57-9c40-199c4e2f2615-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-692e4759-9245-4e57-9c40-199c4e2f2615 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-692e4759-9245-4e57-9c40-199c4e2f2615 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-692e4759-9245-4e57-9c40-199c4e2f2615 img.shogun-image {
  /* Add background color handling */
  
}

#s-692e4759-9245-4e57-9c40-199c4e2f2615 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-692e4759-9245-4e57-9c40-199c4e2f2615 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-692e4759-9245-4e57-9c40-199c4e2f2615 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-692e4759-9245-4e57-9c40-199c4e2f2615 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-692e4759-9245-4e57-9c40-199c4e2f2615 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1024px;
  }



  img.s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image {
    
    
    
    max-height: 1024px;
  }


.s-692e4759-9245-4e57-9c40-199c4e2f2615 .shogun-image-content {
  
    justify-content: center;
  
}

.s-692e4759-9245-4e57-9c40-199c4e2f2615.shg-align-container {
  display: flex;
  justify-content: center
}

.s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image {
  box-sizing: border-box;
}



.s-692e4759-9245-4e57-9c40-199c4e2f2615 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-692e4759-9245-4e57-9c40-199c4e2f2615 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image-container {
      position: relative;
    }

    .s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-692e4759-9245-4e57-9c40-199c4e2f2615 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1024px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-692e4759-9245-4e57-9c40-199c4e2f2615 {
  margin: 0 !important;
  overflow: visible;
}

#s-692e4759-9245-4e57-9c40-199c4e2f2615-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-692e4759-9245-4e57-9c40-199c4e2f2615 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-692e4759-9245-4e57-9c40-199c4e2f2615 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-692e4759-9245-4e57-9c40-199c4e2f2615 img.shogun-image {
  /* Add background color handling */
  
}

#s-692e4759-9245-4e57-9c40-199c4e2f2615 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-692e4759-9245-4e57-9c40-199c4e2f2615 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-692e4759-9245-4e57-9c40-199c4e2f2615 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-692e4759-9245-4e57-9c40-199c4e2f2615 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-692e4759-9245-4e57-9c40-199c4e2f2615 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1024px;
  }



  img.s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image {
    
    
    
    max-height: 1024px;
  }


.s-692e4759-9245-4e57-9c40-199c4e2f2615 .shogun-image-content {
  
    justify-content: center;
  
}

.s-692e4759-9245-4e57-9c40-199c4e2f2615.shg-align-container {
  display: flex;
  justify-content: center
}

.s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image {
  box-sizing: border-box;
}



.s-692e4759-9245-4e57-9c40-199c4e2f2615 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-692e4759-9245-4e57-9c40-199c4e2f2615 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image-container {
      position: relative;
    }

    .s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-692e4759-9245-4e57-9c40-199c4e2f2615 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1024px;
    }
  }

}@media (max-width: 767px){#s-692e4759-9245-4e57-9c40-199c4e2f2615 {
  margin: 0 !important;
  overflow: visible;
}

#s-692e4759-9245-4e57-9c40-199c4e2f2615-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-692e4759-9245-4e57-9c40-199c4e2f2615 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-692e4759-9245-4e57-9c40-199c4e2f2615 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-692e4759-9245-4e57-9c40-199c4e2f2615 img.shogun-image {
  /* Add background color handling */
  
}

#s-692e4759-9245-4e57-9c40-199c4e2f2615 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-692e4759-9245-4e57-9c40-199c4e2f2615 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-692e4759-9245-4e57-9c40-199c4e2f2615 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-692e4759-9245-4e57-9c40-199c4e2f2615 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-692e4759-9245-4e57-9c40-199c4e2f2615 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1024px;
  }



  img.s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image {
    
    
    
    max-height: 1024px;
  }


.s-692e4759-9245-4e57-9c40-199c4e2f2615 .shogun-image-content {
  
    justify-content: center;
  
}

.s-692e4759-9245-4e57-9c40-199c4e2f2615.shg-align-container {
  display: flex;
  justify-content: center
}

.s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image {
  box-sizing: border-box;
}



.s-692e4759-9245-4e57-9c40-199c4e2f2615 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-692e4759-9245-4e57-9c40-199c4e2f2615 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image-container {
      position: relative;
    }

    .s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-692e4759-9245-4e57-9c40-199c4e2f2615.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-692e4759-9245-4e57-9c40-199c4e2f2615 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1024px;
    }
  }

}
#s-3aec0faf-8a2b-4e11-b3b5-eb095bdb087b {
  margin-left: auto;
margin-right: auto;
padding-bottom: 15px;
}

#s-56b45cda-528e-4f9e-b0e8-5101eaf3598c {
  margin-left: auto;
margin-right: auto;
padding-left: 5%;
padding-right: 5%;
}

#s-d94390be-1dff-4fb3-901e-cf55b4fd94b4 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 45%;
padding-right: 45%;
}

#s-d94390be-1dff-4fb3-901e-cf55b4fd94b4 hr {
  border-top: 2px solid #ddd;
}

#s-4549a106-4260-4b55-9612-21fd943d49be {
  margin-left: auto;
margin-right: auto;
padding-top: 100px;
padding-left: 5%;
padding-bottom: 100px;
padding-right: 5%;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-4549a106-4260-4b55-9612-21fd943d49be {
  display: none;
}
#s-4549a106-4260-4b55-9612-21fd943d49be, #wrap-s-4549a106-4260-4b55-9612-21fd943d49be, #wrap-content-s-4549a106-4260-4b55-9612-21fd943d49be { display: none !important; }}@media (max-width: 767px){#s-4549a106-4260-4b55-9612-21fd943d49be {
  display: none;
}
#s-4549a106-4260-4b55-9612-21fd943d49be, #wrap-s-4549a106-4260-4b55-9612-21fd943d49be, #wrap-content-s-4549a106-4260-4b55-9612-21fd943d49be { display: none !important; }}







#s-4549a106-4260-4b55-9612-21fd943d49be > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4549a106-4260-4b55-9612-21fd943d49be.shg-box.shg-c {
  justify-content: center;
}

#s-35f2e81c-a6bb-46d0-9c74-6abd1588d8b3 {
  margin-left: auto;
margin-right: auto;
padding-bottom: 15px;
}

#s-815b8cc3-1147-4cfe-8667-6b63e470ca71 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 6%;
padding-bottom: 15px;
padding-right: 6%;
}

.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-47f1b5d4-670b-4f60-8070-0da0d17b55e2 {
  margin-left: auto;
margin-right: auto;
padding-left: 35px;
padding-bottom: 25px;
padding-right: 35px;
max-width: 1920px;
}

#s-bdde6f5c-7b0a-49aa-81ac-b94547a2122f {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-bdde6f5c-7b0a-49aa-81ac-b94547a2122f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bdde6f5c-7b0a-49aa-81ac-b94547a2122f.shg-box.shg-c {
  justify-content: center;
}

#s-46c1bbb6-75bb-4c76-ba14-7796f58859df {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 50px;
}

/* Duplicated Styles are also in Category dynamic.css.liquid - keep them in sync */

#slider-v3-s-46c1bbb6-75bb-4c76-ba14-7796f58859df {
  --swiper-pagination-color: rgba(113, 113, 113, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(113, 113, 113, 1) !important;
  --swiper-pagination-bullet-active-color: rgba(113, 113, 113, 1) !important;
  --arrow-button-size: 35px !important;
  --swiper-pagination-bullet-size: 14px !important;
  
}

#slider-v3-s-46c1bbb6-75bb-4c76-ba14-7796f58859df > .swiper-button-prev,
#slider-v3-s-46c1bbb6-75bb-4c76-ba14-7796f58859df > .swiper-button-next {
  
}

#slider-v3-s-46c1bbb6-75bb-4c76-ba14-7796f58859df > .swiper-button-prev svg,
#slider-v3-s-46c1bbb6-75bb-4c76-ba14-7796f58859df > .swiper-button-next svg {
  fill: rgba(113, 113, 113, 1) !important;
  stroke: rgba(113, 113, 113, 1) !important;
  
}

#slider-v3-s-46c1bbb6-75bb-4c76-ba14-7796f58859df > .swiper-button-prev {
  
  display:  none ;
  align-items: center;
}

#slider-v3-s-46c1bbb6-75bb-4c76-ba14-7796f58859df > .swiper-button-next {
  
  display:  none ;
  align-items: center;
}

#slider-v3-s-46c1bbb6-75bb-4c76-ba14-7796f58859df > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-46c1bbb6-75bb-4c76-ba14-7796f58859df .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-46c1bbb6-75bb-4c76-ba14-7796f58859df .swiper-pagination-bullet-active {
  background-color: rgba(113, 113, 113, 1) !important;
  width: calc(14px * 1) !important;
  height: 14px !important;
  border-radius:  50px  !important;
}

#slider-v3-s-46c1bbb6-75bb-4c76-ba14-7796f58859df .swiper-pagination {
  position:  initial ;
  display: flex;
  margin-top:  8px ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}

#s-32e128ad-313e-4b48-96ca-f70a490d90cc {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-32e128ad-313e-4b48-96ca-f70a490d90cc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-32e128ad-313e-4b48-96ca-f70a490d90cc"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-32e128ad-313e-4b48-96ca-f70a490d90cc"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-32e128ad-313e-4b48-96ca-f70a490d90cc"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-1f3509ac-6900-4312-9cde-6aa4184976ed {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-1f3509ac-6900-4312-9cde-6aa4184976ed > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1f3509ac-6900-4312-9cde-6aa4184976ed.shg-box.shg-c {
  justify-content: center;
}

#s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1080/1350;
text-align: center;
}

#s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-6780c8ac-df2c-4160-aa90-6e3da63c72d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image {
  box-sizing: border-box;
}



.s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image-container {
      position: relative;
    }

    .s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-6780c8ac-df2c-4160-aa90-6e3da63c72d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image {
  box-sizing: border-box;
}



.s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image-container {
      position: relative;
    }

    .s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-6780c8ac-df2c-4160-aa90-6e3da63c72d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image {
  box-sizing: border-box;
}



.s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image-container {
      position: relative;
    }

    .s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-6780c8ac-df2c-4160-aa90-6e3da63c72d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image {
  box-sizing: border-box;
}



.s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image-container {
      position: relative;
    }

    .s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-6780c8ac-df2c-4160-aa90-6e3da63c72d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image {
  box-sizing: border-box;
}



.s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image-container {
      position: relative;
    }

    .s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6780c8ac-df2c-4160-aa90-6e3da63c72d0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6780c8ac-df2c-4160-aa90-6e3da63c72d0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-af7b198b-515f-44f0-a327-1a3902629a20 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 5%;
padding-right: 5%;
}

#s-ff9632bf-9bc2-4122-b52c-2e9d8ae77f70 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-ff9632bf-9bc2-4122-b52c-2e9d8ae77f70 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ff9632bf-9bc2-4122-b52c-2e9d8ae77f70.shg-box.shg-c {
  justify-content: center;
}

#s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1080/1350;
text-align: center;
}

#s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 {
  margin: 0 !important;
  overflow: visible;
}

#s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 img.shogun-image {
  /* Add background color handling */
  
}

#s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image {
  box-sizing: border-box;
}



.s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image-container {
      position: relative;
    }

    .s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 {
  margin: 0 !important;
  overflow: visible;
}

#s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 img.shogun-image {
  /* Add background color handling */
  
}

#s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image {
  box-sizing: border-box;
}



.s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image-container {
      position: relative;
    }

    .s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 {
  margin: 0 !important;
  overflow: visible;
}

#s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 img.shogun-image {
  /* Add background color handling */
  
}

#s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image {
  box-sizing: border-box;
}



.s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image-container {
      position: relative;
    }

    .s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 {
  margin: 0 !important;
  overflow: visible;
}

#s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 img.shogun-image {
  /* Add background color handling */
  
}

#s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image {
  box-sizing: border-box;
}



.s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image-container {
      position: relative;
    }

    .s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 {
  margin: 0 !important;
  overflow: visible;
}

#s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 img.shogun-image {
  /* Add background color handling */
  
}

#s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image {
  box-sizing: border-box;
}



.s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image-container {
      position: relative;
    }

    .s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2dcf8f93-b1db-48bf-af6b-81e23f1230e2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-ab73210b-16f3-478e-93ac-c7149ffb6537 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 5%;
padding-right: 5%;
}

#s-0f8dcf3b-a1f0-4130-86ff-893af34dcfab {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-0f8dcf3b-a1f0-4130-86ff-893af34dcfab > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0f8dcf3b-a1f0-4130-86ff-893af34dcfab.shg-box.shg-c {
  justify-content: center;
}

#s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1080/1350;
text-align: center;
}

#s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f {
  margin: 0 !important;
  overflow: visible;
}

#s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f img.shogun-image {
  /* Add background color handling */
  
}

#s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image {
  box-sizing: border-box;
}



.s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image-container {
      position: relative;
    }

    .s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f {
  margin: 0 !important;
  overflow: visible;
}

#s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f img.shogun-image {
  /* Add background color handling */
  
}

#s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image {
  box-sizing: border-box;
}



.s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image-container {
      position: relative;
    }

    .s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f {
  margin: 0 !important;
  overflow: visible;
}

#s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f img.shogun-image {
  /* Add background color handling */
  
}

#s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image {
  box-sizing: border-box;
}



.s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image-container {
      position: relative;
    }

    .s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f {
  margin: 0 !important;
  overflow: visible;
}

#s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f img.shogun-image {
  /* Add background color handling */
  
}

#s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image {
  box-sizing: border-box;
}



.s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image-container {
      position: relative;
    }

    .s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f {
  margin: 0 !important;
  overflow: visible;
}

#s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f img.shogun-image {
  /* Add background color handling */
  
}

#s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image {
  box-sizing: border-box;
}



.s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image-container {
      position: relative;
    }

    .s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3d222d67-6f2b-48d2-b6fc-7f6b6a489d3f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-97f3d5a1-683a-4f0a-bf54-ce4935e3e53c {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 5%;
padding-right: 5%;
}

.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: "Lato";
}

.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-0e88b68f-c563-4eb6-883c-7635fa53e9a9 {
  border-style: solid;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
letter-spacing: 3px;
color: rgba(0, 0, 0, 1);
}
#s-0e88b68f-c563-4eb6-883c-7635fa53e9a9:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-0e88b68f-c563-4eb6-883c-7635fa53e9a9:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-0e88b68f-c563-4eb6-883c-7635fa53e9a9-root {
    text-align: center;
  }


#s-0e88b68f-c563-4eb6-883c-7635fa53e9a9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  font-weight: 700;
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-0e88b68f-c563-4eb6-883c-7635fa53e9a9-root {
    text-align: center;
  }


#s-0e88b68f-c563-4eb6-883c-7635fa53e9a9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  font-weight: 700;
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-0e88b68f-c563-4eb6-883c-7635fa53e9a9-root {
    text-align: center;
  }


#s-0e88b68f-c563-4eb6-883c-7635fa53e9a9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  font-weight: 700;
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-0e88b68f-c563-4eb6-883c-7635fa53e9a9-root {
    text-align: center;
  }


#s-0e88b68f-c563-4eb6-883c-7635fa53e9a9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  font-weight: 700;
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-0e88b68f-c563-4eb6-883c-7635fa53e9a9-root {
    text-align: center;
  }


#s-0e88b68f-c563-4eb6-883c-7635fa53e9a9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  font-weight: 700;
  
  
  display:  inline-block ;
}
}
#s-47326b5b-14e7-4047-ba28-5b4c6e0d37ee {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 5%;
padding-bottom: 100px;
padding-right: 5%;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 1200px){#s-47326b5b-14e7-4047-ba28-5b4c6e0d37ee {
  display: none;
}
#s-47326b5b-14e7-4047-ba28-5b4c6e0d37ee, #wrap-s-47326b5b-14e7-4047-ba28-5b4c6e0d37ee, #wrap-content-s-47326b5b-14e7-4047-ba28-5b4c6e0d37ee { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-47326b5b-14e7-4047-ba28-5b4c6e0d37ee {
  display: none;
}
#s-47326b5b-14e7-4047-ba28-5b4c6e0d37ee, #wrap-s-47326b5b-14e7-4047-ba28-5b4c6e0d37ee, #wrap-content-s-47326b5b-14e7-4047-ba28-5b4c6e0d37ee { display: none !important; }}@media (max-width: 767px){#s-47326b5b-14e7-4047-ba28-5b4c6e0d37ee {
  display: none;
}
#s-47326b5b-14e7-4047-ba28-5b4c6e0d37ee, #wrap-s-47326b5b-14e7-4047-ba28-5b4c6e0d37ee, #wrap-content-s-47326b5b-14e7-4047-ba28-5b4c6e0d37ee { display: none !important; }}







#s-47326b5b-14e7-4047-ba28-5b4c6e0d37ee > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-47326b5b-14e7-4047-ba28-5b4c6e0d37ee.shg-box.shg-c {
  justify-content: center;
}

#s-592d39d9-2381-43c2-b279-c6b2f9f86fd3 {
  margin-left: auto;
margin-right: auto;
padding-bottom: 15px;
}

#s-39f05b80-88d2-435d-9c68-3d9ee803d043 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 6%;
padding-bottom: 15px;
padding-right: 6%;
}

#s-232ed4a1-804f-41bc-9f88-0389c25587c9 {
  margin-left: auto;
margin-right: auto;
padding-left: 35px;
padding-bottom: 25px;
padding-right: 35px;
max-width: 1920px;
}

#s-8e0a40bd-38d3-4d57-b75e-67742db109f7 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-8e0a40bd-38d3-4d57-b75e-67742db109f7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8e0a40bd-38d3-4d57-b75e-67742db109f7.shg-box.shg-c {
  justify-content: center;
}

#s-6e3d8e41-bedd-420f-9513-523d316feb8e {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 50px;
}

/* Duplicated Styles are also in Category dynamic.css.liquid - keep them in sync */

#slider-v3-s-6e3d8e41-bedd-420f-9513-523d316feb8e {
  --swiper-pagination-color: rgba(113, 113, 113, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(113, 113, 113, 1) !important;
  --swiper-pagination-bullet-active-color: rgba(113, 113, 113, 1) !important;
  --arrow-button-size: 35px !important;
  --swiper-pagination-bullet-size: 14px !important;
  
}

#slider-v3-s-6e3d8e41-bedd-420f-9513-523d316feb8e > .swiper-button-prev,
#slider-v3-s-6e3d8e41-bedd-420f-9513-523d316feb8e > .swiper-button-next {
  
}

#slider-v3-s-6e3d8e41-bedd-420f-9513-523d316feb8e > .swiper-button-prev svg,
#slider-v3-s-6e3d8e41-bedd-420f-9513-523d316feb8e > .swiper-button-next svg {
  fill: rgba(113, 113, 113, 1) !important;
  stroke: rgba(113, 113, 113, 1) !important;
  
}

#slider-v3-s-6e3d8e41-bedd-420f-9513-523d316feb8e > .swiper-button-prev {
  
  display:  none ;
  align-items: center;
}

#slider-v3-s-6e3d8e41-bedd-420f-9513-523d316feb8e > .swiper-button-next {
  
  display:  none ;
  align-items: center;
}

#slider-v3-s-6e3d8e41-bedd-420f-9513-523d316feb8e > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-6e3d8e41-bedd-420f-9513-523d316feb8e .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-6e3d8e41-bedd-420f-9513-523d316feb8e .swiper-pagination-bullet-active {
  background-color: rgba(113, 113, 113, 1) !important;
  width: calc(14px * 1) !important;
  height: 14px !important;
  border-radius:  50px  !important;
}

#slider-v3-s-6e3d8e41-bedd-420f-9513-523d316feb8e .swiper-pagination {
  position:  initial ;
  display: flex;
  margin-top:  8px ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}

#s-e2767b33-f426-46c5-b00c-43a53327da6e {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-e2767b33-f426-46c5-b00c-43a53327da6e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e2767b33-f426-46c5-b00c-43a53327da6e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-e2767b33-f426-46c5-b00c-43a53327da6e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-e2767b33-f426-46c5-b00c-43a53327da6e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-078790c3-ffa6-48dd-bed1-b99ed8e68e46 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-078790c3-ffa6-48dd-bed1-b99ed8e68e46 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-078790c3-ffa6-48dd-bed1-b99ed8e68e46.shg-box.shg-c {
  justify-content: center;
}

#s-75e5e089-fd0c-435d-98a4-eba17ac11f5c {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1080/1350;
text-align: center;
}

#s-75e5e089-fd0c-435d-98a4-eba17ac11f5c {
  margin: 0 !important;
  overflow: visible;
}

#s-75e5e089-fd0c-435d-98a4-eba17ac11f5c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-75e5e089-fd0c-435d-98a4-eba17ac11f5c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-75e5e089-fd0c-435d-98a4-eba17ac11f5c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-75e5e089-fd0c-435d-98a4-eba17ac11f5c img.shogun-image {
  /* Add background color handling */
  
}

#s-75e5e089-fd0c-435d-98a4-eba17ac11f5c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-75e5e089-fd0c-435d-98a4-eba17ac11f5c .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-75e5e089-fd0c-435d-98a4-eba17ac11f5c .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-75e5e089-fd0c-435d-98a4-eba17ac11f5c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-75e5e089-fd0c-435d-98a4-eba17ac11f5c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-75e5e089-fd0c-435d-98a4-eba17ac11f5c .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image {
  box-sizing: border-box;
}



.s-75e5e089-fd0c-435d-98a4-eba17ac11f5c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-75e5e089-fd0c-435d-98a4-eba17ac11f5c {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image-container {
      position: relative;
    }

    .s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75e5e089-fd0c-435d-98a4-eba17ac11f5c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-75e5e089-fd0c-435d-98a4-eba17ac11f5c {
  margin: 0 !important;
  overflow: visible;
}

#s-75e5e089-fd0c-435d-98a4-eba17ac11f5c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-75e5e089-fd0c-435d-98a4-eba17ac11f5c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-75e5e089-fd0c-435d-98a4-eba17ac11f5c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-75e5e089-fd0c-435d-98a4-eba17ac11f5c img.shogun-image {
  /* Add background color handling */
  
}

#s-75e5e089-fd0c-435d-98a4-eba17ac11f5c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-75e5e089-fd0c-435d-98a4-eba17ac11f5c .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-75e5e089-fd0c-435d-98a4-eba17ac11f5c .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-75e5e089-fd0c-435d-98a4-eba17ac11f5c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-75e5e089-fd0c-435d-98a4-eba17ac11f5c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-75e5e089-fd0c-435d-98a4-eba17ac11f5c .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image {
  box-sizing: border-box;
}



.s-75e5e089-fd0c-435d-98a4-eba17ac11f5c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-75e5e089-fd0c-435d-98a4-eba17ac11f5c {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image-container {
      position: relative;
    }

    .s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75e5e089-fd0c-435d-98a4-eba17ac11f5c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-75e5e089-fd0c-435d-98a4-eba17ac11f5c {
  margin: 0 !important;
  overflow: visible;
}

#s-75e5e089-fd0c-435d-98a4-eba17ac11f5c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-75e5e089-fd0c-435d-98a4-eba17ac11f5c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-75e5e089-fd0c-435d-98a4-eba17ac11f5c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-75e5e089-fd0c-435d-98a4-eba17ac11f5c img.shogun-image {
  /* Add background color handling */
  
}

#s-75e5e089-fd0c-435d-98a4-eba17ac11f5c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-75e5e089-fd0c-435d-98a4-eba17ac11f5c .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-75e5e089-fd0c-435d-98a4-eba17ac11f5c .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-75e5e089-fd0c-435d-98a4-eba17ac11f5c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-75e5e089-fd0c-435d-98a4-eba17ac11f5c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-75e5e089-fd0c-435d-98a4-eba17ac11f5c .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image {
  box-sizing: border-box;
}



.s-75e5e089-fd0c-435d-98a4-eba17ac11f5c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-75e5e089-fd0c-435d-98a4-eba17ac11f5c {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image-container {
      position: relative;
    }

    .s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75e5e089-fd0c-435d-98a4-eba17ac11f5c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-75e5e089-fd0c-435d-98a4-eba17ac11f5c {
  margin: 0 !important;
  overflow: visible;
}

#s-75e5e089-fd0c-435d-98a4-eba17ac11f5c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-75e5e089-fd0c-435d-98a4-eba17ac11f5c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-75e5e089-fd0c-435d-98a4-eba17ac11f5c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-75e5e089-fd0c-435d-98a4-eba17ac11f5c img.shogun-image {
  /* Add background color handling */
  
}

#s-75e5e089-fd0c-435d-98a4-eba17ac11f5c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-75e5e089-fd0c-435d-98a4-eba17ac11f5c .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-75e5e089-fd0c-435d-98a4-eba17ac11f5c .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-75e5e089-fd0c-435d-98a4-eba17ac11f5c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-75e5e089-fd0c-435d-98a4-eba17ac11f5c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-75e5e089-fd0c-435d-98a4-eba17ac11f5c .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image {
  box-sizing: border-box;
}



.s-75e5e089-fd0c-435d-98a4-eba17ac11f5c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-75e5e089-fd0c-435d-98a4-eba17ac11f5c {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image-container {
      position: relative;
    }

    .s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75e5e089-fd0c-435d-98a4-eba17ac11f5c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-75e5e089-fd0c-435d-98a4-eba17ac11f5c {
  margin: 0 !important;
  overflow: visible;
}

#s-75e5e089-fd0c-435d-98a4-eba17ac11f5c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-75e5e089-fd0c-435d-98a4-eba17ac11f5c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-75e5e089-fd0c-435d-98a4-eba17ac11f5c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-75e5e089-fd0c-435d-98a4-eba17ac11f5c img.shogun-image {
  /* Add background color handling */
  
}

#s-75e5e089-fd0c-435d-98a4-eba17ac11f5c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-75e5e089-fd0c-435d-98a4-eba17ac11f5c .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-75e5e089-fd0c-435d-98a4-eba17ac11f5c .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-75e5e089-fd0c-435d-98a4-eba17ac11f5c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-75e5e089-fd0c-435d-98a4-eba17ac11f5c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-75e5e089-fd0c-435d-98a4-eba17ac11f5c .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image {
  box-sizing: border-box;
}



.s-75e5e089-fd0c-435d-98a4-eba17ac11f5c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-75e5e089-fd0c-435d-98a4-eba17ac11f5c {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image-container {
      position: relative;
    }

    .s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75e5e089-fd0c-435d-98a4-eba17ac11f5c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75e5e089-fd0c-435d-98a4-eba17ac11f5c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-f6ecf541-0e17-4fa9-93b4-a9b4196dd07b {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 5%;
padding-right: 5%;
}

#s-25d896bc-5759-4993-bd58-688419e3639c {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-25d896bc-5759-4993-bd58-688419e3639c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-25d896bc-5759-4993-bd58-688419e3639c.shg-box.shg-c {
  justify-content: center;
}

#s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1080/1350;
text-align: center;
}

#s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 {
  margin: 0 !important;
  overflow: visible;
}

#s-91e3cfe3-5cff-4cd0-aeff-c479be15c020-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 img.shogun-image {
  /* Add background color handling */
  
}

#s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shg-align-container {
  display: flex;
  justify-content: center
}

.s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image {
  box-sizing: border-box;
}



.s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image-container {
      position: relative;
    }

    .s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 {
  margin: 0 !important;
  overflow: visible;
}

#s-91e3cfe3-5cff-4cd0-aeff-c479be15c020-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 img.shogun-image {
  /* Add background color handling */
  
}

#s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shg-align-container {
  display: flex;
  justify-content: center
}

.s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image {
  box-sizing: border-box;
}



.s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image-container {
      position: relative;
    }

    .s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 {
  margin: 0 !important;
  overflow: visible;
}

#s-91e3cfe3-5cff-4cd0-aeff-c479be15c020-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 img.shogun-image {
  /* Add background color handling */
  
}

#s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shg-align-container {
  display: flex;
  justify-content: center
}

.s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image {
  box-sizing: border-box;
}



.s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image-container {
      position: relative;
    }

    .s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 {
  margin: 0 !important;
  overflow: visible;
}

#s-91e3cfe3-5cff-4cd0-aeff-c479be15c020-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 img.shogun-image {
  /* Add background color handling */
  
}

#s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shg-align-container {
  display: flex;
  justify-content: center
}

.s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image {
  box-sizing: border-box;
}



.s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image-container {
      position: relative;
    }

    .s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 {
  margin: 0 !important;
  overflow: visible;
}

#s-91e3cfe3-5cff-4cd0-aeff-c479be15c020-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 img.shogun-image {
  /* Add background color handling */
  
}

#s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shg-align-container {
  display: flex;
  justify-content: center
}

.s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image {
  box-sizing: border-box;
}



.s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image-container {
      position: relative;
    }

    .s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-91e3cfe3-5cff-4cd0-aeff-c479be15c020.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-91e3cfe3-5cff-4cd0-aeff-c479be15c020 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-86d41910-d7b2-4a7d-a300-289b3b238a87 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 5%;
padding-right: 5%;
}

#s-a204b1f7-acaf-444f-a2e6-5f67313e9ff3 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-a204b1f7-acaf-444f-a2e6-5f67313e9ff3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a204b1f7-acaf-444f-a2e6-5f67313e9ff3.shg-box.shg-c {
  justify-content: center;
}

#s-24b1981f-fd3a-4ae3-9978-fa4934139da7 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1080/1350;
text-align: center;
}

#s-24b1981f-fd3a-4ae3-9978-fa4934139da7 {
  margin: 0 !important;
  overflow: visible;
}

#s-24b1981f-fd3a-4ae3-9978-fa4934139da7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-24b1981f-fd3a-4ae3-9978-fa4934139da7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-24b1981f-fd3a-4ae3-9978-fa4934139da7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-24b1981f-fd3a-4ae3-9978-fa4934139da7 img.shogun-image {
  /* Add background color handling */
  
}

#s-24b1981f-fd3a-4ae3-9978-fa4934139da7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-24b1981f-fd3a-4ae3-9978-fa4934139da7 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-24b1981f-fd3a-4ae3-9978-fa4934139da7 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-24b1981f-fd3a-4ae3-9978-fa4934139da7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-24b1981f-fd3a-4ae3-9978-fa4934139da7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-24b1981f-fd3a-4ae3-9978-fa4934139da7 .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image {
  box-sizing: border-box;
}



.s-24b1981f-fd3a-4ae3-9978-fa4934139da7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-24b1981f-fd3a-4ae3-9978-fa4934139da7 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image-container {
      position: relative;
    }

    .s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24b1981f-fd3a-4ae3-9978-fa4934139da7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-24b1981f-fd3a-4ae3-9978-fa4934139da7 {
  margin: 0 !important;
  overflow: visible;
}

#s-24b1981f-fd3a-4ae3-9978-fa4934139da7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-24b1981f-fd3a-4ae3-9978-fa4934139da7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-24b1981f-fd3a-4ae3-9978-fa4934139da7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-24b1981f-fd3a-4ae3-9978-fa4934139da7 img.shogun-image {
  /* Add background color handling */
  
}

#s-24b1981f-fd3a-4ae3-9978-fa4934139da7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-24b1981f-fd3a-4ae3-9978-fa4934139da7 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-24b1981f-fd3a-4ae3-9978-fa4934139da7 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-24b1981f-fd3a-4ae3-9978-fa4934139da7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-24b1981f-fd3a-4ae3-9978-fa4934139da7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-24b1981f-fd3a-4ae3-9978-fa4934139da7 .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image {
  box-sizing: border-box;
}



.s-24b1981f-fd3a-4ae3-9978-fa4934139da7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-24b1981f-fd3a-4ae3-9978-fa4934139da7 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image-container {
      position: relative;
    }

    .s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24b1981f-fd3a-4ae3-9978-fa4934139da7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-24b1981f-fd3a-4ae3-9978-fa4934139da7 {
  margin: 0 !important;
  overflow: visible;
}

#s-24b1981f-fd3a-4ae3-9978-fa4934139da7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-24b1981f-fd3a-4ae3-9978-fa4934139da7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-24b1981f-fd3a-4ae3-9978-fa4934139da7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-24b1981f-fd3a-4ae3-9978-fa4934139da7 img.shogun-image {
  /* Add background color handling */
  
}

#s-24b1981f-fd3a-4ae3-9978-fa4934139da7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-24b1981f-fd3a-4ae3-9978-fa4934139da7 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-24b1981f-fd3a-4ae3-9978-fa4934139da7 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-24b1981f-fd3a-4ae3-9978-fa4934139da7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-24b1981f-fd3a-4ae3-9978-fa4934139da7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-24b1981f-fd3a-4ae3-9978-fa4934139da7 .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image {
  box-sizing: border-box;
}



.s-24b1981f-fd3a-4ae3-9978-fa4934139da7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-24b1981f-fd3a-4ae3-9978-fa4934139da7 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image-container {
      position: relative;
    }

    .s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24b1981f-fd3a-4ae3-9978-fa4934139da7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-24b1981f-fd3a-4ae3-9978-fa4934139da7 {
  margin: 0 !important;
  overflow: visible;
}

#s-24b1981f-fd3a-4ae3-9978-fa4934139da7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-24b1981f-fd3a-4ae3-9978-fa4934139da7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-24b1981f-fd3a-4ae3-9978-fa4934139da7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-24b1981f-fd3a-4ae3-9978-fa4934139da7 img.shogun-image {
  /* Add background color handling */
  
}

#s-24b1981f-fd3a-4ae3-9978-fa4934139da7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-24b1981f-fd3a-4ae3-9978-fa4934139da7 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-24b1981f-fd3a-4ae3-9978-fa4934139da7 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-24b1981f-fd3a-4ae3-9978-fa4934139da7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-24b1981f-fd3a-4ae3-9978-fa4934139da7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-24b1981f-fd3a-4ae3-9978-fa4934139da7 .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image {
  box-sizing: border-box;
}



.s-24b1981f-fd3a-4ae3-9978-fa4934139da7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-24b1981f-fd3a-4ae3-9978-fa4934139da7 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image-container {
      position: relative;
    }

    .s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24b1981f-fd3a-4ae3-9978-fa4934139da7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-24b1981f-fd3a-4ae3-9978-fa4934139da7 {
  margin: 0 !important;
  overflow: visible;
}

#s-24b1981f-fd3a-4ae3-9978-fa4934139da7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-24b1981f-fd3a-4ae3-9978-fa4934139da7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-24b1981f-fd3a-4ae3-9978-fa4934139da7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-24b1981f-fd3a-4ae3-9978-fa4934139da7 img.shogun-image {
  /* Add background color handling */
  
}

#s-24b1981f-fd3a-4ae3-9978-fa4934139da7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-24b1981f-fd3a-4ae3-9978-fa4934139da7 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-24b1981f-fd3a-4ae3-9978-fa4934139da7 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-24b1981f-fd3a-4ae3-9978-fa4934139da7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-24b1981f-fd3a-4ae3-9978-fa4934139da7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-24b1981f-fd3a-4ae3-9978-fa4934139da7 .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image {
  box-sizing: border-box;
}



.s-24b1981f-fd3a-4ae3-9978-fa4934139da7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-24b1981f-fd3a-4ae3-9978-fa4934139da7 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image-container {
      position: relative;
    }

    .s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24b1981f-fd3a-4ae3-9978-fa4934139da7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24b1981f-fd3a-4ae3-9978-fa4934139da7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-519e58ea-88ca-4730-bbca-f59d790eeba8 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 5%;
padding-right: 5%;
}

#s-1c5740cc-e294-4adc-b5c2-060269105354 {
  border-style: solid;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
letter-spacing: 3px;
color: rgba(0, 0, 0, 1);
}
#s-1c5740cc-e294-4adc-b5c2-060269105354:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-1c5740cc-e294-4adc-b5c2-060269105354:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-1c5740cc-e294-4adc-b5c2-060269105354-root {
    text-align: center;
  }


#s-1c5740cc-e294-4adc-b5c2-060269105354.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  font-weight: 700;
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-1c5740cc-e294-4adc-b5c2-060269105354-root {
    text-align: center;
  }


#s-1c5740cc-e294-4adc-b5c2-060269105354.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  font-weight: 700;
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1c5740cc-e294-4adc-b5c2-060269105354-root {
    text-align: center;
  }


#s-1c5740cc-e294-4adc-b5c2-060269105354.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  font-weight: 700;
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1c5740cc-e294-4adc-b5c2-060269105354-root {
    text-align: center;
  }


#s-1c5740cc-e294-4adc-b5c2-060269105354.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  font-weight: 700;
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-1c5740cc-e294-4adc-b5c2-060269105354-root {
    text-align: center;
  }


#s-1c5740cc-e294-4adc-b5c2-060269105354.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  font-weight: 700;
  
  
  display:  inline-block ;
}
}
#s-32b0192b-7120-4809-a319-bc2eee9e4201 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 5%;
padding-bottom: 0px;
padding-right: 5%;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 1200px){#s-32b0192b-7120-4809-a319-bc2eee9e4201 {
  display: none;
}
#s-32b0192b-7120-4809-a319-bc2eee9e4201, #wrap-s-32b0192b-7120-4809-a319-bc2eee9e4201, #wrap-content-s-32b0192b-7120-4809-a319-bc2eee9e4201 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-32b0192b-7120-4809-a319-bc2eee9e4201 {
  display: none;
}
#s-32b0192b-7120-4809-a319-bc2eee9e4201, #wrap-s-32b0192b-7120-4809-a319-bc2eee9e4201, #wrap-content-s-32b0192b-7120-4809-a319-bc2eee9e4201 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-32b0192b-7120-4809-a319-bc2eee9e4201 {
  display: none;
}
#s-32b0192b-7120-4809-a319-bc2eee9e4201, #wrap-s-32b0192b-7120-4809-a319-bc2eee9e4201, #wrap-content-s-32b0192b-7120-4809-a319-bc2eee9e4201 { display: none !important; }}







#s-32b0192b-7120-4809-a319-bc2eee9e4201 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-32b0192b-7120-4809-a319-bc2eee9e4201.shg-box.shg-c {
  justify-content: center;
}

#s-7766cb79-67b3-4569-ac29-e7102d7ca1e7 {
  margin-left: auto;
margin-right: auto;
padding-bottom: 15px;
}

#s-1c8d3b6e-dd6e-490e-bdbc-e7f38d6a2b19 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 6%;
padding-bottom: 15px;
padding-right: 6%;
}

#s-cf287b9b-7e90-44d8-bcac-d2c98192a415 {
  margin-left: auto;
margin-right: auto;
padding-left: 0px;
padding-bottom: 50px;
padding-right: 0px;
}

#s-112d0dc4-41a5-49c7-a42e-1b5bc65fdd73 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-112d0dc4-41a5-49c7-a42e-1b5bc65fdd73 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-112d0dc4-41a5-49c7-a42e-1b5bc65fdd73.shg-box.shg-c {
  justify-content: center;
}

#s-6c81929c-dee3-4ee0-8313-bd13f2d8670a {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 50px;
}

/* Duplicated Styles are also in Category dynamic.css.liquid - keep them in sync */

#slider-v3-s-6c81929c-dee3-4ee0-8313-bd13f2d8670a {
  --swiper-pagination-color: rgba(113, 113, 113, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(113, 113, 113, 1) !important;
  --swiper-pagination-bullet-active-color: rgba(113, 113, 113, 1) !important;
  --arrow-button-size: 35px !important;
  --swiper-pagination-bullet-size: 14px !important;
  
}

#slider-v3-s-6c81929c-dee3-4ee0-8313-bd13f2d8670a > .swiper-button-prev,
#slider-v3-s-6c81929c-dee3-4ee0-8313-bd13f2d8670a > .swiper-button-next {
  
}

#slider-v3-s-6c81929c-dee3-4ee0-8313-bd13f2d8670a > .swiper-button-prev svg,
#slider-v3-s-6c81929c-dee3-4ee0-8313-bd13f2d8670a > .swiper-button-next svg {
  fill: rgba(113, 113, 113, 1) !important;
  stroke: rgba(113, 113, 113, 1) !important;
  
}

#slider-v3-s-6c81929c-dee3-4ee0-8313-bd13f2d8670a > .swiper-button-prev {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-6c81929c-dee3-4ee0-8313-bd13f2d8670a > .swiper-button-next {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-6c81929c-dee3-4ee0-8313-bd13f2d8670a > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-6c81929c-dee3-4ee0-8313-bd13f2d8670a .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-6c81929c-dee3-4ee0-8313-bd13f2d8670a .swiper-pagination-bullet-active {
  background-color: rgba(113, 113, 113, 1) !important;
  width: calc(14px * 1) !important;
  height: 14px !important;
  border-radius:  50px  !important;
}

#slider-v3-s-6c81929c-dee3-4ee0-8313-bd13f2d8670a .swiper-pagination {
  position:  initial ;
  display: flex;
  margin-top:  8px ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}

#s-0ede8d4f-83fb-4f5c-8427-11afa280fed6 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-0ede8d4f-83fb-4f5c-8427-11afa280fed6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0ede8d4f-83fb-4f5c-8427-11afa280fed6 {
  cursor: pointer;
}#s-0ede8d4f-83fb-4f5c-8427-11afa280fed6.shg-box.shg-c {
  justify-content: center;
}

#s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1080/1350;
text-align: center;
}

#s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d {
  margin: 0 !important;
  overflow: visible;
}

#s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d img.shogun-image {
  /* Add background color handling */
  
}

#s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image {
  box-sizing: border-box;
}



.s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image-container {
      position: relative;
    }

    .s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d {
  margin: 0 !important;
  overflow: visible;
}

#s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d img.shogun-image {
  /* Add background color handling */
  
}

#s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image {
  box-sizing: border-box;
}



.s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image-container {
      position: relative;
    }

    .s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d {
  margin: 0 !important;
  overflow: visible;
}

#s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d img.shogun-image {
  /* Add background color handling */
  
}

#s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image {
  box-sizing: border-box;
}



.s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image-container {
      position: relative;
    }

    .s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d {
  margin: 0 !important;
  overflow: visible;
}

#s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d img.shogun-image {
  /* Add background color handling */
  
}

#s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image {
  box-sizing: border-box;
}



.s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image-container {
      position: relative;
    }

    .s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d {
  margin: 0 !important;
  overflow: visible;
}

#s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d img.shogun-image {
  /* Add background color handling */
  
}

#s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image {
  box-sizing: border-box;
}



.s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image-container {
      position: relative;
    }

    .s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-72eeec7c-3671-4c23-91a2-d8a73c94ef2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-4005a9cd-30b5-4839-ae22-30fc36e3e17b {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 5%;
padding-right: 5%;
}

#s-45fbf10d-e4ac-4f42-9908-7b7883fbfe48 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-45fbf10d-e4ac-4f42-9908-7b7883fbfe48 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-45fbf10d-e4ac-4f42-9908-7b7883fbfe48 {
  cursor: pointer;
}#s-45fbf10d-e4ac-4f42-9908-7b7883fbfe48.shg-box.shg-c {
  justify-content: center;
}

#s-f5bd619d-9936-4bec-8b88-8efa226a5e1a {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1080/1350;
text-align: center;
}

#s-f5bd619d-9936-4bec-8b88-8efa226a5e1a {
  margin: 0 !important;
  overflow: visible;
}

#s-f5bd619d-9936-4bec-8b88-8efa226a5e1a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f5bd619d-9936-4bec-8b88-8efa226a5e1a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f5bd619d-9936-4bec-8b88-8efa226a5e1a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f5bd619d-9936-4bec-8b88-8efa226a5e1a img.shogun-image {
  /* Add background color handling */
  
}

#s-f5bd619d-9936-4bec-8b88-8efa226a5e1a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f5bd619d-9936-4bec-8b88-8efa226a5e1a .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-f5bd619d-9936-4bec-8b88-8efa226a5e1a .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f5bd619d-9936-4bec-8b88-8efa226a5e1a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f5bd619d-9936-4bec-8b88-8efa226a5e1a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-f5bd619d-9936-4bec-8b88-8efa226a5e1a .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image {
  box-sizing: border-box;
}



.s-f5bd619d-9936-4bec-8b88-8efa226a5e1a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f5bd619d-9936-4bec-8b88-8efa226a5e1a {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image-container {
      position: relative;
    }

    .s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f5bd619d-9936-4bec-8b88-8efa226a5e1a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-f5bd619d-9936-4bec-8b88-8efa226a5e1a {
  margin: 0 !important;
  overflow: visible;
}

#s-f5bd619d-9936-4bec-8b88-8efa226a5e1a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f5bd619d-9936-4bec-8b88-8efa226a5e1a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f5bd619d-9936-4bec-8b88-8efa226a5e1a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f5bd619d-9936-4bec-8b88-8efa226a5e1a img.shogun-image {
  /* Add background color handling */
  
}

#s-f5bd619d-9936-4bec-8b88-8efa226a5e1a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f5bd619d-9936-4bec-8b88-8efa226a5e1a .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-f5bd619d-9936-4bec-8b88-8efa226a5e1a .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f5bd619d-9936-4bec-8b88-8efa226a5e1a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f5bd619d-9936-4bec-8b88-8efa226a5e1a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-f5bd619d-9936-4bec-8b88-8efa226a5e1a .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image {
  box-sizing: border-box;
}



.s-f5bd619d-9936-4bec-8b88-8efa226a5e1a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f5bd619d-9936-4bec-8b88-8efa226a5e1a {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image-container {
      position: relative;
    }

    .s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f5bd619d-9936-4bec-8b88-8efa226a5e1a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-f5bd619d-9936-4bec-8b88-8efa226a5e1a {
  margin: 0 !important;
  overflow: visible;
}

#s-f5bd619d-9936-4bec-8b88-8efa226a5e1a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f5bd619d-9936-4bec-8b88-8efa226a5e1a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f5bd619d-9936-4bec-8b88-8efa226a5e1a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f5bd619d-9936-4bec-8b88-8efa226a5e1a img.shogun-image {
  /* Add background color handling */
  
}

#s-f5bd619d-9936-4bec-8b88-8efa226a5e1a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f5bd619d-9936-4bec-8b88-8efa226a5e1a .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-f5bd619d-9936-4bec-8b88-8efa226a5e1a .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f5bd619d-9936-4bec-8b88-8efa226a5e1a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f5bd619d-9936-4bec-8b88-8efa226a5e1a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-f5bd619d-9936-4bec-8b88-8efa226a5e1a .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image {
  box-sizing: border-box;
}



.s-f5bd619d-9936-4bec-8b88-8efa226a5e1a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f5bd619d-9936-4bec-8b88-8efa226a5e1a {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image-container {
      position: relative;
    }

    .s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f5bd619d-9936-4bec-8b88-8efa226a5e1a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-f5bd619d-9936-4bec-8b88-8efa226a5e1a {
  margin: 0 !important;
  overflow: visible;
}

#s-f5bd619d-9936-4bec-8b88-8efa226a5e1a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f5bd619d-9936-4bec-8b88-8efa226a5e1a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f5bd619d-9936-4bec-8b88-8efa226a5e1a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f5bd619d-9936-4bec-8b88-8efa226a5e1a img.shogun-image {
  /* Add background color handling */
  
}

#s-f5bd619d-9936-4bec-8b88-8efa226a5e1a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f5bd619d-9936-4bec-8b88-8efa226a5e1a .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-f5bd619d-9936-4bec-8b88-8efa226a5e1a .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f5bd619d-9936-4bec-8b88-8efa226a5e1a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f5bd619d-9936-4bec-8b88-8efa226a5e1a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-f5bd619d-9936-4bec-8b88-8efa226a5e1a .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image {
  box-sizing: border-box;
}



.s-f5bd619d-9936-4bec-8b88-8efa226a5e1a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f5bd619d-9936-4bec-8b88-8efa226a5e1a {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image-container {
      position: relative;
    }

    .s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f5bd619d-9936-4bec-8b88-8efa226a5e1a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-f5bd619d-9936-4bec-8b88-8efa226a5e1a {
  margin: 0 !important;
  overflow: visible;
}

#s-f5bd619d-9936-4bec-8b88-8efa226a5e1a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f5bd619d-9936-4bec-8b88-8efa226a5e1a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f5bd619d-9936-4bec-8b88-8efa226a5e1a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f5bd619d-9936-4bec-8b88-8efa226a5e1a img.shogun-image {
  /* Add background color handling */
  
}

#s-f5bd619d-9936-4bec-8b88-8efa226a5e1a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f5bd619d-9936-4bec-8b88-8efa226a5e1a .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-f5bd619d-9936-4bec-8b88-8efa226a5e1a .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f5bd619d-9936-4bec-8b88-8efa226a5e1a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f5bd619d-9936-4bec-8b88-8efa226a5e1a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-f5bd619d-9936-4bec-8b88-8efa226a5e1a .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image {
  box-sizing: border-box;
}



.s-f5bd619d-9936-4bec-8b88-8efa226a5e1a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f5bd619d-9936-4bec-8b88-8efa226a5e1a {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image-container {
      position: relative;
    }

    .s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f5bd619d-9936-4bec-8b88-8efa226a5e1a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f5bd619d-9936-4bec-8b88-8efa226a5e1a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-6631f0e7-a236-47df-b815-bbf06b703e98 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 5%;
padding-right: 5%;
}

#s-85b55eba-3b1b-4e4a-a66f-103e4f18a4f4 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-85b55eba-3b1b-4e4a-a66f-103e4f18a4f4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-85b55eba-3b1b-4e4a-a66f-103e4f18a4f4 {
  cursor: pointer;
}#s-85b55eba-3b1b-4e4a-a66f-103e4f18a4f4.shg-box.shg-c {
  justify-content: center;
}

#s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1080/1350;
text-align: center;
}

#s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 {
  margin: 0 !important;
  overflow: visible;
}

#s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 img.shogun-image {
  /* Add background color handling */
  
}

#s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image {
  box-sizing: border-box;
}



.s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image-container {
      position: relative;
    }

    .s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 {
  margin: 0 !important;
  overflow: visible;
}

#s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 img.shogun-image {
  /* Add background color handling */
  
}

#s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image {
  box-sizing: border-box;
}



.s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image-container {
      position: relative;
    }

    .s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 {
  margin: 0 !important;
  overflow: visible;
}

#s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 img.shogun-image {
  /* Add background color handling */
  
}

#s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image {
  box-sizing: border-box;
}



.s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image-container {
      position: relative;
    }

    .s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 {
  margin: 0 !important;
  overflow: visible;
}

#s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 img.shogun-image {
  /* Add background color handling */
  
}

#s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image {
  box-sizing: border-box;
}



.s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image-container {
      position: relative;
    }

    .s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 {
  margin: 0 !important;
  overflow: visible;
}

#s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 img.shogun-image {
  /* Add background color handling */
  
}

#s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 .shg-image-content-wrapper {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }

    #s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 .shogun-image-link {
      aspect-ratio: 1080/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 .shogun-image-content {
  
    justify-content: flex-start;
  
}

.s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image {
  box-sizing: border-box;
}



.s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 {
      --shg-aspect-ratio: calc(1080/1350); 
    }

    .s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image-container {
      position: relative;
    }

    .s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a4b866f-e90c-4c9a-8e8e-eccbaec471b5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-d0d11ebc-2d37-41ec-9144-153e64e18ec1 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 5%;
padding-right: 5%;
}

#s-99d0cb55-d6ca-47b6-86c5-738e2dcba50c {
  border-style: solid;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
letter-spacing: 3px;
color: rgba(0, 0, 0, 1);
}
#s-99d0cb55-d6ca-47b6-86c5-738e2dcba50c:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-99d0cb55-d6ca-47b6-86c5-738e2dcba50c:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-99d0cb55-d6ca-47b6-86c5-738e2dcba50c-root {
    text-align: center;
  }


#s-99d0cb55-d6ca-47b6-86c5-738e2dcba50c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  font-weight: 700;
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-99d0cb55-d6ca-47b6-86c5-738e2dcba50c-root {
    text-align: center;
  }


#s-99d0cb55-d6ca-47b6-86c5-738e2dcba50c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  font-weight: 700;
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-99d0cb55-d6ca-47b6-86c5-738e2dcba50c-root {
    text-align: center;
  }


#s-99d0cb55-d6ca-47b6-86c5-738e2dcba50c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  font-weight: 700;
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-99d0cb55-d6ca-47b6-86c5-738e2dcba50c-root {
    text-align: center;
  }


#s-99d0cb55-d6ca-47b6-86c5-738e2dcba50c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  font-weight: 700;
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-99d0cb55-d6ca-47b6-86c5-738e2dcba50c-root {
    text-align: center;
  }


#s-99d0cb55-d6ca-47b6-86c5-738e2dcba50c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  font-weight: 700;
  
  
  display:  inline-block ;
}
}
#s-d9c0e043-d3bf-4bf5-bf7f-f872ea6c34c5 {
  margin-left: auto;
margin-right: auto;
padding-top: 25px;
padding-left: 45%;
padding-right: 45%;
}

#s-d9c0e043-d3bf-4bf5-bf7f-f872ea6c34c5 hr {
  border-top: 2px solid #ddd;
}

#s-703b0994-f066-4950-a3d6-e9976d59bb5b {
  margin-left: auto;
margin-right: auto;
padding-left: 0%;
padding-right: 0%;
min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 1200px){#s-703b0994-f066-4950-a3d6-e9976d59bb5b {
  padding-left: 25%;
padding-right: 25%;
background-color: rgba(255, 255, 255, 1);
}
}@media (min-width: 992px) and (max-width: 1199px){#s-703b0994-f066-4950-a3d6-e9976d59bb5b {
  padding-left: 10%;
padding-right: 10%;
}
}







#s-703b0994-f066-4950-a3d6-e9976d59bb5b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-703b0994-f066-4950-a3d6-e9976d59bb5b.shg-box.shg-c {
  justify-content: center;
}

#s-5455b854-99a2-40cc-a2c8-c117218be50c {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-29dd57eb-8a87-4085-bc8e-58fc55c3026a {
  margin-left: auto;
margin-right: auto;
padding-top: 50px;
padding-left: 5%;
padding-bottom: 50px;
padding-right: 5%;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 992px) and (max-width: 1199px){#s-29dd57eb-8a87-4085-bc8e-58fc55c3026a {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-29dd57eb-8a87-4085-bc8e-58fc55c3026a {
  display: none;
}
#s-29dd57eb-8a87-4085-bc8e-58fc55c3026a, #wrap-s-29dd57eb-8a87-4085-bc8e-58fc55c3026a, #wrap-content-s-29dd57eb-8a87-4085-bc8e-58fc55c3026a { display: none !important; }}@media (max-width: 767px){#s-29dd57eb-8a87-4085-bc8e-58fc55c3026a {
  display: none;
}
#s-29dd57eb-8a87-4085-bc8e-58fc55c3026a, #wrap-s-29dd57eb-8a87-4085-bc8e-58fc55c3026a, #wrap-content-s-29dd57eb-8a87-4085-bc8e-58fc55c3026a { display: none !important; }}







#s-29dd57eb-8a87-4085-bc8e-58fc55c3026a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-29dd57eb-8a87-4085-bc8e-58fc55c3026a.shg-box.shg-c {
  justify-content: center;
}

#s-50827697-6bf1-4f45-8962-1e6e30d72080 {
  margin-left: auto;
margin-right: auto;
padding-bottom: 0px;
}

#s-ffe355f8-4776-46db-ac1d-8af177052098 {
  margin-left: auto;
margin-right: auto;
padding-left: 6%;
padding-bottom: 25px;
padding-right: 6%;
}

#s-4d5082a3-6193-4fd9-b103-cb36d8fd5d9e {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
}

/* Duplicated Styles are also in Category dynamic.css.liquid - keep them in sync */

#slider-v3-s-4d5082a3-6193-4fd9-b103-cb36d8fd5d9e {
  --swiper-pagination-color: rgba(255, 255, 255, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(255, 255, 255, 1) !important;
  --swiper-pagination-bullet-active-color: rgba(113, 113, 113, 1) !important;
  --arrow-button-size: 35px !important;
  --swiper-pagination-bullet-size: 14px !important;
  
}

#slider-v3-s-4d5082a3-6193-4fd9-b103-cb36d8fd5d9e > .swiper-button-prev,
#slider-v3-s-4d5082a3-6193-4fd9-b103-cb36d8fd5d9e > .swiper-button-next {
  
}

#slider-v3-s-4d5082a3-6193-4fd9-b103-cb36d8fd5d9e > .swiper-button-prev svg,
#slider-v3-s-4d5082a3-6193-4fd9-b103-cb36d8fd5d9e > .swiper-button-next svg {
  fill: rgba(255, 255, 255, 1) !important;
  stroke: rgba(255, 255, 255, 1) !important;
  
}

#slider-v3-s-4d5082a3-6193-4fd9-b103-cb36d8fd5d9e > .swiper-button-prev {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-4d5082a3-6193-4fd9-b103-cb36d8fd5d9e > .swiper-button-next {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-4d5082a3-6193-4fd9-b103-cb36d8fd5d9e > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-4d5082a3-6193-4fd9-b103-cb36d8fd5d9e .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-4d5082a3-6193-4fd9-b103-cb36d8fd5d9e .swiper-pagination-bullet-active {
  background-color: rgba(113, 113, 113, 1) !important;
  width: calc(14px * 1) !important;
  height: 14px !important;
  border-radius:  50px  !important;
}

#slider-v3-s-4d5082a3-6193-4fd9-b103-cb36d8fd5d9e .swiper-pagination {
  position:  initial ;
  display: flex;
  margin-top:  8px ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}

#s-aa0339fc-6581-4029-b4ac-970f35c3772a {
  margin-left: auto;
margin-right: auto;
padding-left: 5%;
padding-right: 5%;
}

@media (min-width: 0px) {
[id="s-aa0339fc-6581-4029-b4ac-970f35c3772a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-aa0339fc-6581-4029-b4ac-970f35c3772a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-aa0339fc-6581-4029-b4ac-970f35c3772a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-aa0339fc-6581-4029-b4ac-970f35c3772a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-ad68eec4-14cc-473e-9011-93547dae0e2b {
  margin-left: auto;
margin-right: auto;
min-height: 200px;
max-width: 200px;
aspect-ratio: 1/1;
text-align: center;
}

#s-ad68eec4-14cc-473e-9011-93547dae0e2b {
  margin: 0 !important;
  overflow: visible;
}

#s-ad68eec4-14cc-473e-9011-93547dae0e2b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ad68eec4-14cc-473e-9011-93547dae0e2b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ad68eec4-14cc-473e-9011-93547dae0e2b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ad68eec4-14cc-473e-9011-93547dae0e2b img.shogun-image {
  /* Add background color handling */
  
}

#s-ad68eec4-14cc-473e-9011-93547dae0e2b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ad68eec4-14cc-473e-9011-93547dae0e2b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ad68eec4-14cc-473e-9011-93547dae0e2b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ad68eec4-14cc-473e-9011-93547dae0e2b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ad68eec4-14cc-473e-9011-93547dae0e2b img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 200px;
    max-height: 200px;
  }



  img.s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image {
    
    
    min-height: 200px;
    max-height: 200px;
  }


.s-ad68eec4-14cc-473e-9011-93547dae0e2b .shogun-image-content {
  
    justify-content: center;
  
}

.s-ad68eec4-14cc-473e-9011-93547dae0e2b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image {
  box-sizing: border-box;
}



.s-ad68eec4-14cc-473e-9011-93547dae0e2b img.shogun-image {
  min-height: 200px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-ad68eec4-14cc-473e-9011-93547dae0e2b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image-container {
      position: relative;
    }

    .s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ad68eec4-14cc-473e-9011-93547dae0e2b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 200px;
      max-width: 200px;
    }
  }

@media (min-width: 1200px){#s-ad68eec4-14cc-473e-9011-93547dae0e2b {
  margin: 0 !important;
  overflow: visible;
}

#s-ad68eec4-14cc-473e-9011-93547dae0e2b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ad68eec4-14cc-473e-9011-93547dae0e2b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ad68eec4-14cc-473e-9011-93547dae0e2b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ad68eec4-14cc-473e-9011-93547dae0e2b img.shogun-image {
  /* Add background color handling */
  
}

#s-ad68eec4-14cc-473e-9011-93547dae0e2b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ad68eec4-14cc-473e-9011-93547dae0e2b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ad68eec4-14cc-473e-9011-93547dae0e2b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ad68eec4-14cc-473e-9011-93547dae0e2b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ad68eec4-14cc-473e-9011-93547dae0e2b img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 200px;
    max-height: 200px;
  }



  img.s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image {
    
    
    min-height: 200px;
    max-height: 200px;
  }


.s-ad68eec4-14cc-473e-9011-93547dae0e2b .shogun-image-content {
  
    justify-content: center;
  
}

.s-ad68eec4-14cc-473e-9011-93547dae0e2b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image {
  box-sizing: border-box;
}



.s-ad68eec4-14cc-473e-9011-93547dae0e2b img.shogun-image {
  min-height: 200px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-ad68eec4-14cc-473e-9011-93547dae0e2b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image-container {
      position: relative;
    }

    .s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ad68eec4-14cc-473e-9011-93547dae0e2b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 200px;
      max-width: 200px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-ad68eec4-14cc-473e-9011-93547dae0e2b {
  margin: 0 !important;
  overflow: visible;
}

#s-ad68eec4-14cc-473e-9011-93547dae0e2b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ad68eec4-14cc-473e-9011-93547dae0e2b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ad68eec4-14cc-473e-9011-93547dae0e2b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ad68eec4-14cc-473e-9011-93547dae0e2b img.shogun-image {
  /* Add background color handling */
  
}

#s-ad68eec4-14cc-473e-9011-93547dae0e2b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ad68eec4-14cc-473e-9011-93547dae0e2b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ad68eec4-14cc-473e-9011-93547dae0e2b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ad68eec4-14cc-473e-9011-93547dae0e2b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ad68eec4-14cc-473e-9011-93547dae0e2b img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 200px;
    max-height: 200px;
  }



  img.s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image {
    
    
    min-height: 200px;
    max-height: 200px;
  }


.s-ad68eec4-14cc-473e-9011-93547dae0e2b .shogun-image-content {
  
    justify-content: center;
  
}

.s-ad68eec4-14cc-473e-9011-93547dae0e2b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image {
  box-sizing: border-box;
}



.s-ad68eec4-14cc-473e-9011-93547dae0e2b img.shogun-image {
  min-height: 200px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-ad68eec4-14cc-473e-9011-93547dae0e2b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image-container {
      position: relative;
    }

    .s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ad68eec4-14cc-473e-9011-93547dae0e2b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 200px;
      max-width: 200px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-ad68eec4-14cc-473e-9011-93547dae0e2b {
  margin: 0 !important;
  overflow: visible;
}

#s-ad68eec4-14cc-473e-9011-93547dae0e2b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ad68eec4-14cc-473e-9011-93547dae0e2b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ad68eec4-14cc-473e-9011-93547dae0e2b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ad68eec4-14cc-473e-9011-93547dae0e2b img.shogun-image {
  /* Add background color handling */
  
}

#s-ad68eec4-14cc-473e-9011-93547dae0e2b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ad68eec4-14cc-473e-9011-93547dae0e2b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ad68eec4-14cc-473e-9011-93547dae0e2b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ad68eec4-14cc-473e-9011-93547dae0e2b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ad68eec4-14cc-473e-9011-93547dae0e2b img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 200px;
    max-height: 200px;
  }



  img.s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image {
    
    
    min-height: 200px;
    max-height: 200px;
  }


.s-ad68eec4-14cc-473e-9011-93547dae0e2b .shogun-image-content {
  
    justify-content: center;
  
}

.s-ad68eec4-14cc-473e-9011-93547dae0e2b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image {
  box-sizing: border-box;
}



.s-ad68eec4-14cc-473e-9011-93547dae0e2b img.shogun-image {
  min-height: 200px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-ad68eec4-14cc-473e-9011-93547dae0e2b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image-container {
      position: relative;
    }

    .s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ad68eec4-14cc-473e-9011-93547dae0e2b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 200px;
      max-width: 200px;
    }
  }

}@media (max-width: 767px){#s-ad68eec4-14cc-473e-9011-93547dae0e2b {
  margin: 0 !important;
  overflow: visible;
}

#s-ad68eec4-14cc-473e-9011-93547dae0e2b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ad68eec4-14cc-473e-9011-93547dae0e2b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ad68eec4-14cc-473e-9011-93547dae0e2b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ad68eec4-14cc-473e-9011-93547dae0e2b img.shogun-image {
  /* Add background color handling */
  
}

#s-ad68eec4-14cc-473e-9011-93547dae0e2b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ad68eec4-14cc-473e-9011-93547dae0e2b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ad68eec4-14cc-473e-9011-93547dae0e2b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ad68eec4-14cc-473e-9011-93547dae0e2b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ad68eec4-14cc-473e-9011-93547dae0e2b img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 200px;
    max-height: 200px;
  }



  img.s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image {
    
    
    min-height: 200px;
    max-height: 200px;
  }


.s-ad68eec4-14cc-473e-9011-93547dae0e2b .shogun-image-content {
  
    justify-content: center;
  
}

.s-ad68eec4-14cc-473e-9011-93547dae0e2b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image {
  box-sizing: border-box;
}



.s-ad68eec4-14cc-473e-9011-93547dae0e2b img.shogun-image {
  min-height: 200px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-ad68eec4-14cc-473e-9011-93547dae0e2b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image-container {
      position: relative;
    }

    .s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ad68eec4-14cc-473e-9011-93547dae0e2b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ad68eec4-14cc-473e-9011-93547dae0e2b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 200px;
      max-width: 200px;
    }
  }

}
#s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 {
  margin-left: auto;
margin-right: auto;
min-height: 200px;
max-width: 200px;
aspect-ratio: 1/1;
text-align: center;
}

#s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 {
  margin: 0 !important;
  overflow: visible;
}

#s-25ffb558-dadb-4f68-b191-4e32fc7cacc8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 img.shogun-image {
  /* Add background color handling */
  
}

#s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 200px;
    max-height: 200px;
  }



  img.s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image {
    
    
    min-height: 200px;
    max-height: 200px;
  }


.s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image {
  box-sizing: border-box;
}



.s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 img.shogun-image {
  min-height: 200px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image-container {
      position: relative;
    }

    .s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 200px;
      max-width: 200px;
    }
  }

@media (min-width: 1200px){#s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 {
  margin: 0 !important;
  overflow: visible;
}

#s-25ffb558-dadb-4f68-b191-4e32fc7cacc8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 img.shogun-image {
  /* Add background color handling */
  
}

#s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 200px;
    max-height: 200px;
  }



  img.s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image {
    
    
    min-height: 200px;
    max-height: 200px;
  }


.s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image {
  box-sizing: border-box;
}



.s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 img.shogun-image {
  min-height: 200px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image-container {
      position: relative;
    }

    .s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 200px;
      max-width: 200px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 {
  margin: 0 !important;
  overflow: visible;
}

#s-25ffb558-dadb-4f68-b191-4e32fc7cacc8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 img.shogun-image {
  /* Add background color handling */
  
}

#s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 200px;
    max-height: 200px;
  }



  img.s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image {
    
    
    min-height: 200px;
    max-height: 200px;
  }


.s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image {
  box-sizing: border-box;
}



.s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 img.shogun-image {
  min-height: 200px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image-container {
      position: relative;
    }

    .s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 200px;
      max-width: 200px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 {
  margin: 0 !important;
  overflow: visible;
}

#s-25ffb558-dadb-4f68-b191-4e32fc7cacc8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 img.shogun-image {
  /* Add background color handling */
  
}

#s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 200px;
    max-height: 200px;
  }



  img.s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image {
    
    
    min-height: 200px;
    max-height: 200px;
  }


.s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image {
  box-sizing: border-box;
}



.s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 img.shogun-image {
  min-height: 200px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image-container {
      position: relative;
    }

    .s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 200px;
      max-width: 200px;
    }
  }

}@media (max-width: 767px){#s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 {
  margin: 0 !important;
  overflow: visible;
}

#s-25ffb558-dadb-4f68-b191-4e32fc7cacc8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 img.shogun-image {
  /* Add background color handling */
  
}

#s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 200px;
    max-height: 200px;
  }



  img.s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image {
    
    
    min-height: 200px;
    max-height: 200px;
  }


.s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image {
  box-sizing: border-box;
}



.s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 img.shogun-image {
  min-height: 200px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image-container {
      position: relative;
    }

    .s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-25ffb558-dadb-4f68-b191-4e32fc7cacc8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-25ffb558-dadb-4f68-b191-4e32fc7cacc8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 200px;
      max-width: 200px;
    }
  }

}
#s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 {
  margin-left: auto;
margin-right: auto;
min-height: 200px;
max-width: 200px;
aspect-ratio: 1/1;
text-align: center;
}

#s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 {
  margin: 0 !important;
  overflow: visible;
}

#s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 img.shogun-image {
  /* Add background color handling */
  
}

#s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 200px;
    max-height: 200px;
  }



  img.s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image {
    
    
    min-height: 200px;
    max-height: 200px;
  }


.s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image {
  box-sizing: border-box;
}



.s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 img.shogun-image {
  min-height: 200px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image-container {
      position: relative;
    }

    .s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 200px;
      max-width: 200px;
    }
  }

@media (min-width: 1200px){#s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 {
  margin: 0 !important;
  overflow: visible;
}

#s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 img.shogun-image {
  /* Add background color handling */
  
}

#s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 200px;
    max-height: 200px;
  }



  img.s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image {
    
    
    min-height: 200px;
    max-height: 200px;
  }


.s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image {
  box-sizing: border-box;
}



.s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 img.shogun-image {
  min-height: 200px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image-container {
      position: relative;
    }

    .s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 200px;
      max-width: 200px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 {
  margin: 0 !important;
  overflow: visible;
}

#s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 img.shogun-image {
  /* Add background color handling */
  
}

#s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 200px;
    max-height: 200px;
  }



  img.s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image {
    
    
    min-height: 200px;
    max-height: 200px;
  }


.s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image {
  box-sizing: border-box;
}



.s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 img.shogun-image {
  min-height: 200px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image-container {
      position: relative;
    }

    .s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 200px;
      max-width: 200px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 {
  margin: 0 !important;
  overflow: visible;
}

#s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 img.shogun-image {
  /* Add background color handling */
  
}

#s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 200px;
    max-height: 200px;
  }



  img.s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image {
    
    
    min-height: 200px;
    max-height: 200px;
  }


.s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image {
  box-sizing: border-box;
}



.s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 img.shogun-image {
  min-height: 200px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image-container {
      position: relative;
    }

    .s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 200px;
      max-width: 200px;
    }
  }

}@media (max-width: 767px){#s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 {
  margin: 0 !important;
  overflow: visible;
}

#s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 img.shogun-image {
  /* Add background color handling */
  
}

#s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 200px;
    max-height: 200px;
  }



  img.s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image {
    
    
    min-height: 200px;
    max-height: 200px;
  }


.s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image {
  box-sizing: border-box;
}



.s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 img.shogun-image {
  min-height: 200px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image-container {
      position: relative;
    }

    .s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ba41bb9a-d2b4-41c6-8387-72b78e2a2e67 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 200px;
      max-width: 200px;
    }
  }

}
#s-57c8a5ea-04a4-47f9-b311-0d17c652e2b0 {
  margin-left: auto;
margin-right: auto;
padding-left: 5%;
padding-right: 5%;
}

@media (min-width: 0px) {
[id="s-57c8a5ea-04a4-47f9-b311-0d17c652e2b0"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-57c8a5ea-04a4-47f9-b311-0d17c652e2b0"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-57c8a5ea-04a4-47f9-b311-0d17c652e2b0"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-57c8a5ea-04a4-47f9-b311-0d17c652e2b0"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-9d9ceaf0-c01e-4e47-8034-988729e84d76 {
  margin-left: auto;
margin-right: auto;
max-width: 200px;
aspect-ratio: 1/1;
text-align: center;
}

#s-9d9ceaf0-c01e-4e47-8034-988729e84d76 {
  margin: 0 !important;
  overflow: visible;
}

#s-9d9ceaf0-c01e-4e47-8034-988729e84d76-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9d9ceaf0-c01e-4e47-8034-988729e84d76 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9d9ceaf0-c01e-4e47-8034-988729e84d76 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9d9ceaf0-c01e-4e47-8034-988729e84d76 img.shogun-image {
  /* Add background color handling */
  
}

#s-9d9ceaf0-c01e-4e47-8034-988729e84d76 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9d9ceaf0-c01e-4e47-8034-988729e84d76 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9d9ceaf0-c01e-4e47-8034-988729e84d76 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9d9ceaf0-c01e-4e47-8034-988729e84d76 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9d9ceaf0-c01e-4e47-8034-988729e84d76 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-9d9ceaf0-c01e-4e47-8034-988729e84d76 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image {
  box-sizing: border-box;
}



.s-9d9ceaf0-c01e-4e47-8034-988729e84d76 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9d9ceaf0-c01e-4e47-8034-988729e84d76 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image-container {
      position: relative;
    }

    .s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9d9ceaf0-c01e-4e47-8034-988729e84d76 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

@media (min-width: 1200px){#s-9d9ceaf0-c01e-4e47-8034-988729e84d76 {
  margin: 0 !important;
  overflow: visible;
}

#s-9d9ceaf0-c01e-4e47-8034-988729e84d76-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9d9ceaf0-c01e-4e47-8034-988729e84d76 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9d9ceaf0-c01e-4e47-8034-988729e84d76 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9d9ceaf0-c01e-4e47-8034-988729e84d76 img.shogun-image {
  /* Add background color handling */
  
}

#s-9d9ceaf0-c01e-4e47-8034-988729e84d76 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9d9ceaf0-c01e-4e47-8034-988729e84d76 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9d9ceaf0-c01e-4e47-8034-988729e84d76 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9d9ceaf0-c01e-4e47-8034-988729e84d76 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9d9ceaf0-c01e-4e47-8034-988729e84d76 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-9d9ceaf0-c01e-4e47-8034-988729e84d76 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image {
  box-sizing: border-box;
}



.s-9d9ceaf0-c01e-4e47-8034-988729e84d76 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9d9ceaf0-c01e-4e47-8034-988729e84d76 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image-container {
      position: relative;
    }

    .s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9d9ceaf0-c01e-4e47-8034-988729e84d76 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-9d9ceaf0-c01e-4e47-8034-988729e84d76 {
  margin: 0 !important;
  overflow: visible;
}

#s-9d9ceaf0-c01e-4e47-8034-988729e84d76-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9d9ceaf0-c01e-4e47-8034-988729e84d76 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9d9ceaf0-c01e-4e47-8034-988729e84d76 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9d9ceaf0-c01e-4e47-8034-988729e84d76 img.shogun-image {
  /* Add background color handling */
  
}

#s-9d9ceaf0-c01e-4e47-8034-988729e84d76 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9d9ceaf0-c01e-4e47-8034-988729e84d76 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9d9ceaf0-c01e-4e47-8034-988729e84d76 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9d9ceaf0-c01e-4e47-8034-988729e84d76 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9d9ceaf0-c01e-4e47-8034-988729e84d76 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-9d9ceaf0-c01e-4e47-8034-988729e84d76 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image {
  box-sizing: border-box;
}



.s-9d9ceaf0-c01e-4e47-8034-988729e84d76 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9d9ceaf0-c01e-4e47-8034-988729e84d76 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image-container {
      position: relative;
    }

    .s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9d9ceaf0-c01e-4e47-8034-988729e84d76 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-9d9ceaf0-c01e-4e47-8034-988729e84d76 {
  margin: 0 !important;
  overflow: visible;
}

#s-9d9ceaf0-c01e-4e47-8034-988729e84d76-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9d9ceaf0-c01e-4e47-8034-988729e84d76 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9d9ceaf0-c01e-4e47-8034-988729e84d76 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9d9ceaf0-c01e-4e47-8034-988729e84d76 img.shogun-image {
  /* Add background color handling */
  
}

#s-9d9ceaf0-c01e-4e47-8034-988729e84d76 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9d9ceaf0-c01e-4e47-8034-988729e84d76 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9d9ceaf0-c01e-4e47-8034-988729e84d76 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9d9ceaf0-c01e-4e47-8034-988729e84d76 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9d9ceaf0-c01e-4e47-8034-988729e84d76 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-9d9ceaf0-c01e-4e47-8034-988729e84d76 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image {
  box-sizing: border-box;
}



.s-9d9ceaf0-c01e-4e47-8034-988729e84d76 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9d9ceaf0-c01e-4e47-8034-988729e84d76 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image-container {
      position: relative;
    }

    .s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9d9ceaf0-c01e-4e47-8034-988729e84d76 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (max-width: 767px){#s-9d9ceaf0-c01e-4e47-8034-988729e84d76 {
  margin: 0 !important;
  overflow: visible;
}

#s-9d9ceaf0-c01e-4e47-8034-988729e84d76-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9d9ceaf0-c01e-4e47-8034-988729e84d76 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9d9ceaf0-c01e-4e47-8034-988729e84d76 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9d9ceaf0-c01e-4e47-8034-988729e84d76 img.shogun-image {
  /* Add background color handling */
  
}

#s-9d9ceaf0-c01e-4e47-8034-988729e84d76 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9d9ceaf0-c01e-4e47-8034-988729e84d76 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9d9ceaf0-c01e-4e47-8034-988729e84d76 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9d9ceaf0-c01e-4e47-8034-988729e84d76 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9d9ceaf0-c01e-4e47-8034-988729e84d76 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-9d9ceaf0-c01e-4e47-8034-988729e84d76 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image {
  box-sizing: border-box;
}



.s-9d9ceaf0-c01e-4e47-8034-988729e84d76 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9d9ceaf0-c01e-4e47-8034-988729e84d76 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image-container {
      position: relative;
    }

    .s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9d9ceaf0-c01e-4e47-8034-988729e84d76.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9d9ceaf0-c01e-4e47-8034-988729e84d76 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}
#s-dbd0f935-5252-4407-9e92-29bb84282f83 {
  margin-left: auto;
margin-right: auto;
max-width: 200px;
aspect-ratio: 1/1;
text-align: center;
}

#s-dbd0f935-5252-4407-9e92-29bb84282f83 {
  margin: 0 !important;
  overflow: visible;
}

#s-dbd0f935-5252-4407-9e92-29bb84282f83-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dbd0f935-5252-4407-9e92-29bb84282f83 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dbd0f935-5252-4407-9e92-29bb84282f83 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dbd0f935-5252-4407-9e92-29bb84282f83 img.shogun-image {
  /* Add background color handling */
  
}

#s-dbd0f935-5252-4407-9e92-29bb84282f83 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dbd0f935-5252-4407-9e92-29bb84282f83 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dbd0f935-5252-4407-9e92-29bb84282f83 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dbd0f935-5252-4407-9e92-29bb84282f83 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dbd0f935-5252-4407-9e92-29bb84282f83 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-dbd0f935-5252-4407-9e92-29bb84282f83 .shogun-image-content {
  
    justify-content: center;
  
}

.s-dbd0f935-5252-4407-9e92-29bb84282f83.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image {
  box-sizing: border-box;
}



.s-dbd0f935-5252-4407-9e92-29bb84282f83 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dbd0f935-5252-4407-9e92-29bb84282f83 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image-container {
      position: relative;
    }

    .s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dbd0f935-5252-4407-9e92-29bb84282f83 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

@media (min-width: 1200px){#s-dbd0f935-5252-4407-9e92-29bb84282f83 {
  margin: 0 !important;
  overflow: visible;
}

#s-dbd0f935-5252-4407-9e92-29bb84282f83-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dbd0f935-5252-4407-9e92-29bb84282f83 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dbd0f935-5252-4407-9e92-29bb84282f83 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dbd0f935-5252-4407-9e92-29bb84282f83 img.shogun-image {
  /* Add background color handling */
  
}

#s-dbd0f935-5252-4407-9e92-29bb84282f83 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dbd0f935-5252-4407-9e92-29bb84282f83 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dbd0f935-5252-4407-9e92-29bb84282f83 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dbd0f935-5252-4407-9e92-29bb84282f83 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dbd0f935-5252-4407-9e92-29bb84282f83 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-dbd0f935-5252-4407-9e92-29bb84282f83 .shogun-image-content {
  
    justify-content: center;
  
}

.s-dbd0f935-5252-4407-9e92-29bb84282f83.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image {
  box-sizing: border-box;
}



.s-dbd0f935-5252-4407-9e92-29bb84282f83 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dbd0f935-5252-4407-9e92-29bb84282f83 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image-container {
      position: relative;
    }

    .s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dbd0f935-5252-4407-9e92-29bb84282f83 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-dbd0f935-5252-4407-9e92-29bb84282f83 {
  margin: 0 !important;
  overflow: visible;
}

#s-dbd0f935-5252-4407-9e92-29bb84282f83-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dbd0f935-5252-4407-9e92-29bb84282f83 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dbd0f935-5252-4407-9e92-29bb84282f83 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dbd0f935-5252-4407-9e92-29bb84282f83 img.shogun-image {
  /* Add background color handling */
  
}

#s-dbd0f935-5252-4407-9e92-29bb84282f83 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dbd0f935-5252-4407-9e92-29bb84282f83 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dbd0f935-5252-4407-9e92-29bb84282f83 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dbd0f935-5252-4407-9e92-29bb84282f83 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dbd0f935-5252-4407-9e92-29bb84282f83 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-dbd0f935-5252-4407-9e92-29bb84282f83 .shogun-image-content {
  
    justify-content: center;
  
}

.s-dbd0f935-5252-4407-9e92-29bb84282f83.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image {
  box-sizing: border-box;
}



.s-dbd0f935-5252-4407-9e92-29bb84282f83 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dbd0f935-5252-4407-9e92-29bb84282f83 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image-container {
      position: relative;
    }

    .s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dbd0f935-5252-4407-9e92-29bb84282f83 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-dbd0f935-5252-4407-9e92-29bb84282f83 {
  margin: 0 !important;
  overflow: visible;
}

#s-dbd0f935-5252-4407-9e92-29bb84282f83-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dbd0f935-5252-4407-9e92-29bb84282f83 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dbd0f935-5252-4407-9e92-29bb84282f83 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dbd0f935-5252-4407-9e92-29bb84282f83 img.shogun-image {
  /* Add background color handling */
  
}

#s-dbd0f935-5252-4407-9e92-29bb84282f83 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dbd0f935-5252-4407-9e92-29bb84282f83 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dbd0f935-5252-4407-9e92-29bb84282f83 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dbd0f935-5252-4407-9e92-29bb84282f83 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dbd0f935-5252-4407-9e92-29bb84282f83 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-dbd0f935-5252-4407-9e92-29bb84282f83 .shogun-image-content {
  
    justify-content: center;
  
}

.s-dbd0f935-5252-4407-9e92-29bb84282f83.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image {
  box-sizing: border-box;
}



.s-dbd0f935-5252-4407-9e92-29bb84282f83 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dbd0f935-5252-4407-9e92-29bb84282f83 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image-container {
      position: relative;
    }

    .s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dbd0f935-5252-4407-9e92-29bb84282f83 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (max-width: 767px){#s-dbd0f935-5252-4407-9e92-29bb84282f83 {
  margin: 0 !important;
  overflow: visible;
}

#s-dbd0f935-5252-4407-9e92-29bb84282f83-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dbd0f935-5252-4407-9e92-29bb84282f83 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dbd0f935-5252-4407-9e92-29bb84282f83 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dbd0f935-5252-4407-9e92-29bb84282f83 img.shogun-image {
  /* Add background color handling */
  
}

#s-dbd0f935-5252-4407-9e92-29bb84282f83 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dbd0f935-5252-4407-9e92-29bb84282f83 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dbd0f935-5252-4407-9e92-29bb84282f83 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dbd0f935-5252-4407-9e92-29bb84282f83 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dbd0f935-5252-4407-9e92-29bb84282f83 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-dbd0f935-5252-4407-9e92-29bb84282f83 .shogun-image-content {
  
    justify-content: center;
  
}

.s-dbd0f935-5252-4407-9e92-29bb84282f83.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image {
  box-sizing: border-box;
}



.s-dbd0f935-5252-4407-9e92-29bb84282f83 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dbd0f935-5252-4407-9e92-29bb84282f83 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image-container {
      position: relative;
    }

    .s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dbd0f935-5252-4407-9e92-29bb84282f83.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dbd0f935-5252-4407-9e92-29bb84282f83 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}
#s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 {
  margin-left: auto;
margin-right: auto;
max-width: 200px;
aspect-ratio: 1/1;
text-align: center;
}

#s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 {
  margin: 0 !important;
  overflow: visible;
}

#s-e86e24b1-ee5a-4274-a265-70e4dea8bde4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 img.shogun-image {
  /* Add background color handling */
  
}

#s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image {
  box-sizing: border-box;
}



.s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image-container {
      position: relative;
    }

    .s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

@media (min-width: 1200px){#s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 {
  margin: 0 !important;
  overflow: visible;
}

#s-e86e24b1-ee5a-4274-a265-70e4dea8bde4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 img.shogun-image {
  /* Add background color handling */
  
}

#s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image {
  box-sizing: border-box;
}



.s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image-container {
      position: relative;
    }

    .s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 {
  margin: 0 !important;
  overflow: visible;
}

#s-e86e24b1-ee5a-4274-a265-70e4dea8bde4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 img.shogun-image {
  /* Add background color handling */
  
}

#s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image {
  box-sizing: border-box;
}



.s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image-container {
      position: relative;
    }

    .s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 {
  margin: 0 !important;
  overflow: visible;
}

#s-e86e24b1-ee5a-4274-a265-70e4dea8bde4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 img.shogun-image {
  /* Add background color handling */
  
}

#s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image {
  box-sizing: border-box;
}



.s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image-container {
      position: relative;
    }

    .s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (max-width: 767px){#s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 {
  margin: 0 !important;
  overflow: visible;
}

#s-e86e24b1-ee5a-4274-a265-70e4dea8bde4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 img.shogun-image {
  /* Add background color handling */
  
}

#s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image {
  box-sizing: border-box;
}



.s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image-container {
      position: relative;
    }

    .s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e86e24b1-ee5a-4274-a265-70e4dea8bde4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e86e24b1-ee5a-4274-a265-70e4dea8bde4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}
#s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d {
  margin-left: auto;
margin-right: auto;
max-width: 200px;
aspect-ratio: 1/1;
text-align: center;
}

#s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d {
  margin: 0 !important;
  overflow: visible;
}

#s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d img.shogun-image {
  /* Add background color handling */
  
}

#s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d .shogun-image-content {
  
    justify-content: center;
  
}

.s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image {
  box-sizing: border-box;
}



.s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image-container {
      position: relative;
    }

    .s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

@media (min-width: 1200px){#s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d {
  margin: 0 !important;
  overflow: visible;
}

#s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d img.shogun-image {
  /* Add background color handling */
  
}

#s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d .shogun-image-content {
  
    justify-content: center;
  
}

.s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image {
  box-sizing: border-box;
}



.s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image-container {
      position: relative;
    }

    .s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d {
  margin: 0 !important;
  overflow: visible;
}

#s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d img.shogun-image {
  /* Add background color handling */
  
}

#s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d .shogun-image-content {
  
    justify-content: center;
  
}

.s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image {
  box-sizing: border-box;
}



.s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image-container {
      position: relative;
    }

    .s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d {
  margin: 0 !important;
  overflow: visible;
}

#s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d img.shogun-image {
  /* Add background color handling */
  
}

#s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d .shogun-image-content {
  
    justify-content: center;
  
}

.s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image {
  box-sizing: border-box;
}



.s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image-container {
      position: relative;
    }

    .s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (max-width: 767px){#s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d {
  margin: 0 !important;
  overflow: visible;
}

#s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d img.shogun-image {
  /* Add background color handling */
  
}

#s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d .shogun-image-content {
  
    justify-content: center;
  
}

.s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image {
  box-sizing: border-box;
}



.s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image-container {
      position: relative;
    }

    .s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d4063e90-4782-4d1e-80ad-cfcdc3a4829d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}
#s-83a59cf6-71e4-46e7-8ce9-0170bd9c95fa {
  margin-left: auto;
margin-right: auto;
padding-top: 50px;
padding-left: 5%;
padding-bottom: 50px;
padding-right: 5%;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 1200px){#s-83a59cf6-71e4-46e7-8ce9-0170bd9c95fa {
  display: none;
}
#s-83a59cf6-71e4-46e7-8ce9-0170bd9c95fa, #wrap-s-83a59cf6-71e4-46e7-8ce9-0170bd9c95fa, #wrap-content-s-83a59cf6-71e4-46e7-8ce9-0170bd9c95fa { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-83a59cf6-71e4-46e7-8ce9-0170bd9c95fa {
  display: none;
}
#s-83a59cf6-71e4-46e7-8ce9-0170bd9c95fa, #wrap-s-83a59cf6-71e4-46e7-8ce9-0170bd9c95fa, #wrap-content-s-83a59cf6-71e4-46e7-8ce9-0170bd9c95fa { display: none !important; }}







#s-83a59cf6-71e4-46e7-8ce9-0170bd9c95fa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-83a59cf6-71e4-46e7-8ce9-0170bd9c95fa.shg-box.shg-c {
  justify-content: center;
}

#s-8cb8826b-eaba-41d4-87d4-0890470b717f {
  margin-left: auto;
margin-right: auto;
padding-bottom: 0px;
}

#s-45f10528-d3df-4038-ab45-1ccc0bea0521 {
  margin-left: auto;
margin-right: auto;
padding-left: 17%;
padding-bottom: 25px;
padding-right: 17%;
}

#s-3d021bb7-acfb-4eb1-bbf0-f59b36638ac4 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
}

/* Duplicated Styles are also in Category dynamic.css.liquid - keep them in sync */

#slider-v3-s-3d021bb7-acfb-4eb1-bbf0-f59b36638ac4 {
  --swiper-pagination-color: rgba(255, 255, 255, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(255, 255, 255, 1) !important;
  --swiper-pagination-bullet-active-color: rgba(113, 113, 113, 1) !important;
  --arrow-button-size: 35px !important;
  --swiper-pagination-bullet-size: 14px !important;
  
}

#slider-v3-s-3d021bb7-acfb-4eb1-bbf0-f59b36638ac4 > .swiper-button-prev,
#slider-v3-s-3d021bb7-acfb-4eb1-bbf0-f59b36638ac4 > .swiper-button-next {
  
}

#slider-v3-s-3d021bb7-acfb-4eb1-bbf0-f59b36638ac4 > .swiper-button-prev svg,
#slider-v3-s-3d021bb7-acfb-4eb1-bbf0-f59b36638ac4 > .swiper-button-next svg {
  fill: rgba(255, 255, 255, 1) !important;
  stroke: rgba(255, 255, 255, 1) !important;
  
}

#slider-v3-s-3d021bb7-acfb-4eb1-bbf0-f59b36638ac4 > .swiper-button-prev {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-3d021bb7-acfb-4eb1-bbf0-f59b36638ac4 > .swiper-button-next {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-3d021bb7-acfb-4eb1-bbf0-f59b36638ac4 > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-3d021bb7-acfb-4eb1-bbf0-f59b36638ac4 .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-3d021bb7-acfb-4eb1-bbf0-f59b36638ac4 .swiper-pagination-bullet-active {
  background-color: rgba(113, 113, 113, 1) !important;
  width: calc(14px * 1) !important;
  height: 14px !important;
  border-radius:  50px  !important;
}

#slider-v3-s-3d021bb7-acfb-4eb1-bbf0-f59b36638ac4 .swiper-pagination {
  position:  initial ;
  display: flex;
  margin-top:  8px ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}

#s-5bc6abfb-348a-4d86-943f-ae6ef39bdd9a {
  margin-left: auto;
margin-right: auto;
padding-left: 5%;
padding-right: 5%;
}

@media (min-width: 0px) {
[id="s-5bc6abfb-348a-4d86-943f-ae6ef39bdd9a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-5bc6abfb-348a-4d86-943f-ae6ef39bdd9a"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-5bc6abfb-348a-4d86-943f-ae6ef39bdd9a"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-5bc6abfb-348a-4d86-943f-ae6ef39bdd9a"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba {
  margin-left: auto;
margin-right: auto;
max-width: 200px;
aspect-ratio: 1/1;
text-align: center;
}

#s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba {
  margin: 0 !important;
  overflow: visible;
}

#s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba img.shogun-image {
  /* Add background color handling */
  
}

#s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba .shogun-image-content {
  
    justify-content: center;
  
}

.s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image {
  box-sizing: border-box;
}



.s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image-container {
      position: relative;
    }

    .s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

@media (min-width: 1200px){#s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba {
  margin: 0 !important;
  overflow: visible;
}

#s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba img.shogun-image {
  /* Add background color handling */
  
}

#s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba .shogun-image-content {
  
    justify-content: center;
  
}

.s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image {
  box-sizing: border-box;
}



.s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image-container {
      position: relative;
    }

    .s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba {
  margin: 0 !important;
  overflow: visible;
}

#s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba img.shogun-image {
  /* Add background color handling */
  
}

#s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba .shogun-image-content {
  
    justify-content: center;
  
}

.s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image {
  box-sizing: border-box;
}



.s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image-container {
      position: relative;
    }

    .s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba {
  margin: 0 !important;
  overflow: visible;
}

#s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba img.shogun-image {
  /* Add background color handling */
  
}

#s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba .shogun-image-content {
  
    justify-content: center;
  
}

.s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image {
  box-sizing: border-box;
}



.s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image-container {
      position: relative;
    }

    .s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (max-width: 767px){#s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba {
  margin: 0 !important;
  overflow: visible;
}

#s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba img.shogun-image {
  /* Add background color handling */
  
}

#s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba .shogun-image-content {
  
    justify-content: center;
  
}

.s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image {
  box-sizing: border-box;
}



.s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image-container {
      position: relative;
    }

    .s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2d6848e3-44ee-46a2-8744-e4c4a28a26ba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}
#s-4773615b-e0c5-4017-af36-a9147b878316 {
  margin-left: auto;
margin-right: auto;
max-width: 200px;
aspect-ratio: 1/1;
text-align: center;
}

#s-4773615b-e0c5-4017-af36-a9147b878316 {
  margin: 0 !important;
  overflow: visible;
}

#s-4773615b-e0c5-4017-af36-a9147b878316-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4773615b-e0c5-4017-af36-a9147b878316 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4773615b-e0c5-4017-af36-a9147b878316 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4773615b-e0c5-4017-af36-a9147b878316 img.shogun-image {
  /* Add background color handling */
  
}

#s-4773615b-e0c5-4017-af36-a9147b878316 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4773615b-e0c5-4017-af36-a9147b878316 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-4773615b-e0c5-4017-af36-a9147b878316 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4773615b-e0c5-4017-af36-a9147b878316 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4773615b-e0c5-4017-af36-a9147b878316 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-4773615b-e0c5-4017-af36-a9147b878316 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4773615b-e0c5-4017-af36-a9147b878316.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image {
  box-sizing: border-box;
}



.s-4773615b-e0c5-4017-af36-a9147b878316 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4773615b-e0c5-4017-af36-a9147b878316 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image-container {
      position: relative;
    }

    .s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4773615b-e0c5-4017-af36-a9147b878316 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

@media (min-width: 1200px){#s-4773615b-e0c5-4017-af36-a9147b878316 {
  margin: 0 !important;
  overflow: visible;
}

#s-4773615b-e0c5-4017-af36-a9147b878316-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4773615b-e0c5-4017-af36-a9147b878316 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4773615b-e0c5-4017-af36-a9147b878316 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4773615b-e0c5-4017-af36-a9147b878316 img.shogun-image {
  /* Add background color handling */
  
}

#s-4773615b-e0c5-4017-af36-a9147b878316 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4773615b-e0c5-4017-af36-a9147b878316 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-4773615b-e0c5-4017-af36-a9147b878316 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4773615b-e0c5-4017-af36-a9147b878316 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4773615b-e0c5-4017-af36-a9147b878316 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-4773615b-e0c5-4017-af36-a9147b878316 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4773615b-e0c5-4017-af36-a9147b878316.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image {
  box-sizing: border-box;
}



.s-4773615b-e0c5-4017-af36-a9147b878316 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4773615b-e0c5-4017-af36-a9147b878316 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image-container {
      position: relative;
    }

    .s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4773615b-e0c5-4017-af36-a9147b878316 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-4773615b-e0c5-4017-af36-a9147b878316 {
  margin: 0 !important;
  overflow: visible;
}

#s-4773615b-e0c5-4017-af36-a9147b878316-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4773615b-e0c5-4017-af36-a9147b878316 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4773615b-e0c5-4017-af36-a9147b878316 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4773615b-e0c5-4017-af36-a9147b878316 img.shogun-image {
  /* Add background color handling */
  
}

#s-4773615b-e0c5-4017-af36-a9147b878316 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4773615b-e0c5-4017-af36-a9147b878316 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-4773615b-e0c5-4017-af36-a9147b878316 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4773615b-e0c5-4017-af36-a9147b878316 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4773615b-e0c5-4017-af36-a9147b878316 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-4773615b-e0c5-4017-af36-a9147b878316 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4773615b-e0c5-4017-af36-a9147b878316.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image {
  box-sizing: border-box;
}



.s-4773615b-e0c5-4017-af36-a9147b878316 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4773615b-e0c5-4017-af36-a9147b878316 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image-container {
      position: relative;
    }

    .s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4773615b-e0c5-4017-af36-a9147b878316 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-4773615b-e0c5-4017-af36-a9147b878316 {
  margin: 0 !important;
  overflow: visible;
}

#s-4773615b-e0c5-4017-af36-a9147b878316-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4773615b-e0c5-4017-af36-a9147b878316 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4773615b-e0c5-4017-af36-a9147b878316 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4773615b-e0c5-4017-af36-a9147b878316 img.shogun-image {
  /* Add background color handling */
  
}

#s-4773615b-e0c5-4017-af36-a9147b878316 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4773615b-e0c5-4017-af36-a9147b878316 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-4773615b-e0c5-4017-af36-a9147b878316 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4773615b-e0c5-4017-af36-a9147b878316 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4773615b-e0c5-4017-af36-a9147b878316 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-4773615b-e0c5-4017-af36-a9147b878316 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4773615b-e0c5-4017-af36-a9147b878316.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image {
  box-sizing: border-box;
}



.s-4773615b-e0c5-4017-af36-a9147b878316 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4773615b-e0c5-4017-af36-a9147b878316 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image-container {
      position: relative;
    }

    .s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4773615b-e0c5-4017-af36-a9147b878316 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (max-width: 767px){#s-4773615b-e0c5-4017-af36-a9147b878316 {
  margin: 0 !important;
  overflow: visible;
}

#s-4773615b-e0c5-4017-af36-a9147b878316-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4773615b-e0c5-4017-af36-a9147b878316 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4773615b-e0c5-4017-af36-a9147b878316 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4773615b-e0c5-4017-af36-a9147b878316 img.shogun-image {
  /* Add background color handling */
  
}

#s-4773615b-e0c5-4017-af36-a9147b878316 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4773615b-e0c5-4017-af36-a9147b878316 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-4773615b-e0c5-4017-af36-a9147b878316 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4773615b-e0c5-4017-af36-a9147b878316 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4773615b-e0c5-4017-af36-a9147b878316 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-4773615b-e0c5-4017-af36-a9147b878316 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4773615b-e0c5-4017-af36-a9147b878316.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image {
  box-sizing: border-box;
}



.s-4773615b-e0c5-4017-af36-a9147b878316 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4773615b-e0c5-4017-af36-a9147b878316 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image-container {
      position: relative;
    }

    .s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4773615b-e0c5-4017-af36-a9147b878316.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4773615b-e0c5-4017-af36-a9147b878316 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}
#s-b2628661-d703-4334-9860-a7f514a9e360 {
  margin-left: auto;
margin-right: auto;
max-width: 200px;
aspect-ratio: 1/1;
text-align: center;
}

#s-b2628661-d703-4334-9860-a7f514a9e360 {
  margin: 0 !important;
  overflow: visible;
}

#s-b2628661-d703-4334-9860-a7f514a9e360-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b2628661-d703-4334-9860-a7f514a9e360 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b2628661-d703-4334-9860-a7f514a9e360 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b2628661-d703-4334-9860-a7f514a9e360 img.shogun-image {
  /* Add background color handling */
  
}

#s-b2628661-d703-4334-9860-a7f514a9e360 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b2628661-d703-4334-9860-a7f514a9e360 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b2628661-d703-4334-9860-a7f514a9e360 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b2628661-d703-4334-9860-a7f514a9e360 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b2628661-d703-4334-9860-a7f514a9e360 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-b2628661-d703-4334-9860-a7f514a9e360 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b2628661-d703-4334-9860-a7f514a9e360.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image {
  box-sizing: border-box;
}



.s-b2628661-d703-4334-9860-a7f514a9e360 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b2628661-d703-4334-9860-a7f514a9e360 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image-container {
      position: relative;
    }

    .s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b2628661-d703-4334-9860-a7f514a9e360 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

@media (min-width: 1200px){#s-b2628661-d703-4334-9860-a7f514a9e360 {
  margin: 0 !important;
  overflow: visible;
}

#s-b2628661-d703-4334-9860-a7f514a9e360-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b2628661-d703-4334-9860-a7f514a9e360 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b2628661-d703-4334-9860-a7f514a9e360 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b2628661-d703-4334-9860-a7f514a9e360 img.shogun-image {
  /* Add background color handling */
  
}

#s-b2628661-d703-4334-9860-a7f514a9e360 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b2628661-d703-4334-9860-a7f514a9e360 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b2628661-d703-4334-9860-a7f514a9e360 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b2628661-d703-4334-9860-a7f514a9e360 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b2628661-d703-4334-9860-a7f514a9e360 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-b2628661-d703-4334-9860-a7f514a9e360 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b2628661-d703-4334-9860-a7f514a9e360.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image {
  box-sizing: border-box;
}



.s-b2628661-d703-4334-9860-a7f514a9e360 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b2628661-d703-4334-9860-a7f514a9e360 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image-container {
      position: relative;
    }

    .s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b2628661-d703-4334-9860-a7f514a9e360 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-b2628661-d703-4334-9860-a7f514a9e360 {
  margin: 0 !important;
  overflow: visible;
}

#s-b2628661-d703-4334-9860-a7f514a9e360-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b2628661-d703-4334-9860-a7f514a9e360 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b2628661-d703-4334-9860-a7f514a9e360 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b2628661-d703-4334-9860-a7f514a9e360 img.shogun-image {
  /* Add background color handling */
  
}

#s-b2628661-d703-4334-9860-a7f514a9e360 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b2628661-d703-4334-9860-a7f514a9e360 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b2628661-d703-4334-9860-a7f514a9e360 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b2628661-d703-4334-9860-a7f514a9e360 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b2628661-d703-4334-9860-a7f514a9e360 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-b2628661-d703-4334-9860-a7f514a9e360 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b2628661-d703-4334-9860-a7f514a9e360.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image {
  box-sizing: border-box;
}



.s-b2628661-d703-4334-9860-a7f514a9e360 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b2628661-d703-4334-9860-a7f514a9e360 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image-container {
      position: relative;
    }

    .s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b2628661-d703-4334-9860-a7f514a9e360 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-b2628661-d703-4334-9860-a7f514a9e360 {
  margin: 0 !important;
  overflow: visible;
}

#s-b2628661-d703-4334-9860-a7f514a9e360-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b2628661-d703-4334-9860-a7f514a9e360 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b2628661-d703-4334-9860-a7f514a9e360 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b2628661-d703-4334-9860-a7f514a9e360 img.shogun-image {
  /* Add background color handling */
  
}

#s-b2628661-d703-4334-9860-a7f514a9e360 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b2628661-d703-4334-9860-a7f514a9e360 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b2628661-d703-4334-9860-a7f514a9e360 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b2628661-d703-4334-9860-a7f514a9e360 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b2628661-d703-4334-9860-a7f514a9e360 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-b2628661-d703-4334-9860-a7f514a9e360 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b2628661-d703-4334-9860-a7f514a9e360.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image {
  box-sizing: border-box;
}



.s-b2628661-d703-4334-9860-a7f514a9e360 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b2628661-d703-4334-9860-a7f514a9e360 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image-container {
      position: relative;
    }

    .s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b2628661-d703-4334-9860-a7f514a9e360 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (max-width: 767px){#s-b2628661-d703-4334-9860-a7f514a9e360 {
  margin: 0 !important;
  overflow: visible;
}

#s-b2628661-d703-4334-9860-a7f514a9e360-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b2628661-d703-4334-9860-a7f514a9e360 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b2628661-d703-4334-9860-a7f514a9e360 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b2628661-d703-4334-9860-a7f514a9e360 img.shogun-image {
  /* Add background color handling */
  
}

#s-b2628661-d703-4334-9860-a7f514a9e360 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b2628661-d703-4334-9860-a7f514a9e360 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b2628661-d703-4334-9860-a7f514a9e360 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b2628661-d703-4334-9860-a7f514a9e360 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b2628661-d703-4334-9860-a7f514a9e360 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-b2628661-d703-4334-9860-a7f514a9e360 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b2628661-d703-4334-9860-a7f514a9e360.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image {
  box-sizing: border-box;
}



.s-b2628661-d703-4334-9860-a7f514a9e360 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b2628661-d703-4334-9860-a7f514a9e360 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image-container {
      position: relative;
    }

    .s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b2628661-d703-4334-9860-a7f514a9e360.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b2628661-d703-4334-9860-a7f514a9e360 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}
#s-2375bf25-6020-4b61-a9ef-f54d88f90c33 {
  margin-left: auto;
margin-right: auto;
padding-left: 5%;
padding-right: 5%;
}

@media (min-width: 0px) {
[id="s-2375bf25-6020-4b61-a9ef-f54d88f90c33"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-2375bf25-6020-4b61-a9ef-f54d88f90c33"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-2375bf25-6020-4b61-a9ef-f54d88f90c33"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-2375bf25-6020-4b61-a9ef-f54d88f90c33"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-e16b8138-9b8c-44eb-ad32-3997997aeb41 {
  margin-left: auto;
margin-right: auto;
max-width: 200px;
aspect-ratio: 1/1;
text-align: center;
}

#s-e16b8138-9b8c-44eb-ad32-3997997aeb41 {
  margin: 0 !important;
  overflow: visible;
}

#s-e16b8138-9b8c-44eb-ad32-3997997aeb41-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e16b8138-9b8c-44eb-ad32-3997997aeb41 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e16b8138-9b8c-44eb-ad32-3997997aeb41 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e16b8138-9b8c-44eb-ad32-3997997aeb41 img.shogun-image {
  /* Add background color handling */
  
}

#s-e16b8138-9b8c-44eb-ad32-3997997aeb41 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e16b8138-9b8c-44eb-ad32-3997997aeb41 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e16b8138-9b8c-44eb-ad32-3997997aeb41 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e16b8138-9b8c-44eb-ad32-3997997aeb41 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e16b8138-9b8c-44eb-ad32-3997997aeb41 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-e16b8138-9b8c-44eb-ad32-3997997aeb41 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image {
  box-sizing: border-box;
}



.s-e16b8138-9b8c-44eb-ad32-3997997aeb41 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e16b8138-9b8c-44eb-ad32-3997997aeb41 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image-container {
      position: relative;
    }

    .s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e16b8138-9b8c-44eb-ad32-3997997aeb41 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

@media (min-width: 1200px){#s-e16b8138-9b8c-44eb-ad32-3997997aeb41 {
  margin: 0 !important;
  overflow: visible;
}

#s-e16b8138-9b8c-44eb-ad32-3997997aeb41-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e16b8138-9b8c-44eb-ad32-3997997aeb41 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e16b8138-9b8c-44eb-ad32-3997997aeb41 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e16b8138-9b8c-44eb-ad32-3997997aeb41 img.shogun-image {
  /* Add background color handling */
  
}

#s-e16b8138-9b8c-44eb-ad32-3997997aeb41 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e16b8138-9b8c-44eb-ad32-3997997aeb41 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e16b8138-9b8c-44eb-ad32-3997997aeb41 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e16b8138-9b8c-44eb-ad32-3997997aeb41 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e16b8138-9b8c-44eb-ad32-3997997aeb41 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-e16b8138-9b8c-44eb-ad32-3997997aeb41 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image {
  box-sizing: border-box;
}



.s-e16b8138-9b8c-44eb-ad32-3997997aeb41 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e16b8138-9b8c-44eb-ad32-3997997aeb41 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image-container {
      position: relative;
    }

    .s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e16b8138-9b8c-44eb-ad32-3997997aeb41 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-e16b8138-9b8c-44eb-ad32-3997997aeb41 {
  margin: 0 !important;
  overflow: visible;
}

#s-e16b8138-9b8c-44eb-ad32-3997997aeb41-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e16b8138-9b8c-44eb-ad32-3997997aeb41 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e16b8138-9b8c-44eb-ad32-3997997aeb41 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e16b8138-9b8c-44eb-ad32-3997997aeb41 img.shogun-image {
  /* Add background color handling */
  
}

#s-e16b8138-9b8c-44eb-ad32-3997997aeb41 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e16b8138-9b8c-44eb-ad32-3997997aeb41 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e16b8138-9b8c-44eb-ad32-3997997aeb41 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e16b8138-9b8c-44eb-ad32-3997997aeb41 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e16b8138-9b8c-44eb-ad32-3997997aeb41 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-e16b8138-9b8c-44eb-ad32-3997997aeb41 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image {
  box-sizing: border-box;
}



.s-e16b8138-9b8c-44eb-ad32-3997997aeb41 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e16b8138-9b8c-44eb-ad32-3997997aeb41 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image-container {
      position: relative;
    }

    .s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e16b8138-9b8c-44eb-ad32-3997997aeb41 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-e16b8138-9b8c-44eb-ad32-3997997aeb41 {
  margin: 0 !important;
  overflow: visible;
}

#s-e16b8138-9b8c-44eb-ad32-3997997aeb41-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e16b8138-9b8c-44eb-ad32-3997997aeb41 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e16b8138-9b8c-44eb-ad32-3997997aeb41 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e16b8138-9b8c-44eb-ad32-3997997aeb41 img.shogun-image {
  /* Add background color handling */
  
}

#s-e16b8138-9b8c-44eb-ad32-3997997aeb41 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e16b8138-9b8c-44eb-ad32-3997997aeb41 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e16b8138-9b8c-44eb-ad32-3997997aeb41 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e16b8138-9b8c-44eb-ad32-3997997aeb41 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e16b8138-9b8c-44eb-ad32-3997997aeb41 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-e16b8138-9b8c-44eb-ad32-3997997aeb41 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image {
  box-sizing: border-box;
}



.s-e16b8138-9b8c-44eb-ad32-3997997aeb41 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e16b8138-9b8c-44eb-ad32-3997997aeb41 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image-container {
      position: relative;
    }

    .s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e16b8138-9b8c-44eb-ad32-3997997aeb41 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (max-width: 767px){#s-e16b8138-9b8c-44eb-ad32-3997997aeb41 {
  margin: 0 !important;
  overflow: visible;
}

#s-e16b8138-9b8c-44eb-ad32-3997997aeb41-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e16b8138-9b8c-44eb-ad32-3997997aeb41 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e16b8138-9b8c-44eb-ad32-3997997aeb41 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e16b8138-9b8c-44eb-ad32-3997997aeb41 img.shogun-image {
  /* Add background color handling */
  
}

#s-e16b8138-9b8c-44eb-ad32-3997997aeb41 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e16b8138-9b8c-44eb-ad32-3997997aeb41 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e16b8138-9b8c-44eb-ad32-3997997aeb41 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e16b8138-9b8c-44eb-ad32-3997997aeb41 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e16b8138-9b8c-44eb-ad32-3997997aeb41 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-e16b8138-9b8c-44eb-ad32-3997997aeb41 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image {
  box-sizing: border-box;
}



.s-e16b8138-9b8c-44eb-ad32-3997997aeb41 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e16b8138-9b8c-44eb-ad32-3997997aeb41 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image-container {
      position: relative;
    }

    .s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e16b8138-9b8c-44eb-ad32-3997997aeb41.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e16b8138-9b8c-44eb-ad32-3997997aeb41 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}
#s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 {
  margin-left: auto;
margin-right: auto;
max-width: 200px;
aspect-ratio: 1/1;
text-align: center;
}

#s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 {
  margin: 0 !important;
  overflow: visible;
}

#s-aa227ab6-2e77-43c8-9b27-cabf42ab7833-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 img.shogun-image {
  /* Add background color handling */
  
}

#s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 .shogun-image-content {
  
    justify-content: center;
  
}

.s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image {
  box-sizing: border-box;
}



.s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image-container {
      position: relative;
    }

    .s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

@media (min-width: 1200px){#s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 {
  margin: 0 !important;
  overflow: visible;
}

#s-aa227ab6-2e77-43c8-9b27-cabf42ab7833-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 img.shogun-image {
  /* Add background color handling */
  
}

#s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 .shogun-image-content {
  
    justify-content: center;
  
}

.s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image {
  box-sizing: border-box;
}



.s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image-container {
      position: relative;
    }

    .s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 {
  margin: 0 !important;
  overflow: visible;
}

#s-aa227ab6-2e77-43c8-9b27-cabf42ab7833-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 img.shogun-image {
  /* Add background color handling */
  
}

#s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 .shogun-image-content {
  
    justify-content: center;
  
}

.s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image {
  box-sizing: border-box;
}



.s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image-container {
      position: relative;
    }

    .s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 {
  margin: 0 !important;
  overflow: visible;
}

#s-aa227ab6-2e77-43c8-9b27-cabf42ab7833-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 img.shogun-image {
  /* Add background color handling */
  
}

#s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 .shogun-image-content {
  
    justify-content: center;
  
}

.s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image {
  box-sizing: border-box;
}



.s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image-container {
      position: relative;
    }

    .s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (max-width: 767px){#s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 {
  margin: 0 !important;
  overflow: visible;
}

#s-aa227ab6-2e77-43c8-9b27-cabf42ab7833-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 img.shogun-image {
  /* Add background color handling */
  
}

#s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 .shogun-image-content {
  
    justify-content: center;
  
}

.s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image {
  box-sizing: border-box;
}



.s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image-container {
      position: relative;
    }

    .s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-aa227ab6-2e77-43c8-9b27-cabf42ab7833.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-aa227ab6-2e77-43c8-9b27-cabf42ab7833 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}
#s-b2f660a0-743c-40d1-b813-5a3bc867fb8f {
  margin-left: auto;
margin-right: auto;
max-width: 200px;
aspect-ratio: 1/1;
text-align: center;
}

#s-b2f660a0-743c-40d1-b813-5a3bc867fb8f {
  margin: 0 !important;
  overflow: visible;
}

#s-b2f660a0-743c-40d1-b813-5a3bc867fb8f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b2f660a0-743c-40d1-b813-5a3bc867fb8f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b2f660a0-743c-40d1-b813-5a3bc867fb8f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b2f660a0-743c-40d1-b813-5a3bc867fb8f img.shogun-image {
  /* Add background color handling */
  
}

#s-b2f660a0-743c-40d1-b813-5a3bc867fb8f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b2f660a0-743c-40d1-b813-5a3bc867fb8f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b2f660a0-743c-40d1-b813-5a3bc867fb8f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b2f660a0-743c-40d1-b813-5a3bc867fb8f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b2f660a0-743c-40d1-b813-5a3bc867fb8f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-b2f660a0-743c-40d1-b813-5a3bc867fb8f .shogun-image-content {
  
    justify-content: center;
  
}

.s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image {
  box-sizing: border-box;
}



.s-b2f660a0-743c-40d1-b813-5a3bc867fb8f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b2f660a0-743c-40d1-b813-5a3bc867fb8f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image-container {
      position: relative;
    }

    .s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b2f660a0-743c-40d1-b813-5a3bc867fb8f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

@media (min-width: 1200px){#s-b2f660a0-743c-40d1-b813-5a3bc867fb8f {
  margin: 0 !important;
  overflow: visible;
}

#s-b2f660a0-743c-40d1-b813-5a3bc867fb8f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b2f660a0-743c-40d1-b813-5a3bc867fb8f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b2f660a0-743c-40d1-b813-5a3bc867fb8f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b2f660a0-743c-40d1-b813-5a3bc867fb8f img.shogun-image {
  /* Add background color handling */
  
}

#s-b2f660a0-743c-40d1-b813-5a3bc867fb8f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b2f660a0-743c-40d1-b813-5a3bc867fb8f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b2f660a0-743c-40d1-b813-5a3bc867fb8f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b2f660a0-743c-40d1-b813-5a3bc867fb8f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b2f660a0-743c-40d1-b813-5a3bc867fb8f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-b2f660a0-743c-40d1-b813-5a3bc867fb8f .shogun-image-content {
  
    justify-content: center;
  
}

.s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image {
  box-sizing: border-box;
}



.s-b2f660a0-743c-40d1-b813-5a3bc867fb8f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b2f660a0-743c-40d1-b813-5a3bc867fb8f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image-container {
      position: relative;
    }

    .s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b2f660a0-743c-40d1-b813-5a3bc867fb8f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-b2f660a0-743c-40d1-b813-5a3bc867fb8f {
  margin: 0 !important;
  overflow: visible;
}

#s-b2f660a0-743c-40d1-b813-5a3bc867fb8f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b2f660a0-743c-40d1-b813-5a3bc867fb8f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b2f660a0-743c-40d1-b813-5a3bc867fb8f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b2f660a0-743c-40d1-b813-5a3bc867fb8f img.shogun-image {
  /* Add background color handling */
  
}

#s-b2f660a0-743c-40d1-b813-5a3bc867fb8f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b2f660a0-743c-40d1-b813-5a3bc867fb8f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b2f660a0-743c-40d1-b813-5a3bc867fb8f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b2f660a0-743c-40d1-b813-5a3bc867fb8f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b2f660a0-743c-40d1-b813-5a3bc867fb8f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-b2f660a0-743c-40d1-b813-5a3bc867fb8f .shogun-image-content {
  
    justify-content: center;
  
}

.s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image {
  box-sizing: border-box;
}



.s-b2f660a0-743c-40d1-b813-5a3bc867fb8f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b2f660a0-743c-40d1-b813-5a3bc867fb8f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image-container {
      position: relative;
    }

    .s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b2f660a0-743c-40d1-b813-5a3bc867fb8f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-b2f660a0-743c-40d1-b813-5a3bc867fb8f {
  margin: 0 !important;
  overflow: visible;
}

#s-b2f660a0-743c-40d1-b813-5a3bc867fb8f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b2f660a0-743c-40d1-b813-5a3bc867fb8f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b2f660a0-743c-40d1-b813-5a3bc867fb8f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b2f660a0-743c-40d1-b813-5a3bc867fb8f img.shogun-image {
  /* Add background color handling */
  
}

#s-b2f660a0-743c-40d1-b813-5a3bc867fb8f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b2f660a0-743c-40d1-b813-5a3bc867fb8f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b2f660a0-743c-40d1-b813-5a3bc867fb8f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b2f660a0-743c-40d1-b813-5a3bc867fb8f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b2f660a0-743c-40d1-b813-5a3bc867fb8f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-b2f660a0-743c-40d1-b813-5a3bc867fb8f .shogun-image-content {
  
    justify-content: center;
  
}

.s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image {
  box-sizing: border-box;
}



.s-b2f660a0-743c-40d1-b813-5a3bc867fb8f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b2f660a0-743c-40d1-b813-5a3bc867fb8f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image-container {
      position: relative;
    }

    .s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b2f660a0-743c-40d1-b813-5a3bc867fb8f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (max-width: 767px){#s-b2f660a0-743c-40d1-b813-5a3bc867fb8f {
  margin: 0 !important;
  overflow: visible;
}

#s-b2f660a0-743c-40d1-b813-5a3bc867fb8f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b2f660a0-743c-40d1-b813-5a3bc867fb8f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b2f660a0-743c-40d1-b813-5a3bc867fb8f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b2f660a0-743c-40d1-b813-5a3bc867fb8f img.shogun-image {
  /* Add background color handling */
  
}

#s-b2f660a0-743c-40d1-b813-5a3bc867fb8f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b2f660a0-743c-40d1-b813-5a3bc867fb8f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b2f660a0-743c-40d1-b813-5a3bc867fb8f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b2f660a0-743c-40d1-b813-5a3bc867fb8f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b2f660a0-743c-40d1-b813-5a3bc867fb8f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-b2f660a0-743c-40d1-b813-5a3bc867fb8f .shogun-image-content {
  
    justify-content: center;
  
}

.s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image {
  box-sizing: border-box;
}



.s-b2f660a0-743c-40d1-b813-5a3bc867fb8f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b2f660a0-743c-40d1-b813-5a3bc867fb8f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image-container {
      position: relative;
    }

    .s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b2f660a0-743c-40d1-b813-5a3bc867fb8f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b2f660a0-743c-40d1-b813-5a3bc867fb8f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}
#s-97fcf8cc-09f6-4203-bd59-aae760af5499 {
  margin-left: auto;
margin-right: auto;
max-width: 200px;
aspect-ratio: 1/1;
text-align: center;
}

#s-97fcf8cc-09f6-4203-bd59-aae760af5499 {
  margin: 0 !important;
  overflow: visible;
}

#s-97fcf8cc-09f6-4203-bd59-aae760af5499-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-97fcf8cc-09f6-4203-bd59-aae760af5499 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-97fcf8cc-09f6-4203-bd59-aae760af5499 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-97fcf8cc-09f6-4203-bd59-aae760af5499 img.shogun-image {
  /* Add background color handling */
  
}

#s-97fcf8cc-09f6-4203-bd59-aae760af5499 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-97fcf8cc-09f6-4203-bd59-aae760af5499 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-97fcf8cc-09f6-4203-bd59-aae760af5499 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-97fcf8cc-09f6-4203-bd59-aae760af5499 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-97fcf8cc-09f6-4203-bd59-aae760af5499 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-97fcf8cc-09f6-4203-bd59-aae760af5499 .shogun-image-content {
  
    justify-content: center;
  
}

.s-97fcf8cc-09f6-4203-bd59-aae760af5499.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image {
  box-sizing: border-box;
}



.s-97fcf8cc-09f6-4203-bd59-aae760af5499 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-97fcf8cc-09f6-4203-bd59-aae760af5499 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image-container {
      position: relative;
    }

    .s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-97fcf8cc-09f6-4203-bd59-aae760af5499 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

@media (min-width: 1200px){#s-97fcf8cc-09f6-4203-bd59-aae760af5499 {
  margin: 0 !important;
  overflow: visible;
}

#s-97fcf8cc-09f6-4203-bd59-aae760af5499-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-97fcf8cc-09f6-4203-bd59-aae760af5499 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-97fcf8cc-09f6-4203-bd59-aae760af5499 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-97fcf8cc-09f6-4203-bd59-aae760af5499 img.shogun-image {
  /* Add background color handling */
  
}

#s-97fcf8cc-09f6-4203-bd59-aae760af5499 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-97fcf8cc-09f6-4203-bd59-aae760af5499 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-97fcf8cc-09f6-4203-bd59-aae760af5499 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-97fcf8cc-09f6-4203-bd59-aae760af5499 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-97fcf8cc-09f6-4203-bd59-aae760af5499 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-97fcf8cc-09f6-4203-bd59-aae760af5499 .shogun-image-content {
  
    justify-content: center;
  
}

.s-97fcf8cc-09f6-4203-bd59-aae760af5499.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image {
  box-sizing: border-box;
}



.s-97fcf8cc-09f6-4203-bd59-aae760af5499 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-97fcf8cc-09f6-4203-bd59-aae760af5499 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image-container {
      position: relative;
    }

    .s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-97fcf8cc-09f6-4203-bd59-aae760af5499 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-97fcf8cc-09f6-4203-bd59-aae760af5499 {
  margin: 0 !important;
  overflow: visible;
}

#s-97fcf8cc-09f6-4203-bd59-aae760af5499-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-97fcf8cc-09f6-4203-bd59-aae760af5499 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-97fcf8cc-09f6-4203-bd59-aae760af5499 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-97fcf8cc-09f6-4203-bd59-aae760af5499 img.shogun-image {
  /* Add background color handling */
  
}

#s-97fcf8cc-09f6-4203-bd59-aae760af5499 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-97fcf8cc-09f6-4203-bd59-aae760af5499 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-97fcf8cc-09f6-4203-bd59-aae760af5499 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-97fcf8cc-09f6-4203-bd59-aae760af5499 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-97fcf8cc-09f6-4203-bd59-aae760af5499 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-97fcf8cc-09f6-4203-bd59-aae760af5499 .shogun-image-content {
  
    justify-content: center;
  
}

.s-97fcf8cc-09f6-4203-bd59-aae760af5499.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image {
  box-sizing: border-box;
}



.s-97fcf8cc-09f6-4203-bd59-aae760af5499 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-97fcf8cc-09f6-4203-bd59-aae760af5499 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image-container {
      position: relative;
    }

    .s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-97fcf8cc-09f6-4203-bd59-aae760af5499 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-97fcf8cc-09f6-4203-bd59-aae760af5499 {
  margin: 0 !important;
  overflow: visible;
}

#s-97fcf8cc-09f6-4203-bd59-aae760af5499-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-97fcf8cc-09f6-4203-bd59-aae760af5499 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-97fcf8cc-09f6-4203-bd59-aae760af5499 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-97fcf8cc-09f6-4203-bd59-aae760af5499 img.shogun-image {
  /* Add background color handling */
  
}

#s-97fcf8cc-09f6-4203-bd59-aae760af5499 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-97fcf8cc-09f6-4203-bd59-aae760af5499 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-97fcf8cc-09f6-4203-bd59-aae760af5499 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-97fcf8cc-09f6-4203-bd59-aae760af5499 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-97fcf8cc-09f6-4203-bd59-aae760af5499 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-97fcf8cc-09f6-4203-bd59-aae760af5499 .shogun-image-content {
  
    justify-content: center;
  
}

.s-97fcf8cc-09f6-4203-bd59-aae760af5499.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image {
  box-sizing: border-box;
}



.s-97fcf8cc-09f6-4203-bd59-aae760af5499 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-97fcf8cc-09f6-4203-bd59-aae760af5499 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image-container {
      position: relative;
    }

    .s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-97fcf8cc-09f6-4203-bd59-aae760af5499 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}@media (max-width: 767px){#s-97fcf8cc-09f6-4203-bd59-aae760af5499 {
  margin: 0 !important;
  overflow: visible;
}

#s-97fcf8cc-09f6-4203-bd59-aae760af5499-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-97fcf8cc-09f6-4203-bd59-aae760af5499 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-97fcf8cc-09f6-4203-bd59-aae760af5499 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-97fcf8cc-09f6-4203-bd59-aae760af5499 img.shogun-image {
  /* Add background color handling */
  
}

#s-97fcf8cc-09f6-4203-bd59-aae760af5499 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-97fcf8cc-09f6-4203-bd59-aae760af5499 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-97fcf8cc-09f6-4203-bd59-aae760af5499 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-97fcf8cc-09f6-4203-bd59-aae760af5499 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-97fcf8cc-09f6-4203-bd59-aae760af5499 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 200px;
  }



  img.s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-97fcf8cc-09f6-4203-bd59-aae760af5499 .shogun-image-content {
  
    justify-content: center;
  
}

.s-97fcf8cc-09f6-4203-bd59-aae760af5499.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image {
  box-sizing: border-box;
}



.s-97fcf8cc-09f6-4203-bd59-aae760af5499 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-97fcf8cc-09f6-4203-bd59-aae760af5499 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image-container {
      position: relative;
    }

    .s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-97fcf8cc-09f6-4203-bd59-aae760af5499.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-97fcf8cc-09f6-4203-bd59-aae760af5499 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}
#s-f4668a61-3600-44e7-8845-b2c6c4c1c01a {
  margin-left: auto;
margin-right: auto;
padding-top: 25px;
padding-left: 45%;
padding-right: 45%;
}

#s-f4668a61-3600-44e7-8845-b2c6c4c1c01a hr {
  border-top: 2px solid #ddd;
}

#s-c3f8b140-66d9-457b-90be-715e973d1c50 {
  margin-left: auto;
margin-right: auto;
padding-left: 5%;
padding-bottom: 100px;
padding-right: 5%;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-c3f8b140-66d9-457b-90be-715e973d1c50 {
  display: none;
}
#s-c3f8b140-66d9-457b-90be-715e973d1c50, #wrap-s-c3f8b140-66d9-457b-90be-715e973d1c50, #wrap-content-s-c3f8b140-66d9-457b-90be-715e973d1c50 { display: none !important; }}@media (max-width: 767px){#s-c3f8b140-66d9-457b-90be-715e973d1c50 {
  display: none;
}
#s-c3f8b140-66d9-457b-90be-715e973d1c50, #wrap-s-c3f8b140-66d9-457b-90be-715e973d1c50, #wrap-content-s-c3f8b140-66d9-457b-90be-715e973d1c50 { display: none !important; }}







#s-c3f8b140-66d9-457b-90be-715e973d1c50 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c3f8b140-66d9-457b-90be-715e973d1c50.shg-box.shg-c {
  justify-content: center;
}

#s-53e7d96f-47b0-4352-82d5-900b1c3cedcc {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
}

#s-8e926b71-ef57-4216-a4b8-542948c6337d {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 14%;
padding-bottom: 50px;
padding-right: 14%;
}

#s-dcbceeb5-353b-4dd5-a09a-bb6f7b21bfe4 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
}

/* Duplicated Styles are also in Category dynamic.css.liquid - keep them in sync */

#slider-v3-s-dcbceeb5-353b-4dd5-a09a-bb6f7b21bfe4 {
  --swiper-pagination-color: rgba(113, 113, 113, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(113, 113, 113, 1) !important;
  --swiper-pagination-bullet-active-color: rgba(113, 113, 113, 1) !important;
  --arrow-button-size: 35px !important;
  --swiper-pagination-bullet-size: 14px !important;
  
}

#slider-v3-s-dcbceeb5-353b-4dd5-a09a-bb6f7b21bfe4 > .swiper-button-prev,
#slider-v3-s-dcbceeb5-353b-4dd5-a09a-bb6f7b21bfe4 > .swiper-button-next {
  
}

#slider-v3-s-dcbceeb5-353b-4dd5-a09a-bb6f7b21bfe4 > .swiper-button-prev svg,
#slider-v3-s-dcbceeb5-353b-4dd5-a09a-bb6f7b21bfe4 > .swiper-button-next svg {
  fill: rgba(113, 113, 113, 1) !important;
  stroke: rgba(113, 113, 113, 1) !important;
  
}

#slider-v3-s-dcbceeb5-353b-4dd5-a09a-bb6f7b21bfe4 > .swiper-button-prev {
  
  display:  none ;
  align-items: center;
}

#slider-v3-s-dcbceeb5-353b-4dd5-a09a-bb6f7b21bfe4 > .swiper-button-next {
  
  display:  none ;
  align-items: center;
}

#slider-v3-s-dcbceeb5-353b-4dd5-a09a-bb6f7b21bfe4 > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-dcbceeb5-353b-4dd5-a09a-bb6f7b21bfe4 .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-dcbceeb5-353b-4dd5-a09a-bb6f7b21bfe4 .swiper-pagination-bullet-active {
  background-color: rgba(113, 113, 113, 1) !important;
  width: calc(14px * 1) !important;
  height: 14px !important;
  border-radius:  50px  !important;
}

#slider-v3-s-dcbceeb5-353b-4dd5-a09a-bb6f7b21bfe4 .swiper-pagination {
  position:  initial ;
  display: flex;
  margin-top:  8px ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}

#s-b41e8473-627e-4d38-81a4-fde8ada42b74 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-b41e8473-627e-4d38-81a4-fde8ada42b74"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b41e8473-627e-4d38-81a4-fde8ada42b74"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 16.666666666666668px);
}

}

@media (min-width: 992px) {
[id="s-b41e8473-627e-4d38-81a4-fde8ada42b74"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 16.666666666666668px);
}

}

@media (min-width: 1200px) {
[id="s-b41e8473-627e-4d38-81a4-fde8ada42b74"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 16.666666666666668px);
}

}

#s-c844075d-6997-4d33-9bae-1a3b2d23bdd9 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(238, 238, 238, 1);
}








#s-c844075d-6997-4d33-9bae-1a3b2d23bdd9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c844075d-6997-4d33-9bae-1a3b2d23bdd9.shg-box.shg-c {
  justify-content: center;
}

#s-b182d7e2-40fe-4beb-90d1-d26e115d6564 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
background-color: rgba(238, 238, 238, 0);
}








#s-b182d7e2-40fe-4beb-90d1-d26e115d6564 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b182d7e2-40fe-4beb-90d1-d26e115d6564.shg-box.shg-c {
  justify-content: center;
}

#s-b6a365ca-42e4-49a0-9fed-f91e13298a3c {
  margin-left: auto;
margin-right: auto;
padding-top: 50px;
padding-left: 14%;
padding-bottom: 25px;
padding-right: 14%;
}

#s-feabb678-b064-4992-87a8-910d626f562b {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
background-color: rgba(238, 238, 238, 0);
}








#s-feabb678-b064-4992-87a8-910d626f562b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-feabb678-b064-4992-87a8-910d626f562b.shg-box.shg-c {
  justify-content: center;
}

#s-bd1e222b-0a7e-4c06-9c17-36e9852e10eb {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 14%;
padding-bottom: 25px;
padding-right: 14%;
}

#s-8a70b2c3-c464-457a-9768-6a914f3fa737 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
background-color: rgba(238, 238, 238, 0);
}








#s-8a70b2c3-c464-457a-9768-6a914f3fa737 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8a70b2c3-c464-457a-9768-6a914f3fa737.shg-box.shg-c {
  justify-content: center;
}

#s-58a8fc04-fa7e-4847-bcda-7f4beb2de076 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 14%;
padding-bottom: 50px;
padding-right: 14%;
}

#s-56d07c2f-b270-45f4-b60e-e9683cad999d {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(238, 238, 238, 1);
}








#s-56d07c2f-b270-45f4-b60e-e9683cad999d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-56d07c2f-b270-45f4-b60e-e9683cad999d.shg-box.shg-c {
  justify-content: center;
}

#s-ffb19600-3487-4b0f-becf-19138efb8af0 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
background-color: rgba(238, 238, 238, 0);
}








#s-ffb19600-3487-4b0f-becf-19138efb8af0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ffb19600-3487-4b0f-becf-19138efb8af0.shg-box.shg-c {
  justify-content: center;
}

#s-60c10560-4e04-425c-87f5-2435c7f88022 {
  margin-left: auto;
margin-right: auto;
padding-top: 50px;
padding-left: 14%;
padding-bottom: 25px;
padding-right: 14%;
}

#s-905b4f36-61ba-408a-b89f-0f935e658033 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
background-color: rgba(238, 238, 238, 0);
}








#s-905b4f36-61ba-408a-b89f-0f935e658033 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-905b4f36-61ba-408a-b89f-0f935e658033.shg-box.shg-c {
  justify-content: center;
}

#s-93273cef-680c-487a-a2eb-089289cdbca4 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 14%;
padding-bottom: 25px;
padding-right: 14%;
}

#s-8081769f-25b8-4e07-a684-6c124b263428 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
background-color: rgba(238, 238, 238, 1);
}








#s-8081769f-25b8-4e07-a684-6c124b263428 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8081769f-25b8-4e07-a684-6c124b263428.shg-box.shg-c {
  justify-content: center;
}

#s-9906b3c6-506e-46e3-81de-9ba4223f737c {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 14%;
padding-bottom: 50px;
padding-right: 14%;
}

#s-f4aa6ed0-48e0-46f5-a87b-a5127674efb3 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(238, 238, 238, 1);
}








#s-f4aa6ed0-48e0-46f5-a87b-a5127674efb3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f4aa6ed0-48e0-46f5-a87b-a5127674efb3.shg-box.shg-c {
  justify-content: center;
}

#s-db034e98-0e7e-400c-9e49-558c2132f4a0 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
background-color: rgba(238, 238, 238, 1);
}








#s-db034e98-0e7e-400c-9e49-558c2132f4a0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-db034e98-0e7e-400c-9e49-558c2132f4a0.shg-box.shg-c {
  justify-content: center;
}

#s-aa480004-cf04-454c-9ecc-90d01ca2870d {
  margin-left: auto;
margin-right: auto;
padding-top: 50px;
padding-left: 14%;
padding-bottom: 25px;
padding-right: 14%;
}

#s-ee041cff-58a2-48f4-a74f-069410039505 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
background-color: rgba(238, 238, 238, 1);
}








#s-ee041cff-58a2-48f4-a74f-069410039505 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ee041cff-58a2-48f4-a74f-069410039505.shg-box.shg-c {
  justify-content: center;
}

#s-c7876350-3fd0-4c1b-83fc-eb2def23625e {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 9%;
padding-bottom: 25px;
padding-right: 9%;
}

#s-81725def-55b7-46b3-8297-53dc7dd95d59 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
background-color: rgba(238, 238, 238, 1);
}








#s-81725def-55b7-46b3-8297-53dc7dd95d59 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-81725def-55b7-46b3-8297-53dc7dd95d59.shg-box.shg-c {
  justify-content: center;
}

#s-f27bc8c9-2d38-4ccd-90e2-01878224b564 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 14%;
padding-bottom: 50px;
padding-right: 14%;
}

#s-bbdae62b-fe00-4949-984c-6f5118faae3d {
  margin-left: auto;
margin-right: auto;
padding-left: 5%;
padding-right: 5%;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 1200px){#s-bbdae62b-fe00-4949-984c-6f5118faae3d {
  display: none;
}
#s-bbdae62b-fe00-4949-984c-6f5118faae3d, #wrap-s-bbdae62b-fe00-4949-984c-6f5118faae3d, #wrap-content-s-bbdae62b-fe00-4949-984c-6f5118faae3d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-bbdae62b-fe00-4949-984c-6f5118faae3d {
  display: none;
}
#s-bbdae62b-fe00-4949-984c-6f5118faae3d, #wrap-s-bbdae62b-fe00-4949-984c-6f5118faae3d, #wrap-content-s-bbdae62b-fe00-4949-984c-6f5118faae3d { display: none !important; }}







#s-bbdae62b-fe00-4949-984c-6f5118faae3d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bbdae62b-fe00-4949-984c-6f5118faae3d.shg-box.shg-c {
  justify-content: center;
}

#s-0d7cebcf-6043-40bb-993b-e773b7088f3f {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
}

#s-6792fc0f-01cb-4c98-b8e8-4c1a2fbe7918 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 7%;
padding-bottom: 15px;
padding-right: 7%;
}

#s-2ae7a869-25d8-476c-b71d-98fe3b7dc29f {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
}

/* Duplicated Styles are also in Category dynamic.css.liquid - keep them in sync */

#slider-v3-s-2ae7a869-25d8-476c-b71d-98fe3b7dc29f {
  --swiper-pagination-color: rgba(113, 113, 113, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(113, 113, 113, 1) !important;
  --swiper-pagination-bullet-active-color: rgba(113, 113, 113, 1) !important;
  --arrow-button-size: 35px !important;
  --swiper-pagination-bullet-size: 14px !important;
  
}

#slider-v3-s-2ae7a869-25d8-476c-b71d-98fe3b7dc29f > .swiper-button-prev,
#slider-v3-s-2ae7a869-25d8-476c-b71d-98fe3b7dc29f > .swiper-button-next {
  
}

#slider-v3-s-2ae7a869-25d8-476c-b71d-98fe3b7dc29f > .swiper-button-prev svg,
#slider-v3-s-2ae7a869-25d8-476c-b71d-98fe3b7dc29f > .swiper-button-next svg {
  fill: rgba(113, 113, 113, 1) !important;
  stroke: rgba(113, 113, 113, 1) !important;
  
}

#slider-v3-s-2ae7a869-25d8-476c-b71d-98fe3b7dc29f > .swiper-button-prev {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-2ae7a869-25d8-476c-b71d-98fe3b7dc29f > .swiper-button-next {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-2ae7a869-25d8-476c-b71d-98fe3b7dc29f > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-2ae7a869-25d8-476c-b71d-98fe3b7dc29f .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-2ae7a869-25d8-476c-b71d-98fe3b7dc29f .swiper-pagination-bullet-active {
  background-color: rgba(113, 113, 113, 1) !important;
  width: calc(14px * 1) !important;
  height: 14px !important;
  border-radius:  50px  !important;
}

#slider-v3-s-2ae7a869-25d8-476c-b71d-98fe3b7dc29f .swiper-pagination {
  position:  initial ;
  display: flex;
  margin-top:  8px ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}

#s-60b58810-f268-4af9-8cbe-595652289b08 {
  margin-left: auto;
margin-right: auto;
min-height: 450px;
background-color: rgba(238, 238, 238, 1);
}








#s-60b58810-f268-4af9-8cbe-595652289b08 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-60b58810-f268-4af9-8cbe-595652289b08.shg-box.shg-c {
  justify-content: center;
}

#s-f1c489ed-02c0-4708-b95c-9b1b00388d33 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
background-color: rgba(238, 238, 238, 1);
}








#s-f1c489ed-02c0-4708-b95c-9b1b00388d33 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f1c489ed-02c0-4708-b95c-9b1b00388d33.shg-box.shg-c {
  justify-content: center;
}

#s-845f723d-c3f2-4b84-9479-3fb3cbb2294f {
  margin-left: auto;
margin-right: auto;
padding-top: 50px;
padding-left: 14%;
padding-bottom: 25px;
padding-right: 14%;
}

#s-820dd792-72ae-4070-ae65-d5d9fc9734ad {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
background-color: rgba(238, 238, 238, 1);
}








#s-820dd792-72ae-4070-ae65-d5d9fc9734ad > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-820dd792-72ae-4070-ae65-d5d9fc9734ad.shg-box.shg-c {
  justify-content: center;
}

#s-8d09d6eb-9798-4d5e-a67b-d6627c111d7a {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 9%;
padding-bottom: 25px;
padding-right: 9%;
}

#s-c255101c-60d0-40f4-bb6c-ad7bb5f30596 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
background-color: rgba(238, 238, 238, 1);
}








#s-c255101c-60d0-40f4-bb6c-ad7bb5f30596 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c255101c-60d0-40f4-bb6c-ad7bb5f30596.shg-box.shg-c {
  justify-content: center;
}

#s-0f0cb1b7-121e-4d6e-92e5-1c2063f88c53 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 14%;
padding-bottom: 50px;
padding-right: 14%;
}

#s-7e0c92b5-dc4c-4329-a68e-80a5de414924 {
  margin-left: auto;
margin-right: auto;
min-height: 450px;
background-color: rgba(238, 238, 238, 1);
}








#s-7e0c92b5-dc4c-4329-a68e-80a5de414924 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7e0c92b5-dc4c-4329-a68e-80a5de414924.shg-box.shg-c {
  justify-content: center;
}

#s-41d73ef6-d76a-44eb-a40d-62e12e9754ec {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
background-color: rgba(238, 238, 238, 0);
}








#s-41d73ef6-d76a-44eb-a40d-62e12e9754ec > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-41d73ef6-d76a-44eb-a40d-62e12e9754ec.shg-box.shg-c {
  justify-content: center;
}

#s-5c7bb229-58f5-4634-a7eb-a4b68f79207f {
  margin-left: auto;
margin-right: auto;
padding-top: 50px;
padding-left: 14%;
padding-bottom: 25px;
padding-right: 14%;
}

#s-e3b23833-ee8d-4b12-9edb-99229bb850be {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
background-color: rgba(238, 238, 238, 0);
}








#s-e3b23833-ee8d-4b12-9edb-99229bb850be > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e3b23833-ee8d-4b12-9edb-99229bb850be.shg-box.shg-c {
  justify-content: center;
}

#s-62d26923-3ccb-403c-bee9-b9167609a002 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 14%;
padding-bottom: 25px;
padding-right: 14%;
}

#s-a895626b-9fdf-47b2-9e1f-63ec477461ec {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
background-color: rgba(238, 238, 238, 1);
}








#s-a895626b-9fdf-47b2-9e1f-63ec477461ec > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a895626b-9fdf-47b2-9e1f-63ec477461ec.shg-box.shg-c {
  justify-content: center;
}

#s-5e33feec-67e6-428f-9fe3-c43abf4a599d {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 14%;
padding-bottom: 50px;
padding-right: 14%;
}

#s-7d6166e9-97ab-495b-ad44-8eff01816091 {
  margin-left: auto;
margin-right: auto;
min-height: 450px;
background-color: rgba(238, 238, 238, 1);
}








#s-7d6166e9-97ab-495b-ad44-8eff01816091 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7d6166e9-97ab-495b-ad44-8eff01816091.shg-box.shg-c {
  justify-content: center;
}

#s-d80abcf8-2c87-4c1a-9886-6534ca5f304f {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
background-color: rgba(238, 238, 238, 0);
}








#s-d80abcf8-2c87-4c1a-9886-6534ca5f304f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d80abcf8-2c87-4c1a-9886-6534ca5f304f.shg-box.shg-c {
  justify-content: center;
}

#s-712a89bb-2d84-41d7-91b7-afa899d6543c {
  margin-left: auto;
margin-right: auto;
padding-top: 50px;
padding-left: 14%;
padding-bottom: 25px;
padding-right: 14%;
}

#s-7d73473e-5061-4206-a06a-4eca6cabc455 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
background-color: rgba(238, 238, 238, 0);
}








#s-7d73473e-5061-4206-a06a-4eca6cabc455 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7d73473e-5061-4206-a06a-4eca6cabc455.shg-box.shg-c {
  justify-content: center;
}

#s-fc646282-6ef5-4be7-ad0d-8fef2a22fd66 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 14%;
padding-bottom: 25px;
padding-right: 14%;
}

#s-f0d5ea9e-9f6f-49b3-b7d4-dfc4b1968864 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
background-color: rgba(238, 238, 238, 0);
}








#s-f0d5ea9e-9f6f-49b3-b7d4-dfc4b1968864 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f0d5ea9e-9f6f-49b3-b7d4-dfc4b1968864.shg-box.shg-c {
  justify-content: center;
}

#s-8187b565-24da-43bd-8103-ad7fbc503df6 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 14%;
padding-bottom: 50px;
padding-right: 14%;
}

/*
  $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;
  -webkit-user-select: none;
     -moz-user-select: none;
          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;
}

@charset "UTF-8";/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */:root{--animate-duration:1s;--animate-delay:1s;--animate-repeat:1}.animate__animated{animation-duration:1s;animation-duration:var(--animate-duration);animation-fill-mode:both}.animate__animated.animate__infinite{animation-iteration-count:infinite}.animate__animated.animate__repeat-1{animation-iteration-count:1;animation-iteration-count:var(--animate-repeat)}.animate__animated.animate__repeat-2{animation-iteration-count:2;animation-iteration-count:calc(var(--animate-repeat)*2)}.animate__animated.animate__repeat-3{animation-iteration-count:3;animation-iteration-count:calc(var(--animate-repeat)*3)}.animate__animated.animate__delay-1s{animation-delay:1s;animation-delay:var(--animate-delay)}.animate__animated.animate__delay-2s{animation-delay:2s;animation-delay:calc(var(--animate-delay)*2)}.animate__animated.animate__delay-3s{animation-delay:3s;animation-delay:calc(var(--animate-delay)*3)}.animate__animated.animate__delay-4s{animation-delay:4s;animation-delay:calc(var(--animate-delay)*4)}.animate__animated.animate__delay-5s{animation-delay:5s;animation-delay:calc(var(--animate-delay)*5)}.animate__animated.animate__faster{animation-duration:.5s;animation-duration:calc(var(--animate-duration)/2)}.animate__animated.animate__fast{animation-duration:.8s;animation-duration:calc(var(--animate-duration)*0.8)}.animate__animated.animate__slow{animation-duration:2s;animation-duration:calc(var(--animate-duration)*2)}.animate__animated.animate__slower{animation-duration:3s;animation-duration:calc(var(--animate-duration)*3)}@media (prefers-reduced-motion:reduce),print{.animate__animated{animation-duration:1ms!important;transition-duration:1ms!important;animation-iteration-count:1!important}.animate__animated[class*=Out]{opacity:0}}@keyframes bounce{0%,20%,53%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1);transform:translateZ(0)}40%,43%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-30px,0) scaleY(1.1)}70%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-15px,0) scaleY(1.05)}80%{transition-timing-function:cubic-bezier(.215,.61,.355,1);transform:translateZ(0) scaleY(.95)}90%{transform:translate3d(0,-4px,0) scaleY(1.02)}}.animate__bounce{animation-name:bounce;transform-origin:center bottom}@keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}.animate__flash{animation-name:flash}@keyframes pulse{0%{transform:scaleX(1)}50%{transform:scale3d(1.05,1.05,1.05)}to{transform:scaleX(1)}}.animate__pulse{animation-name:pulse;animation-timing-function:ease-in-out}@keyframes rubberBand{0%{transform:scaleX(1)}30%{transform:scale3d(1.25,.75,1)}40%{transform:scale3d(.75,1.25,1)}50%{transform:scale3d(1.15,.85,1)}65%{transform:scale3d(.95,1.05,1)}75%{transform:scale3d(1.05,.95,1)}to{transform:scaleX(1)}}.animate__rubberBand{animation-name:rubberBand}@keyframes shakeX{0%,to{transform:translateZ(0)}10%,30%,50%,70%,90%{transform:translate3d(-10px,0,0)}20%,40%,60%,80%{transform:translate3d(10px,0,0)}}.animate__shakeX{animation-name:shakeX}@keyframes shakeY{0%,to{transform:translateZ(0)}10%,30%,50%,70%,90%{transform:translate3d(0,-10px,0)}20%,40%,60%,80%{transform:translate3d(0,10px,0)}}.animate__shakeY{animation-name:shakeY}@keyframes headShake{0%{transform:translateX(0)}6.5%{transform:translateX(-6px) rotateY(-9deg)}18.5%{transform:translateX(5px) rotateY(7deg)}31.5%{transform:translateX(-3px) rotateY(-5deg)}43.5%{transform:translateX(2px) rotateY(3deg)}50%{transform:translateX(0)}}.animate__headShake{animation-timing-function:ease-in-out;animation-name:headShake}@keyframes swing{20%{transform:rotate(15deg)}40%{transform:rotate(-10deg)}60%{transform:rotate(5deg)}80%{transform:rotate(-5deg)}to{transform:rotate(0deg)}}.animate__swing{transform-origin:top center;animation-name:swing}@keyframes tada{0%{transform:scaleX(1)}10%,20%{transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{transform:scaleX(1)}}.animate__tada{animation-name:tada}@keyframes wobble{0%{transform:translateZ(0)}15%{transform:translate3d(-25%,0,0) rotate(-5deg)}30%{transform:translate3d(20%,0,0) rotate(3deg)}45%{transform:translate3d(-15%,0,0) rotate(-3deg)}60%{transform:translate3d(10%,0,0) rotate(2deg)}75%{transform:translate3d(-5%,0,0) rotate(-1deg)}to{transform:translateZ(0)}}.animate__wobble{animation-name:wobble}@keyframes jello{0%,11.1%,to{transform:translateZ(0)}22.2%{transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{transform:skewX(6.25deg) skewY(6.25deg)}44.4%{transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{transform:skewX(.390625deg) skewY(.390625deg)}88.8%{transform:skewX(-.1953125deg) skewY(-.1953125deg)}}.animate__jello{animation-name:jello;transform-origin:center}@keyframes heartBeat{0%{transform:scale(1)}14%{transform:scale(1.3)}28%{transform:scale(1)}42%{transform:scale(1.3)}70%{transform:scale(1)}}.animate__heartBeat{animation-name:heartBeat;animation-duration:1.3s;animation-duration:calc(var(--animate-duration)*1.3);animation-timing-function:ease-in-out}@keyframes backInDown{0%{transform:translateY(-1200px) scale(.7);opacity:.7}80%{transform:translateY(0) scale(.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInDown{animation-name:backInDown}@keyframes backInLeft{0%{transform:translateX(-2000px) scale(.7);opacity:.7}80%{transform:translateX(0) scale(.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInLeft{animation-name:backInLeft}@keyframes backInRight{0%{transform:translateX(2000px) scale(.7);opacity:.7}80%{transform:translateX(0) scale(.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInRight{animation-name:backInRight}@keyframes backInUp{0%{transform:translateY(1200px) scale(.7);opacity:.7}80%{transform:translateY(0) scale(.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInUp{animation-name:backInUp}@keyframes backOutDown{0%{transform:scale(1);opacity:1}20%{transform:translateY(0) scale(.7);opacity:.7}to{transform:translateY(700px) scale(.7);opacity:.7}}.animate__backOutDown{animation-name:backOutDown}@keyframes backOutLeft{0%{transform:scale(1);opacity:1}20%{transform:translateX(0) scale(.7);opacity:.7}to{transform:translateX(-2000px) scale(.7);opacity:.7}}.animate__backOutLeft{animation-name:backOutLeft}@keyframes backOutRight{0%{transform:scale(1);opacity:1}20%{transform:translateX(0) scale(.7);opacity:.7}to{transform:translateX(2000px) scale(.7);opacity:.7}}.animate__backOutRight{animation-name:backOutRight}@keyframes backOutUp{0%{transform:scale(1);opacity:1}20%{transform:translateY(0) scale(.7);opacity:.7}to{transform:translateY(-700px) scale(.7);opacity:.7}}.animate__backOutUp{animation-name:backOutUp}@keyframes bounceIn{0%,20%,40%,60%,80%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:scale3d(.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(.97,.97,.97)}to{opacity:1;transform:scaleX(1)}}.animate__bounceIn{animation-duration:.75s;animation-duration:calc(var(--animate-duration)*0.75);animation-name:bounceIn}@keyframes bounceInDown{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;transform:translate3d(0,25px,0) scaleY(.9)}75%{transform:translate3d(0,-10px,0) scaleY(.95)}90%{transform:translate3d(0,5px,0) scaleY(.985)}to{transform:translateZ(0)}}.animate__bounceInDown{animation-name:bounceInDown}@keyframes bounceInLeft{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;transform:translate3d(25px,0,0) scaleX(1)}75%{transform:translate3d(-10px,0,0) scaleX(.98)}90%{transform:translate3d(5px,0,0) scaleX(.995)}to{transform:translateZ(0)}}.animate__bounceInLeft{animation-name:bounceInLeft}@keyframes bounceInRight{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;transform:translate3d(-25px,0,0) scaleX(1)}75%{transform:translate3d(10px,0,0) scaleX(.98)}90%{transform:translate3d(-5px,0,0) scaleX(.995)}to{transform:translateZ(0)}}.animate__bounceInRight{animation-name:bounceInRight}@keyframes bounceInUp{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;transform:translate3d(0,-20px,0) scaleY(.9)}75%{transform:translate3d(0,10px,0) scaleY(.95)}90%{transform:translate3d(0,-5px,0) scaleY(.985)}to{transform:translateZ(0)}}.animate__bounceInUp{animation-name:bounceInUp}@keyframes bounceOut{20%{transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;transform:scale3d(1.1,1.1,1.1)}to{opacity:0;transform:scale3d(.3,.3,.3)}}.animate__bounceOut{animation-duration:.75s;animation-duration:calc(var(--animate-duration)*0.75);animation-name:bounceOut}@keyframes bounceOutDown{20%{transform:translate3d(0,10px,0) scaleY(.985)}40%,45%{opacity:1;transform:translate3d(0,-20px,0) scaleY(.9)}to{opacity:0;transform:translate3d(0,2000px,0) scaleY(3)}}.animate__bounceOutDown{animation-name:bounceOutDown}@keyframes bounceOutLeft{20%{opacity:1;transform:translate3d(20px,0,0) scaleX(.9)}to{opacity:0;transform:translate3d(-2000px,0,0) scaleX(2)}}.animate__bounceOutLeft{animation-name:bounceOutLeft}@keyframes bounceOutRight{20%{opacity:1;transform:translate3d(-20px,0,0) scaleX(.9)}to{opacity:0;transform:translate3d(2000px,0,0) scaleX(2)}}.animate__bounceOutRight{animation-name:bounceOutRight}@keyframes bounceOutUp{20%{transform:translate3d(0,-10px,0) scaleY(.985)}40%,45%{opacity:1;transform:translate3d(0,20px,0) scaleY(.9)}to{opacity:0;transform:translate3d(0,-2000px,0) scaleY(3)}}.animate__bounceOutUp{animation-name:bounceOutUp}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.animate__fadeIn{animation-name:fadeIn}@keyframes fadeInDown{0%{opacity:0;transform:translate3d(0,-100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInDown{animation-name:fadeInDown}@keyframes fadeInDownBig{0%{opacity:0;transform:translate3d(0,-2000px,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInDownBig{animation-name:fadeInDownBig}@keyframes fadeInLeft{0%{opacity:0;transform:translate3d(-100%,0,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInLeft{animation-name:fadeInLeft}@keyframes fadeInLeftBig{0%{opacity:0;transform:translate3d(-2000px,0,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInLeftBig{animation-name:fadeInLeftBig}@keyframes fadeInRight{0%{opacity:0;transform:translate3d(100%,0,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInRight{animation-name:fadeInRight}@keyframes fadeInRightBig{0%{opacity:0;transform:translate3d(2000px,0,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInRightBig{animation-name:fadeInRightBig}@keyframes fadeInUp{0%{opacity:0;transform:translate3d(0,100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInUp{animation-name:fadeInUp}@keyframes fadeInUpBig{0%{opacity:0;transform:translate3d(0,2000px,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInUpBig{animation-name:fadeInUpBig}@keyframes fadeInTopLeft{0%{opacity:0;transform:translate3d(-100%,-100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInTopLeft{animation-name:fadeInTopLeft}@keyframes fadeInTopRight{0%{opacity:0;transform:translate3d(100%,-100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInTopRight{animation-name:fadeInTopRight}@keyframes fadeInBottomLeft{0%{opacity:0;transform:translate3d(-100%,100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInBottomLeft{animation-name:fadeInBottomLeft}@keyframes fadeInBottomRight{0%{opacity:0;transform:translate3d(100%,100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInBottomRight{animation-name:fadeInBottomRight}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.animate__fadeOut{animation-name:fadeOut}@keyframes fadeOutDown{0%{opacity:1}to{opacity:0;transform:translate3d(0,100%,0)}}.animate__fadeOutDown{animation-name:fadeOutDown}@keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;transform:translate3d(0,2000px,0)}}.animate__fadeOutDownBig{animation-name:fadeOutDownBig}@keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;transform:translate3d(-100%,0,0)}}.animate__fadeOutLeft{animation-name:fadeOutLeft}@keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;transform:translate3d(-2000px,0,0)}}.animate__fadeOutLeftBig{animation-name:fadeOutLeftBig}@keyframes fadeOutRight{0%{opacity:1}to{opacity:0;transform:translate3d(100%,0,0)}}.animate__fadeOutRight{animation-name:fadeOutRight}@keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;transform:translate3d(2000px,0,0)}}.animate__fadeOutRightBig{animation-name:fadeOutRightBig}@keyframes fadeOutUp{0%{opacity:1}to{opacity:0;transform:translate3d(0,-100%,0)}}.animate__fadeOutUp{animation-name:fadeOutUp}@keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;transform:translate3d(0,-2000px,0)}}.animate__fadeOutUpBig{animation-name:fadeOutUpBig}@keyframes fadeOutTopLeft{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(-100%,-100%,0)}}.animate__fadeOutTopLeft{animation-name:fadeOutTopLeft}@keyframes fadeOutTopRight{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(100%,-100%,0)}}.animate__fadeOutTopRight{animation-name:fadeOutTopRight}@keyframes fadeOutBottomRight{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(100%,100%,0)}}.animate__fadeOutBottomRight{animation-name:fadeOutBottomRight}@keyframes fadeOutBottomLeft{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(-100%,100%,0)}}.animate__fadeOutBottomLeft{animation-name:fadeOutBottomLeft}@keyframes flip{0%{transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);animation-timing-function:ease-out}40%{transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);animation-timing-function:ease-out}50%{transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);animation-timing-function:ease-in}80%{transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);animation-timing-function:ease-in}to{transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);animation-timing-function:ease-in}}.animate__animated.animate__flip{backface-visibility:visible;animation-name:flip}@keyframes flipInX{0%{transform:perspective(400px) rotateX(90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateX(-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotateX(10deg);opacity:1}80%{transform:perspective(400px) rotateX(-5deg)}to{transform:perspective(400px)}}.animate__flipInX{backface-visibility:visible!important;animation-name:flipInX}@keyframes flipInY{0%{transform:perspective(400px) rotateY(90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateY(-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotateY(10deg);opacity:1}80%{transform:perspective(400px) rotateY(-5deg)}to{transform:perspective(400px)}}.animate__flipInY{backface-visibility:visible!important;animation-name:flipInY}@keyframes flipOutX{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateX(-20deg);opacity:1}to{transform:perspective(400px) rotateX(90deg);opacity:0}}.animate__flipOutX{animation-duration:.75s;animation-duration:calc(var(--animate-duration)*0.75);animation-name:flipOutX;backface-visibility:visible!important}@keyframes flipOutY{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateY(-15deg);opacity:1}to{transform:perspective(400px) rotateY(90deg);opacity:0}}.animate__flipOutY{animation-duration:.75s;animation-duration:calc(var(--animate-duration)*0.75);backface-visibility:visible!important;animation-name:flipOutY}@keyframes lightSpeedInRight{0%{transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{transform:skewX(20deg);opacity:1}80%{transform:skewX(-5deg)}to{transform:translateZ(0)}}.animate__lightSpeedInRight{animation-name:lightSpeedInRight;animation-timing-function:ease-out}@keyframes lightSpeedInLeft{0%{transform:translate3d(-100%,0,0) skewX(30deg);opacity:0}60%{transform:skewX(-20deg);opacity:1}80%{transform:skewX(5deg)}to{transform:translateZ(0)}}.animate__lightSpeedInLeft{animation-name:lightSpeedInLeft;animation-timing-function:ease-out}@keyframes lightSpeedOutRight{0%{opacity:1}to{transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.animate__lightSpeedOutRight{animation-name:lightSpeedOutRight;animation-timing-function:ease-in}@keyframes lightSpeedOutLeft{0%{opacity:1}to{transform:translate3d(-100%,0,0) skewX(-30deg);opacity:0}}.animate__lightSpeedOutLeft{animation-name:lightSpeedOutLeft;animation-timing-function:ease-in}@keyframes rotateIn{0%{transform:rotate(-200deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateIn{animation-name:rotateIn;transform-origin:center}@keyframes rotateInDownLeft{0%{transform:rotate(-45deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInDownLeft{animation-name:rotateInDownLeft;transform-origin:left bottom}@keyframes rotateInDownRight{0%{transform:rotate(45deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInDownRight{animation-name:rotateInDownRight;transform-origin:right bottom}@keyframes rotateInUpLeft{0%{transform:rotate(45deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInUpLeft{animation-name:rotateInUpLeft;transform-origin:left bottom}@keyframes rotateInUpRight{0%{transform:rotate(-90deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInUpRight{animation-name:rotateInUpRight;transform-origin:right bottom}@keyframes rotateOut{0%{opacity:1}to{transform:rotate(200deg);opacity:0}}.animate__rotateOut{animation-name:rotateOut;transform-origin:center}@keyframes rotateOutDownLeft{0%{opacity:1}to{transform:rotate(45deg);opacity:0}}.animate__rotateOutDownLeft{animation-name:rotateOutDownLeft;transform-origin:left bottom}@keyframes rotateOutDownRight{0%{opacity:1}to{transform:rotate(-45deg);opacity:0}}.animate__rotateOutDownRight{animation-name:rotateOutDownRight;transform-origin:right bottom}@keyframes rotateOutUpLeft{0%{opacity:1}to{transform:rotate(-45deg);opacity:0}}.animate__rotateOutUpLeft{animation-name:rotateOutUpLeft;transform-origin:left bottom}@keyframes rotateOutUpRight{0%{opacity:1}to{transform:rotate(90deg);opacity:0}}.animate__rotateOutUpRight{animation-name:rotateOutUpRight;transform-origin:right bottom}@keyframes hinge{0%{animation-timing-function:ease-in-out}20%,60%{transform:rotate(80deg);animation-timing-function:ease-in-out}40%,80%{transform:rotate(60deg);animation-timing-function:ease-in-out;opacity:1}to{transform:translate3d(0,700px,0);opacity:0}}.animate__hinge{animation-duration:2s;animation-duration:calc(var(--animate-duration)*2);animation-name:hinge;transform-origin:top left}@keyframes jackInTheBox{0%{opacity:0;transform:scale(.1) rotate(30deg);transform-origin:center bottom}50%{transform:rotate(-10deg)}70%{transform:rotate(3deg)}to{opacity:1;transform:scale(1)}}.animate__jackInTheBox{animation-name:jackInTheBox}@keyframes rollIn{0%{opacity:0;transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;transform:translateZ(0)}}.animate__rollIn{animation-name:rollIn}@keyframes rollOut{0%{opacity:1}to{opacity:0;transform:translate3d(100%,0,0) rotate(120deg)}}.animate__rollOut{animation-name:rollOut}@keyframes zoomIn{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}.animate__zoomIn{animation-name:zoomIn}@keyframes zoomInDown{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInDown{animation-name:zoomInDown}@keyframes zoomInLeft{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInLeft{animation-name:zoomInLeft}@keyframes zoomInRight{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInRight{animation-name:zoomInRight}@keyframes zoomInUp{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInUp{animation-name:zoomInUp}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:0}}.animate__zoomOut{animation-name:zoomOut}@keyframes zoomOutDown{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutDown{animation-name:zoomOutDown;transform-origin:center bottom}@keyframes zoomOutLeft{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;transform:scale(.1) translate3d(-2000px,0,0)}}.animate__zoomOutLeft{animation-name:zoomOutLeft;transform-origin:left center}@keyframes zoomOutRight{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;transform:scale(.1) translate3d(2000px,0,0)}}.animate__zoomOutRight{animation-name:zoomOutRight;transform-origin:right center}@keyframes zoomOutUp{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutUp{animation-name:zoomOutUp;transform-origin:center bottom}@keyframes slideInDown{0%{transform:translate3d(0,-100%,0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInDown{animation-name:slideInDown}@keyframes slideInLeft{0%{transform:translate3d(-100%,0,0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInLeft{animation-name:slideInLeft}@keyframes slideInRight{0%{transform:translate3d(100%,0,0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInRight{animation-name:slideInRight}@keyframes slideInUp{0%{transform:translate3d(0,100%,0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInUp{animation-name:slideInUp}@keyframes slideOutDown{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0,100%,0)}}.animate__slideOutDown{animation-name:slideOutDown}@keyframes slideOutLeft{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(-100%,0,0)}}.animate__slideOutLeft{animation-name:slideOutLeft}@keyframes slideOutRight{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(100%,0,0)}}.animate__slideOutRight{animation-name:slideOutRight}@keyframes slideOutUp{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0,-100%,0)}}.animate__slideOutUp{animation-name:slideOutUp}