.shg-box {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  flex-direction: column;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  /**
   * While `flex: 1` is enough here, we need to supply the rest
   * of the parameters (`1 auto`) to keep compatibility with IE11.
   * Otherwise, IE11 flex would break.
   */
  flex: 1 1 auto;
}

.shg-box > .shg-box-content {
  z-index: 4;
  position: relative;
}

.shg-box-vertical-align-wrapper, .shg-box-vertical-center-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

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

.shg-box-vertical-align-center, .shg-box-vertical-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-box-vertical-align-bottom {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.shg-box-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  pointer-events: none;
}

.shg-box-video-wrapper {
  /*
    It's very important we don't create a new containing block for shg-box-video-wrapper
    Jarallax uses transforms + position: fixed to achieve it's parallaxing effect

    https://developer.mozilla.org/en-US/docs/Web/CSS/position

    position: fixed
    The element is removed from the normal document flow, and no space is created for the element in the page layout. 
    It is positioned relative to the initial containing block established by the viewport, 

    *
      except when one of its ancestors has a transform, perspective, or filter property set to something other than none 
      (see the CSS Transforms Spec), or the will-change property is set to transform, 
      in which case that ancestor behaves as the containing block. 
    *
  */

  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

#s-ce915d3e-3bcb-4bae-84f4-4e3eaa636677 {
  min-height: 50px;
}








#s-ce915d3e-3bcb-4bae-84f4-4e3eaa636677 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ce915d3e-3bcb-4bae-84f4-4e3eaa636677.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-align-container {
  box-sizing: border-box;
}

.shg-image-content-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}

.shogun-image-container.shg-align-left {
  text-align: left;
}

.shogun-image-container.shg-align-center {
  text-align: center;
}

.shogun-image-container.shg-align-right {
  text-align: right;
}

.shogun-image-linked {
  cursor: pointer;
}

.shogun-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  padding: 20px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.shogun-image-overlay.shg-top-left {
  align-items: flex-start;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-top-center {
  align-items: flex-start;
  justify-content: center;
}

.shogun-image-overlay.shg-top-right {
  align-items: flex-start;
  justify-content: flex-end;
}

.shogun-image-overlay.shg-middle-left {
  align-items: center;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-middle-center {
  align-items: center;
  justify-content: center;
}

.shogun-image-overlay.shg-middle-right {
  align-items: center;
  justify-content: flex-end;
}

.shogun-image-overlay.shg-bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-bottom-center {
  align-items: flex-end;
  justify-content: center;
}

.shogun-image-overlay.shg-bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}

.shogun-image-overlay p {
  margin: 0;
  padding: 0;
  line-height: normal;
}

.shogun-image-cover {
  object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

.shogun-image-contain {
  font-family: "object-fit: contain;";
  object-fit: contain;
  width: 100%;
}

.shogun-image-link {
  display: block;
  min-height: inherit;
  max-height: inherit;
  height: inherit;
  position: relative;
}

img.shogun-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.shg-imageV2-content {
  text-align: initial;
}

.shogun-image-content {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  min-width: 100%;
  min-height: 100%;
  /* Ensures that the content children fills the container */
  align-items: stretch;
}

.shogun-image-content-linked,
.shogun-image-content-not-linked {
  pointer-events: none;
}

.shogun-image-content-not-linked>div {
  pointer-events: auto;
}

.shogun-image-content-linked a,
.shogun-image-content-linked button,
.shogun-image-content-linked iframe,
.shogun-image-content-linked .shg-box-linked {
  pointer-events: auto;
}

.shogun-image-content-top {
  align-items: flex-start;
}

.shogun-image-content-center {
  align-items: center;
}

.shogun-image-content-bottom {
  align-items: flex-end;
}

.shg-image-content-wrapper .shogun-image.hover~* {
  z-index: 1;
}

.shogun-image-content > * {
  flex-shrink: 0; /* Prevents children from shrinking maintaining natural size*/
  width: 100%;
}
#s-c7140417-4f14-4199-be89-a918f0945a86 {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-c7140417-4f14-4199-be89-a918f0945a86 {
  margin: 0 !important;
  overflow: visible;
}

#s-c7140417-4f14-4199-be89-a918f0945a86-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c7140417-4f14-4199-be89-a918f0945a86 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c7140417-4f14-4199-be89-a918f0945a86 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c7140417-4f14-4199-be89-a918f0945a86 img.shogun-image {
  /* Add background color handling */
  
}

#s-c7140417-4f14-4199-be89-a918f0945a86 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c7140417-4f14-4199-be89-a918f0945a86 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-c7140417-4f14-4199-be89-a918f0945a86 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c7140417-4f14-4199-be89-a918f0945a86 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c7140417-4f14-4199-be89-a918f0945a86 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-c7140417-4f14-4199-be89-a918f0945a86 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c7140417-4f14-4199-be89-a918f0945a86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image {
  box-sizing: border-box;
}



.s-c7140417-4f14-4199-be89-a918f0945a86 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c7140417-4f14-4199-be89-a918f0945a86 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image-container {
      position: relative;
    }

    .s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c7140417-4f14-4199-be89-a918f0945a86 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-c7140417-4f14-4199-be89-a918f0945a86 {
  margin: 0 !important;
  overflow: visible;
}

#s-c7140417-4f14-4199-be89-a918f0945a86-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c7140417-4f14-4199-be89-a918f0945a86 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c7140417-4f14-4199-be89-a918f0945a86 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c7140417-4f14-4199-be89-a918f0945a86 img.shogun-image {
  /* Add background color handling */
  
}

#s-c7140417-4f14-4199-be89-a918f0945a86 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c7140417-4f14-4199-be89-a918f0945a86 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-c7140417-4f14-4199-be89-a918f0945a86 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c7140417-4f14-4199-be89-a918f0945a86 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c7140417-4f14-4199-be89-a918f0945a86 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-c7140417-4f14-4199-be89-a918f0945a86 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c7140417-4f14-4199-be89-a918f0945a86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image {
  box-sizing: border-box;
}



.s-c7140417-4f14-4199-be89-a918f0945a86 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c7140417-4f14-4199-be89-a918f0945a86 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image-container {
      position: relative;
    }

    .s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c7140417-4f14-4199-be89-a918f0945a86 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-c7140417-4f14-4199-be89-a918f0945a86 {
  margin: 0 !important;
  overflow: visible;
}

#s-c7140417-4f14-4199-be89-a918f0945a86-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c7140417-4f14-4199-be89-a918f0945a86 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c7140417-4f14-4199-be89-a918f0945a86 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c7140417-4f14-4199-be89-a918f0945a86 img.shogun-image {
  /* Add background color handling */
  
}

#s-c7140417-4f14-4199-be89-a918f0945a86 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c7140417-4f14-4199-be89-a918f0945a86 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-c7140417-4f14-4199-be89-a918f0945a86 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c7140417-4f14-4199-be89-a918f0945a86 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c7140417-4f14-4199-be89-a918f0945a86 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-c7140417-4f14-4199-be89-a918f0945a86 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c7140417-4f14-4199-be89-a918f0945a86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image {
  box-sizing: border-box;
}



.s-c7140417-4f14-4199-be89-a918f0945a86 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c7140417-4f14-4199-be89-a918f0945a86 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image-container {
      position: relative;
    }

    .s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c7140417-4f14-4199-be89-a918f0945a86 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-c7140417-4f14-4199-be89-a918f0945a86 {
  margin: 0 !important;
  overflow: visible;
}

#s-c7140417-4f14-4199-be89-a918f0945a86-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c7140417-4f14-4199-be89-a918f0945a86 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c7140417-4f14-4199-be89-a918f0945a86 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c7140417-4f14-4199-be89-a918f0945a86 img.shogun-image {
  /* Add background color handling */
  
}

#s-c7140417-4f14-4199-be89-a918f0945a86 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c7140417-4f14-4199-be89-a918f0945a86 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-c7140417-4f14-4199-be89-a918f0945a86 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c7140417-4f14-4199-be89-a918f0945a86 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c7140417-4f14-4199-be89-a918f0945a86 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-c7140417-4f14-4199-be89-a918f0945a86 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c7140417-4f14-4199-be89-a918f0945a86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image {
  box-sizing: border-box;
}



.s-c7140417-4f14-4199-be89-a918f0945a86 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c7140417-4f14-4199-be89-a918f0945a86 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image-container {
      position: relative;
    }

    .s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c7140417-4f14-4199-be89-a918f0945a86 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-c7140417-4f14-4199-be89-a918f0945a86 {
  margin: 0 !important;
  overflow: visible;
}

#s-c7140417-4f14-4199-be89-a918f0945a86-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c7140417-4f14-4199-be89-a918f0945a86 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c7140417-4f14-4199-be89-a918f0945a86 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c7140417-4f14-4199-be89-a918f0945a86 img.shogun-image {
  /* Add background color handling */
  
}

#s-c7140417-4f14-4199-be89-a918f0945a86 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c7140417-4f14-4199-be89-a918f0945a86 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-c7140417-4f14-4199-be89-a918f0945a86 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c7140417-4f14-4199-be89-a918f0945a86 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c7140417-4f14-4199-be89-a918f0945a86 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-c7140417-4f14-4199-be89-a918f0945a86 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c7140417-4f14-4199-be89-a918f0945a86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image {
  box-sizing: border-box;
}



.s-c7140417-4f14-4199-be89-a918f0945a86 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c7140417-4f14-4199-be89-a918f0945a86 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image-container {
      position: relative;
    }

    .s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c7140417-4f14-4199-be89-a918f0945a86.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c7140417-4f14-4199-be89-a918f0945a86 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
.shogun-heading-component h1,
.shogun-heading-component h2,
.shogun-heading-component h3,
.shogun-heading-component h4,
.shogun-heading-component h5,
.shogun-heading-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: #000000;
  font-family: "Inter";
  text-transform: none;
  font-weight: 700;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

.shogun-heading-component a {
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

#s-c3374292-7515-4ad2-974f-5c3c528a578d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c3374292-7515-4ad2-974f-5c3c528a578d .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-ecb5613f-7c1c-411a-ab11-58255d499305 {
  min-height: 50px;
}








#s-ecb5613f-7c1c-411a-ab11-58255d499305 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ecb5613f-7c1c-411a-ab11-58255d499305.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3bc6e964-600c-4e06-badf-0426f3f707c4 {
  min-height: 50px;
}








#s-3bc6e964-600c-4e06-badf-0426f3f707c4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3bc6e964-600c-4e06-badf-0426f3f707c4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-rich-text {
  overflow-wrap: break-word;
}

.shg-rich-text img {
  margin: 0 20px;
}

@media (max-width: 768px) {
  .shg-rich-text img {
    display: block;
    float: none !important;
    margin: 0 auto;
  }
}

.shg-default-text-content *:first-child {
  margin-top: 0;
}

.shg-default-text-content {
  text-align: left;
}

.shg-default-text-content p,
.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6,
.shg-default-text-content address,
.shg-default-text-content pre,
.shg-default-text-content div,
.shg-default-text-content ol,
.shg-default-text-content ul {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  color: #000000;
  font-family: inherit;
  font-style: normal;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-transform: none;
}

.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6 {
  color: #000000;
  font-family: "Inter";
  font-weight: 700;
}

.shg-default-text-content a {
  background-color: inherit;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-style: inherit;
  text-decoration: underline;
  text-transform: inherit;
}

.shg-default-text-content strong,
.shg-default-text-content em {
  background-color: inherit;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: inherit;
  text-transform: inherit;
}

.shg-default-text-content em {
  font-weight: inherit;
}

.shg-default-text-content strong {
  font-style: inherit;
  font-weight: 700;
}

/* https://stackoverflow.com/a/16094931/3696652 */
.shg-default-text-content ::selection,
.shg-default-text-content *::selection {
  background: #accef7;
}

.shg-default-text-content p {
  font-size: 1em;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0.6em;
  color: #000000;
  font-family: "Inter";
}

.shg-default-text-content h1 {
  font-size: 1.714em;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.166;
  margin-top: 0.67em;
}

.shg-default-text-content h2 {
  font-size: 1.43em;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-top: 0.83em;
}

.shg-default-text-content h3 {
  font-size: 1.142em;
  font-weight: 500;
  letter-spacing: -0.008em;
  line-height: 1.5;
  margin-top: 1em;
}

.shg-default-text-content h4 {
  font-size: 1em;
  font-weight: 600;
  letter-spacing: -0.006em;
  line-height: 1.428;
  margin-top: 1.33em;
}

.shg-default-text-content h5 {
  font-size: 0.857em;
  font-weight: 600;
  letter-spacing: -0.003em;
  line-height: 1.333;
  margin-top: 1.43em;
}

.shg-default-text-content h6 {
  font-size: 0.785em;
  font-weight: 600;
  letter-spacing: -0.003em;
  line-height: 1.454;
  margin-top: 1.42em;
  text-transform: uppercase;
}

.shg-default-text-content ul {
  list-style: disc;
}

.shg-default-text-content ol {
  list-style: decimal;
}

.shg-default-text-content ul,
.shg-default-text-content ol {
  margin-block-end: 1em;
  margin-block-start: 1em;
  margin-bottom: 0;
  margin-inline-end: 0;
  margin-inline-start: 0;
  margin-top: 0;
  padding-inline-start: 40px;
}

.shg-default-text-content li {
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1;
  list-style: inherit;
  margin-top: 0.67em;
}

.shg-default-text-content pre {
  font-family: monospace;
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 1em;
  white-space: pre-wrap;
  word-break: normal;
}

.shg-default-text-content address {
  font-size: 1em;
  font-style: italic;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0;
}

.shg-default-text-content div {
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-bottom: 0;
  margin-top: 0.67em;
}

.shg-theme-text-content h1,
.shg-theme-text-content h2,
.shg-theme-text-content h3,
.shg-theme-text-content h4,
.shg-theme-text-content h5,
.shg-theme-text-content h6 {
  color: #000000;
  font-family: "Inter";
  font-weight: 700;
}

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

#s-34106906-0110-480d-b0ad-63ff63c9c538 {
  margin-top: -8px;
margin-bottom: -8px;
min-height: 50px;
}








#s-34106906-0110-480d-b0ad-63ff63c9c538 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-34106906-0110-480d-b0ad-63ff63c9c538.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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








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

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

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

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

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

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

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

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

}

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

}

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

}

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

}

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

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

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

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

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

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

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

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

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

  /* Add margin handling */
  
  
  
  
}

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

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

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

}



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

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

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

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

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



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


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

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

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

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



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


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

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

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

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

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

}
#s-8fdf2c92-3239-437c-b447-4e111fc6ff24 {
  margin-top: -10px;
margin-bottom: -10px;
}

#s-1e562f51-4737-465c-b8ad-5ebc611d71f3 {
  margin-top: -10px;
margin-bottom: -10px;
}

#s-c2fbafc8-9f46-45f4-a1e6-111f524493d5 {
  min-height: 50px;
}








#s-c2fbafc8-9f46-45f4-a1e6-111f524493d5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c2fbafc8-9f46-45f4-a1e6-111f524493d5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-26a63bf6-0e4e-4284-b47d-a7f0e05771c2 {
  min-height: 50px;
}








#s-26a63bf6-0e4e-4284-b47d-a7f0e05771c2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-26a63bf6-0e4e-4284-b47d-a7f0e05771c2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6be28472-d1c6-475b-a075-88e419dd26a9 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-6be28472-d1c6-475b-a075-88e419dd26a9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6be28472-d1c6-475b-a075-88e419dd26a9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shogun-accordion-wrapper .shogun-accordion {
  margin-bottom: 0;
  border-radius: 4px;
}

.shogun-accordion {
  margin-bottom: 20px;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.shogun-accordion-wrapper .shogun-accordion + .shogun-accordion {
  margin-top: 5px;
}

.shogun-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.shogun-accordion-heading {
  color: #333;
  border-bottom: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  cursor: pointer;
}

.shogun-accordion-title {
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer;
  text-decoration: none;
  flex: 1;
  user-select: none;
}

.shogun-accordion-body {
  display: none;
  opacity: 0;
  transition: opacity 0.5s linear;
}

.shogun-accordion-body.shogun-accordion-active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.shogun-accordion-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1.2em;
}

.shogun-accordion-icon > span {
  transition: 0.3s transform;
  position: absolute;
  right: 0;
  font-size: 1.2em;
}

.shogun-accordion-icon.shogun-icon-chevron > span::after {
  content: "▸";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-chevron
  > span {
  transform: rotate(90deg);
}

.shogun-accordion-icon.shogun-icon-plus > span::after {
  content: "＋";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-plus
  > span {
  transform: rotate(-225deg);
}

#s-9bbfd450-59f0-458f-88ab-d024e3d524d0 {
  margin-left: 0px;
margin-right: 0px;
padding-top: 0%;
padding-left: 3.5%;
padding-bottom: 0%;
padding-right: 3.5%;
}

#s-9bbfd450-59f0-458f-88ab-d024e3d524d0 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(0, 0, 0, 0.06);
}

#s-9bbfd450-59f0-458f-88ab-d024e3d524d0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 15px;
}

#s-9bbfd450-59f0-458f-88ab-d024e3d524d0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 1);
}

#s-9bbfd450-59f0-458f-88ab-d024e3d524d0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

#s-9bbfd450-59f0-458f-88ab-d024e3d524d0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 1);
  text-align: left;
  font-family: Inter;
  font-weight: 600;
  font-style: ;
  font-size: 21px;
}

#s-9bbfd450-59f0-458f-88ab-d024e3d524d0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 21px;
}
@media (min-width: 0px) {
[id="s-92068621-7d64-4918-8301-38939e9c29db"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-92068621-7d64-4918-8301-38939e9c29db"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-92068621-7d64-4918-8301-38939e9c29db"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-92068621-7d64-4918-8301-38939e9c29db"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-2c29dc2d-0882-4102-8a77-d064cb98b918"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2c29dc2d-0882-4102-8a77-d064cb98b918"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2c29dc2d-0882-4102-8a77-d064cb98b918"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2c29dc2d-0882-4102-8a77-d064cb98b918"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2c29dc2d-0882-4102-8a77-d064cb98b918"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2c29dc2d-0882-4102-8a77-d064cb98b918"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2c29dc2d-0882-4102-8a77-d064cb98b918"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-1eb91e73-24f2-4227-9652-7eca0fe2accd {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-288b1927-a3ad-476f-9a3f-caaf4e04884e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-288b1927-a3ad-476f-9a3f-caaf4e04884e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-288b1927-a3ad-476f-9a3f-caaf4e04884e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-288b1927-a3ad-476f-9a3f-caaf4e04884e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-288b1927-a3ad-476f-9a3f-caaf4e04884e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-288b1927-a3ad-476f-9a3f-caaf4e04884e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-288b1927-a3ad-476f-9a3f-caaf4e04884e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-23ea4cdf-dba9-49f2-861d-2d5008d84e5f {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-54898d88-1bda-46ac-a912-1810f98ef37c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-54898d88-1bda-46ac-a912-1810f98ef37c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-54898d88-1bda-46ac-a912-1810f98ef37c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-54898d88-1bda-46ac-a912-1810f98ef37c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-54898d88-1bda-46ac-a912-1810f98ef37c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-54898d88-1bda-46ac-a912-1810f98ef37c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-54898d88-1bda-46ac-a912-1810f98ef37c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  max-width: 1920px;
aspect-ratio: 1920/1095;
text-align: center;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  margin: 0 !important;
  overflow: visible;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  /* Add background color handling */
  
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-a52fcb11-5da2-44b0-a35f-14419d193edf .shogun-image-content {
  
    justify-content: center;
  
}

.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image {
  box-sizing: border-box;
}



.s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a52fcb11-5da2-44b0-a35f-14419d193edf {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
      position: relative;
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

@media (min-width: 1200px){#s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  margin: 0 !important;
  overflow: visible;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  /* Add background color handling */
  
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-a52fcb11-5da2-44b0-a35f-14419d193edf .shogun-image-content {
  
    justify-content: center;
  
}

.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image {
  box-sizing: border-box;
}



.s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a52fcb11-5da2-44b0-a35f-14419d193edf {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
      position: relative;
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  margin: 0 !important;
  overflow: visible;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  /* Add background color handling */
  
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-a52fcb11-5da2-44b0-a35f-14419d193edf .shogun-image-content {
  
    justify-content: center;
  
}

.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image {
  box-sizing: border-box;
}



.s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a52fcb11-5da2-44b0-a35f-14419d193edf {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
      position: relative;
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  margin: 0 !important;
  overflow: visible;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  /* Add background color handling */
  
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-a52fcb11-5da2-44b0-a35f-14419d193edf .shogun-image-content {
  
    justify-content: center;
  
}

.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image {
  box-sizing: border-box;
}



.s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a52fcb11-5da2-44b0-a35f-14419d193edf {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
      position: relative;
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (max-width: 767px){#s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  margin: 0 !important;
  overflow: visible;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a52fcb11-5da2-44b0-a35f-14419d193edf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  /* Add background color handling */
  
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a52fcb11-5da2-44b0-a35f-14419d193edf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-a52fcb11-5da2-44b0-a35f-14419d193edf .shogun-image-content {
  
    justify-content: center;
  
}

.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image {
  box-sizing: border-box;
}



.s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a52fcb11-5da2-44b0-a35f-14419d193edf {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container {
      position: relative;
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a52fcb11-5da2-44b0-a35f-14419d193edf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}
#s-03b5c7bd-5615-4187-a40a-5b1218d43e85 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 1%;
padding-right: 1%;
}

#s-72aed6d4-10c3-4b71-960c-f37cf5975c65 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 21px;
padding-left: 1%;
padding-bottom: 21px;
padding-right: 1%;
}

#s-437c00c7-817b-4aa3-bf69-7c1b60d6e5cf {
  min-height: 50px;
}








#s-437c00c7-817b-4aa3-bf69-7c1b60d6e5cf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-437c00c7-817b-4aa3-bf69-7c1b60d6e5cf.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 {
  margin: 0 !important;
  overflow: visible;
}

#s-494deb3d-ba6d-4e05-927b-c9e7caabdf00-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 img.shogun-image {
  /* Add background color handling */
  
}

#s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 .shogun-image-content {
  
    justify-content: center;
  
}

.s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shg-align-container {
  display: flex;
  justify-content: center
}

.s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image {
  box-sizing: border-box;
}



.s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image-container {
      position: relative;
    }

    .s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 {
  margin: 0 !important;
  overflow: visible;
}

#s-494deb3d-ba6d-4e05-927b-c9e7caabdf00-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 img.shogun-image {
  /* Add background color handling */
  
}

#s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 .shogun-image-content {
  
    justify-content: center;
  
}

.s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shg-align-container {
  display: flex;
  justify-content: center
}

.s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image {
  box-sizing: border-box;
}



.s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image-container {
      position: relative;
    }

    .s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 {
  margin: 0 !important;
  overflow: visible;
}

#s-494deb3d-ba6d-4e05-927b-c9e7caabdf00-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 img.shogun-image {
  /* Add background color handling */
  
}

#s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 .shogun-image-content {
  
    justify-content: center;
  
}

.s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shg-align-container {
  display: flex;
  justify-content: center
}

.s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image {
  box-sizing: border-box;
}



.s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image-container {
      position: relative;
    }

    .s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 {
  margin: 0 !important;
  overflow: visible;
}

#s-494deb3d-ba6d-4e05-927b-c9e7caabdf00-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 img.shogun-image {
  /* Add background color handling */
  
}

#s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 .shogun-image-content {
  
    justify-content: center;
  
}

.s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shg-align-container {
  display: flex;
  justify-content: center
}

.s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image {
  box-sizing: border-box;
}



.s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image-container {
      position: relative;
    }

    .s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 {
  margin: 0 !important;
  overflow: visible;
}

#s-494deb3d-ba6d-4e05-927b-c9e7caabdf00-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 img.shogun-image {
  /* Add background color handling */
  
}

#s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 .shogun-image-content {
  
    justify-content: center;
  
}

.s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shg-align-container {
  display: flex;
  justify-content: center
}

.s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image {
  box-sizing: border-box;
}



.s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image-container {
      position: relative;
    }

    .s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-494deb3d-ba6d-4e05-927b-c9e7caabdf00.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-494deb3d-ba6d-4e05-927b-c9e7caabdf00 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
@media (min-width: 0px) {
[id="s-e6acd855-dcf3-4d7c-8575-67e60aae408f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e6acd855-dcf3-4d7c-8575-67e60aae408f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e6acd855-dcf3-4d7c-8575-67e60aae408f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e6acd855-dcf3-4d7c-8575-67e60aae408f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-6e302c69-d765-4961-a517-ed41303d8f65"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6e302c69-d765-4961-a517-ed41303d8f65"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-6e302c69-d765-4961-a517-ed41303d8f65"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6e302c69-d765-4961-a517-ed41303d8f65"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-6e302c69-d765-4961-a517-ed41303d8f65"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6e302c69-d765-4961-a517-ed41303d8f65"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-6e302c69-d765-4961-a517-ed41303d8f65"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-23989f32-c401-42a9-a643-b959926eec82 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-5d79cf2c-663e-4431-93d1-5715c7672e3c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5d79cf2c-663e-4431-93d1-5715c7672e3c"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-5d79cf2c-663e-4431-93d1-5715c7672e3c"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5d79cf2c-663e-4431-93d1-5715c7672e3c"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-5d79cf2c-663e-4431-93d1-5715c7672e3c"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5d79cf2c-663e-4431-93d1-5715c7672e3c"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-5d79cf2c-663e-4431-93d1-5715c7672e3c"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-63831238-f5c3-4e63-a4e6-8ea7d91cb3d8 {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-87e38d87-00fe-4cac-9908-4ef51ac3b91c {
  max-width: 1200px;
aspect-ratio: 1200/430;
text-align: center;
}

#s-87e38d87-00fe-4cac-9908-4ef51ac3b91c {
  margin: 0 !important;
  overflow: visible;
}

#s-87e38d87-00fe-4cac-9908-4ef51ac3b91c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-87e38d87-00fe-4cac-9908-4ef51ac3b91c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-87e38d87-00fe-4cac-9908-4ef51ac3b91c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-87e38d87-00fe-4cac-9908-4ef51ac3b91c img.shogun-image {
  /* Add background color handling */
  
}

#s-87e38d87-00fe-4cac-9908-4ef51ac3b91c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-87e38d87-00fe-4cac-9908-4ef51ac3b91c .shg-image-content-wrapper {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }

    #s-87e38d87-00fe-4cac-9908-4ef51ac3b91c .shogun-image-link {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-87e38d87-00fe-4cac-9908-4ef51ac3b91c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-87e38d87-00fe-4cac-9908-4ef51ac3b91c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-87e38d87-00fe-4cac-9908-4ef51ac3b91c .shogun-image-content {
  
    justify-content: center;
  
}

.s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image {
  box-sizing: border-box;
}



.s-87e38d87-00fe-4cac-9908-4ef51ac3b91c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-87e38d87-00fe-4cac-9908-4ef51ac3b91c {
      --shg-aspect-ratio: calc(1200/430); 
    }

    .s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image-container {
      position: relative;
    }

    .s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-87e38d87-00fe-4cac-9908-4ef51ac3b91c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

@media (min-width: 1200px){#s-87e38d87-00fe-4cac-9908-4ef51ac3b91c {
  margin: 0 !important;
  overflow: visible;
}

#s-87e38d87-00fe-4cac-9908-4ef51ac3b91c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-87e38d87-00fe-4cac-9908-4ef51ac3b91c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-87e38d87-00fe-4cac-9908-4ef51ac3b91c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-87e38d87-00fe-4cac-9908-4ef51ac3b91c img.shogun-image {
  /* Add background color handling */
  
}

#s-87e38d87-00fe-4cac-9908-4ef51ac3b91c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-87e38d87-00fe-4cac-9908-4ef51ac3b91c .shg-image-content-wrapper {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }

    #s-87e38d87-00fe-4cac-9908-4ef51ac3b91c .shogun-image-link {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-87e38d87-00fe-4cac-9908-4ef51ac3b91c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-87e38d87-00fe-4cac-9908-4ef51ac3b91c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-87e38d87-00fe-4cac-9908-4ef51ac3b91c .shogun-image-content {
  
    justify-content: center;
  
}

.s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image {
  box-sizing: border-box;
}



.s-87e38d87-00fe-4cac-9908-4ef51ac3b91c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-87e38d87-00fe-4cac-9908-4ef51ac3b91c {
      --shg-aspect-ratio: calc(1200/430); 
    }

    .s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image-container {
      position: relative;
    }

    .s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-87e38d87-00fe-4cac-9908-4ef51ac3b91c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-87e38d87-00fe-4cac-9908-4ef51ac3b91c {
  margin: 0 !important;
  overflow: visible;
}

#s-87e38d87-00fe-4cac-9908-4ef51ac3b91c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-87e38d87-00fe-4cac-9908-4ef51ac3b91c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-87e38d87-00fe-4cac-9908-4ef51ac3b91c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-87e38d87-00fe-4cac-9908-4ef51ac3b91c img.shogun-image {
  /* Add background color handling */
  
}

#s-87e38d87-00fe-4cac-9908-4ef51ac3b91c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-87e38d87-00fe-4cac-9908-4ef51ac3b91c .shg-image-content-wrapper {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }

    #s-87e38d87-00fe-4cac-9908-4ef51ac3b91c .shogun-image-link {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-87e38d87-00fe-4cac-9908-4ef51ac3b91c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-87e38d87-00fe-4cac-9908-4ef51ac3b91c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-87e38d87-00fe-4cac-9908-4ef51ac3b91c .shogun-image-content {
  
    justify-content: center;
  
}

.s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image {
  box-sizing: border-box;
}



.s-87e38d87-00fe-4cac-9908-4ef51ac3b91c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-87e38d87-00fe-4cac-9908-4ef51ac3b91c {
      --shg-aspect-ratio: calc(1200/430); 
    }

    .s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image-container {
      position: relative;
    }

    .s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-87e38d87-00fe-4cac-9908-4ef51ac3b91c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-87e38d87-00fe-4cac-9908-4ef51ac3b91c {
  margin: 0 !important;
  overflow: visible;
}

#s-87e38d87-00fe-4cac-9908-4ef51ac3b91c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-87e38d87-00fe-4cac-9908-4ef51ac3b91c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-87e38d87-00fe-4cac-9908-4ef51ac3b91c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-87e38d87-00fe-4cac-9908-4ef51ac3b91c img.shogun-image {
  /* Add background color handling */
  
}

#s-87e38d87-00fe-4cac-9908-4ef51ac3b91c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-87e38d87-00fe-4cac-9908-4ef51ac3b91c .shg-image-content-wrapper {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }

    #s-87e38d87-00fe-4cac-9908-4ef51ac3b91c .shogun-image-link {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-87e38d87-00fe-4cac-9908-4ef51ac3b91c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-87e38d87-00fe-4cac-9908-4ef51ac3b91c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-87e38d87-00fe-4cac-9908-4ef51ac3b91c .shogun-image-content {
  
    justify-content: center;
  
}

.s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image {
  box-sizing: border-box;
}



.s-87e38d87-00fe-4cac-9908-4ef51ac3b91c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-87e38d87-00fe-4cac-9908-4ef51ac3b91c {
      --shg-aspect-ratio: calc(1200/430); 
    }

    .s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image-container {
      position: relative;
    }

    .s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-87e38d87-00fe-4cac-9908-4ef51ac3b91c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

}@media (max-width: 767px){#s-87e38d87-00fe-4cac-9908-4ef51ac3b91c {
  margin: 0 !important;
  overflow: visible;
}

#s-87e38d87-00fe-4cac-9908-4ef51ac3b91c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-87e38d87-00fe-4cac-9908-4ef51ac3b91c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-87e38d87-00fe-4cac-9908-4ef51ac3b91c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-87e38d87-00fe-4cac-9908-4ef51ac3b91c img.shogun-image {
  /* Add background color handling */
  
}

#s-87e38d87-00fe-4cac-9908-4ef51ac3b91c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-87e38d87-00fe-4cac-9908-4ef51ac3b91c .shg-image-content-wrapper {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }

    #s-87e38d87-00fe-4cac-9908-4ef51ac3b91c .shogun-image-link {
      aspect-ratio: 1200/430;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-87e38d87-00fe-4cac-9908-4ef51ac3b91c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-87e38d87-00fe-4cac-9908-4ef51ac3b91c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-87e38d87-00fe-4cac-9908-4ef51ac3b91c .shogun-image-content {
  
    justify-content: center;
  
}

.s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image {
  box-sizing: border-box;
}



.s-87e38d87-00fe-4cac-9908-4ef51ac3b91c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-87e38d87-00fe-4cac-9908-4ef51ac3b91c {
      --shg-aspect-ratio: calc(1200/430); 
    }

    .s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image-container {
      position: relative;
    }

    .s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-87e38d87-00fe-4cac-9908-4ef51ac3b91c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-87e38d87-00fe-4cac-9908-4ef51ac3b91c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

}
.shg-btn.shg-cse, .shg-btn.shg-cse:hover, .shg-btn.shg-cse:focus {
  color: #FFF;
}

.shg-btn {
  cursor: pointer;
  box-sizing: border-box;
}

.shg-btn-text {
  font-weight: 400;
  font-family: "Inter";
}

.shg-btn.shg-btn-stretch {
  display: block;
}

.shg-btn:not(.shg-btn-stretch) {
  display: inline-block;
}

.shg-btn-wrapper.shg-align-left {
  text-align: left;
}

.shg-btn-wrapper.shg-align-center {
  text-align: center;
}

.shg-btn-wrapper.shg-align-right {
  text-align: right;
}

#s-cd870a6b-85ef-48f9-8b7c-09ea213abb62 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-cd870a6b-85ef-48f9-8b7c-09ea213abb62:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-cd870a6b-85ef-48f9-8b7c-09ea213abb62:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-cd870a6b-85ef-48f9-8b7c-09ea213abb62 {
  margin-top: 0px;
margin-left: 5%;
margin-bottom: 0px;
margin-right: 5%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 32px;
text-align: left;
}
}

  #s-cd870a6b-85ef-48f9-8b7c-09ea213abb62-root {
    text-align: center;
  }


#s-cd870a6b-85ef-48f9-8b7c-09ea213abb62.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-cd870a6b-85ef-48f9-8b7c-09ea213abb62-root {
    text-align: left;
  }


#s-cd870a6b-85ef-48f9-8b7c-09ea213abb62.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-cd870a6b-85ef-48f9-8b7c-09ea213abb62-root {
    text-align: center;
  }


#s-cd870a6b-85ef-48f9-8b7c-09ea213abb62.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-cd870a6b-85ef-48f9-8b7c-09ea213abb62-root {
    text-align: center;
  }


#s-cd870a6b-85ef-48f9-8b7c-09ea213abb62.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-cd870a6b-85ef-48f9-8b7c-09ea213abb62-root {
    text-align: center;
  }


#s-cd870a6b-85ef-48f9-8b7c-09ea213abb62.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-2d24eddf-cf72-4288-9f9c-fabf5675fb40 {
  min-height: 50px;
}








#s-2d24eddf-cf72-4288-9f9c-fabf5675fb40 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2d24eddf-cf72-4288-9f9c-fabf5675fb40.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 {
  max-width: 1500px;
aspect-ratio: 1500/563;
text-align: center;
}

#s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 {
  margin: 0 !important;
  overflow: visible;
}

#s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 img.shogun-image {
  /* Add background color handling */
  
}

#s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image {
  box-sizing: border-box;
}



.s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image-container {
      position: relative;
    }

    .s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 {
  margin: 0 !important;
  overflow: visible;
}

#s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 img.shogun-image {
  /* Add background color handling */
  
}

#s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image {
  box-sizing: border-box;
}



.s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image-container {
      position: relative;
    }

    .s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 {
  margin: 0 !important;
  overflow: visible;
}

#s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 img.shogun-image {
  /* Add background color handling */
  
}

#s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image {
  box-sizing: border-box;
}



.s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image-container {
      position: relative;
    }

    .s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 {
  margin: 0 !important;
  overflow: visible;
}

#s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 img.shogun-image {
  /* Add background color handling */
  
}

#s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image {
  box-sizing: border-box;
}



.s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image-container {
      position: relative;
    }

    .s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 {
  margin: 0 !important;
  overflow: visible;
}

#s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 img.shogun-image {
  /* Add background color handling */
  
}

#s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 .shg-image-content-wrapper {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }

    #s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 .shogun-image-link {
      aspect-ratio: 1500/563;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image {
  box-sizing: border-box;
}



.s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 {
      --shg-aspect-ratio: calc(1500/563); 
    }

    .s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image-container {
      position: relative;
    }

    .s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8e1c62ad-de0a-43c6-9b5e-c5018ffa8235 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
@media (min-width: 0px) {
[id="s-4b85c655-2013-4ce2-b0a6-fcd359f103f4"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-4b85c655-2013-4ce2-b0a6-fcd359f103f4"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-4b85c655-2013-4ce2-b0a6-fcd359f103f4"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-4b85c655-2013-4ce2-b0a6-fcd359f103f4"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb {
  margin: 0 !important;
  overflow: visible;
}

#s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb img.shogun-image {
  /* Add background color handling */
  
}

#s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb .shogun-image-content {
  
    justify-content: center;
  
}

.s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image {
  box-sizing: border-box;
}



.s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image-container {
      position: relative;
    }

    .s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb {
  margin: 0 !important;
  overflow: visible;
}

#s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb img.shogun-image {
  /* Add background color handling */
  
}

#s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb .shogun-image-content {
  
    justify-content: center;
  
}

.s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image {
  box-sizing: border-box;
}



.s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image-container {
      position: relative;
    }

    .s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb {
  margin: 0 !important;
  overflow: visible;
}

#s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb img.shogun-image {
  /* Add background color handling */
  
}

#s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb .shogun-image-content {
  
    justify-content: center;
  
}

.s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image {
  box-sizing: border-box;
}



.s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image-container {
      position: relative;
    }

    .s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb {
  margin: 0 !important;
  overflow: visible;
}

#s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb img.shogun-image {
  /* Add background color handling */
  
}

#s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb .shogun-image-content {
  
    justify-content: center;
  
}

.s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image {
  box-sizing: border-box;
}



.s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image-container {
      position: relative;
    }

    .s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb {
  margin: 0 !important;
  overflow: visible;
}

#s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb img.shogun-image {
  /* Add background color handling */
  
}

#s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb .shogun-image-content {
  
    justify-content: center;
  
}

.s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image {
  box-sizing: border-box;
}



.s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image-container {
      position: relative;
    }

    .s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-962aa1fe-4a94-48ce-ad69-1ea6cf3b2cbb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a {
  margin: 0 !important;
  overflow: visible;
}

#s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a img.shogun-image {
  /* Add background color handling */
  
}

#s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a .shogun-image-content {
  
    justify-content: center;
  
}

.s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image {
  box-sizing: border-box;
}



.s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image-container {
      position: relative;
    }

    .s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a {
  margin: 0 !important;
  overflow: visible;
}

#s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a img.shogun-image {
  /* Add background color handling */
  
}

#s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a .shogun-image-content {
  
    justify-content: center;
  
}

.s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image {
  box-sizing: border-box;
}



.s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image-container {
      position: relative;
    }

    .s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a {
  margin: 0 !important;
  overflow: visible;
}

#s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a img.shogun-image {
  /* Add background color handling */
  
}

#s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a .shogun-image-content {
  
    justify-content: center;
  
}

.s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image {
  box-sizing: border-box;
}



.s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image-container {
      position: relative;
    }

    .s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a {
  margin: 0 !important;
  overflow: visible;
}

#s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a img.shogun-image {
  /* Add background color handling */
  
}

#s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a .shogun-image-content {
  
    justify-content: center;
  
}

.s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image {
  box-sizing: border-box;
}



.s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image-container {
      position: relative;
    }

    .s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a {
  margin: 0 !important;
  overflow: visible;
}

#s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a img.shogun-image {
  /* Add background color handling */
  
}

#s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a .shogun-image-content {
  
    justify-content: center;
  
}

.s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image {
  box-sizing: border-box;
}



.s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image-container {
      position: relative;
    }

    .s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a54aa64-a214-49d0-88ec-fdab7ec0bb6a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-815c778a-0fcf-4525-b23f-822e2977c499 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-815c778a-0fcf-4525-b23f-822e2977c499 {
  margin: 0 !important;
  overflow: visible;
}

#s-815c778a-0fcf-4525-b23f-822e2977c499-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-815c778a-0fcf-4525-b23f-822e2977c499 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-815c778a-0fcf-4525-b23f-822e2977c499 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-815c778a-0fcf-4525-b23f-822e2977c499 img.shogun-image {
  /* Add background color handling */
  
}

#s-815c778a-0fcf-4525-b23f-822e2977c499 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-815c778a-0fcf-4525-b23f-822e2977c499 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-815c778a-0fcf-4525-b23f-822e2977c499 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-815c778a-0fcf-4525-b23f-822e2977c499 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-815c778a-0fcf-4525-b23f-822e2977c499 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-815c778a-0fcf-4525-b23f-822e2977c499 .shogun-image-content {
  
    justify-content: center;
  
}

.s-815c778a-0fcf-4525-b23f-822e2977c499.shg-align-container {
  display: flex;
  justify-content: center
}

.s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image {
  box-sizing: border-box;
}



.s-815c778a-0fcf-4525-b23f-822e2977c499 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-815c778a-0fcf-4525-b23f-822e2977c499 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image-container {
      position: relative;
    }

    .s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-815c778a-0fcf-4525-b23f-822e2977c499 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-815c778a-0fcf-4525-b23f-822e2977c499 {
  margin: 0 !important;
  overflow: visible;
}

#s-815c778a-0fcf-4525-b23f-822e2977c499-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-815c778a-0fcf-4525-b23f-822e2977c499 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-815c778a-0fcf-4525-b23f-822e2977c499 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-815c778a-0fcf-4525-b23f-822e2977c499 img.shogun-image {
  /* Add background color handling */
  
}

#s-815c778a-0fcf-4525-b23f-822e2977c499 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-815c778a-0fcf-4525-b23f-822e2977c499 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-815c778a-0fcf-4525-b23f-822e2977c499 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-815c778a-0fcf-4525-b23f-822e2977c499 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-815c778a-0fcf-4525-b23f-822e2977c499 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-815c778a-0fcf-4525-b23f-822e2977c499 .shogun-image-content {
  
    justify-content: center;
  
}

.s-815c778a-0fcf-4525-b23f-822e2977c499.shg-align-container {
  display: flex;
  justify-content: center
}

.s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image {
  box-sizing: border-box;
}



.s-815c778a-0fcf-4525-b23f-822e2977c499 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-815c778a-0fcf-4525-b23f-822e2977c499 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image-container {
      position: relative;
    }

    .s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-815c778a-0fcf-4525-b23f-822e2977c499 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-815c778a-0fcf-4525-b23f-822e2977c499 {
  margin: 0 !important;
  overflow: visible;
}

#s-815c778a-0fcf-4525-b23f-822e2977c499-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-815c778a-0fcf-4525-b23f-822e2977c499 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-815c778a-0fcf-4525-b23f-822e2977c499 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-815c778a-0fcf-4525-b23f-822e2977c499 img.shogun-image {
  /* Add background color handling */
  
}

#s-815c778a-0fcf-4525-b23f-822e2977c499 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-815c778a-0fcf-4525-b23f-822e2977c499 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-815c778a-0fcf-4525-b23f-822e2977c499 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-815c778a-0fcf-4525-b23f-822e2977c499 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-815c778a-0fcf-4525-b23f-822e2977c499 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-815c778a-0fcf-4525-b23f-822e2977c499 .shogun-image-content {
  
    justify-content: center;
  
}

.s-815c778a-0fcf-4525-b23f-822e2977c499.shg-align-container {
  display: flex;
  justify-content: center
}

.s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image {
  box-sizing: border-box;
}



.s-815c778a-0fcf-4525-b23f-822e2977c499 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-815c778a-0fcf-4525-b23f-822e2977c499 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image-container {
      position: relative;
    }

    .s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-815c778a-0fcf-4525-b23f-822e2977c499 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-815c778a-0fcf-4525-b23f-822e2977c499 {
  margin: 0 !important;
  overflow: visible;
}

#s-815c778a-0fcf-4525-b23f-822e2977c499-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-815c778a-0fcf-4525-b23f-822e2977c499 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-815c778a-0fcf-4525-b23f-822e2977c499 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-815c778a-0fcf-4525-b23f-822e2977c499 img.shogun-image {
  /* Add background color handling */
  
}

#s-815c778a-0fcf-4525-b23f-822e2977c499 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-815c778a-0fcf-4525-b23f-822e2977c499 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-815c778a-0fcf-4525-b23f-822e2977c499 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-815c778a-0fcf-4525-b23f-822e2977c499 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-815c778a-0fcf-4525-b23f-822e2977c499 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-815c778a-0fcf-4525-b23f-822e2977c499 .shogun-image-content {
  
    justify-content: center;
  
}

.s-815c778a-0fcf-4525-b23f-822e2977c499.shg-align-container {
  display: flex;
  justify-content: center
}

.s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image {
  box-sizing: border-box;
}



.s-815c778a-0fcf-4525-b23f-822e2977c499 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-815c778a-0fcf-4525-b23f-822e2977c499 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image-container {
      position: relative;
    }

    .s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-815c778a-0fcf-4525-b23f-822e2977c499 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-815c778a-0fcf-4525-b23f-822e2977c499 {
  margin: 0 !important;
  overflow: visible;
}

#s-815c778a-0fcf-4525-b23f-822e2977c499-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-815c778a-0fcf-4525-b23f-822e2977c499 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-815c778a-0fcf-4525-b23f-822e2977c499 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-815c778a-0fcf-4525-b23f-822e2977c499 img.shogun-image {
  /* Add background color handling */
  
}

#s-815c778a-0fcf-4525-b23f-822e2977c499 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-815c778a-0fcf-4525-b23f-822e2977c499 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-815c778a-0fcf-4525-b23f-822e2977c499 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-815c778a-0fcf-4525-b23f-822e2977c499 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-815c778a-0fcf-4525-b23f-822e2977c499 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-815c778a-0fcf-4525-b23f-822e2977c499 .shogun-image-content {
  
    justify-content: center;
  
}

.s-815c778a-0fcf-4525-b23f-822e2977c499.shg-align-container {
  display: flex;
  justify-content: center
}

.s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image {
  box-sizing: border-box;
}



.s-815c778a-0fcf-4525-b23f-822e2977c499 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-815c778a-0fcf-4525-b23f-822e2977c499 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image-container {
      position: relative;
    }

    .s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-815c778a-0fcf-4525-b23f-822e2977c499.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-815c778a-0fcf-4525-b23f-822e2977c499 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 {
  margin: 0 !important;
  overflow: visible;
}

#s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 img.shogun-image {
  /* Add background color handling */
  
}

#s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image {
  box-sizing: border-box;
}



.s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image-container {
      position: relative;
    }

    .s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 {
  margin: 0 !important;
  overflow: visible;
}

#s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 img.shogun-image {
  /* Add background color handling */
  
}

#s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image {
  box-sizing: border-box;
}



.s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image-container {
      position: relative;
    }

    .s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 {
  margin: 0 !important;
  overflow: visible;
}

#s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 img.shogun-image {
  /* Add background color handling */
  
}

#s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image {
  box-sizing: border-box;
}



.s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image-container {
      position: relative;
    }

    .s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 {
  margin: 0 !important;
  overflow: visible;
}

#s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 img.shogun-image {
  /* Add background color handling */
  
}

#s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image {
  box-sizing: border-box;
}



.s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image-container {
      position: relative;
    }

    .s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 {
  margin: 0 !important;
  overflow: visible;
}

#s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 img.shogun-image {
  /* Add background color handling */
  
}

#s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image {
  box-sizing: border-box;
}



.s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image-container {
      position: relative;
    }

    .s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a475a1e6-b14c-4169-b515-ca7c9ed2ff88 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
@media (min-width: 0px) {
[id="s-f9ff5222-010b-4009-b2d0-8f693c71b2e8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f9ff5222-010b-4009-b2d0-8f693c71b2e8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f9ff5222-010b-4009-b2d0-8f693c71b2e8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f9ff5222-010b-4009-b2d0-8f693c71b2e8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-f2f1d905-a3c8-414a-a790-e546d253d338"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f2f1d905-a3c8-414a-a790-e546d253d338"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f2f1d905-a3c8-414a-a790-e546d253d338"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f2f1d905-a3c8-414a-a790-e546d253d338"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f2f1d905-a3c8-414a-a790-e546d253d338"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f2f1d905-a3c8-414a-a790-e546d253d338"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f2f1d905-a3c8-414a-a790-e546d253d338"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-f2fb78b1-a3e9-4e1a-8a5b-2b36d1312c4a {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-fff9470f-2231-44b3-83ad-5e2381906cf0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fff9470f-2231-44b3-83ad-5e2381906cf0"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-fff9470f-2231-44b3-83ad-5e2381906cf0"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-fff9470f-2231-44b3-83ad-5e2381906cf0"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-fff9470f-2231-44b3-83ad-5e2381906cf0"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-fff9470f-2231-44b3-83ad-5e2381906cf0"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-fff9470f-2231-44b3-83ad-5e2381906cf0"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-4b4c66d1-e359-47bd-8a41-e84733b24956 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-11d37535-687e-4918-97d5-62ecf4e80fee"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-11d37535-687e-4918-97d5-62ecf4e80fee"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-11d37535-687e-4918-97d5-62ecf4e80fee"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-11d37535-687e-4918-97d5-62ecf4e80fee"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-e1d86816-161b-4381-8abc-5ba1ad6c7adb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e1d86816-161b-4381-8abc-5ba1ad6c7adb"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e1d86816-161b-4381-8abc-5ba1ad6c7adb"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e1d86816-161b-4381-8abc-5ba1ad6c7adb"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e1d86816-161b-4381-8abc-5ba1ad6c7adb"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e1d86816-161b-4381-8abc-5ba1ad6c7adb"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e1d86816-161b-4381-8abc-5ba1ad6c7adb"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-d9c7fe7f-beda-4e2b-ba19-836c80f94086 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-84d734eb-dc81-4a80-83b8-5456d4657c32"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-84d734eb-dc81-4a80-83b8-5456d4657c32"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-84d734eb-dc81-4a80-83b8-5456d4657c32"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-84d734eb-dc81-4a80-83b8-5456d4657c32"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-84d734eb-dc81-4a80-83b8-5456d4657c32"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-84d734eb-dc81-4a80-83b8-5456d4657c32"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-84d734eb-dc81-4a80-83b8-5456d4657c32"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-5dbe011f-f090-4c2d-a729-1719d446095f {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-44a3baba-6781-4d35-ba56-71fcd62a16db {
  min-height: 50px;
}








#s-44a3baba-6781-4d35-ba56-71fcd62a16db > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-44a3baba-6781-4d35-ba56-71fcd62a16db.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shogun-tabs {
  margin: 0 !important;
  list-style: none !important;
  padding: 0 0 0 0;
  overflow: visible;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.shogun-tabs.shogun-modern {
  padding-left: 10px;
  padding-right: 5px;
  overflow: hidden;
  transform: translate(0px, 0px);
}

.shogun-tabs li {
  text-decoration: none;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
}

.shogun-tabs.shogun-modern li {
  width: 200px;
  height: 45px;
  margin: 0 5px 0 0;
}

.shogun-tabs.shogun-rounded li {
  margin-bottom: 0;
  float: left;
  box-sizing: border-box;
  margin-right: 2px;
  line-height: 1.42857143;
  position: relative;
  display: block;
  overflow: visible;
}

.shogun-tabs.shogun-rounded li .shogun-tab-box {
  padding: 10px 15px !important;
  border-radius: 4px 4px 0 0;
}

.shogun-tabs.shogun-modern li .shogun-tab-box {
  padding: 12px 5px !important;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .shogun-tabs.shogun-rounded li .shogun-tab-box {
    padding: 10px 5px !important;
    text-align: center;
  }

  .shogun-tabs.shogun-modern li .shogun-tab-box {
    padding: 12px 15px !important;
  }
}

.shogun-tabs.shogun-rounded .shogun-tab-box {
  border-bottom: none !important;
}

.shogun-tabs.shogun-modern li.active {
  z-index: 40;
}

.shogun-tabs.shogun-modern li .shogun-tab-box::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: -1;
  outline: 1px solid transparent;
  border-radius: 4px 4px 0 0;
  content: "";
  transform: perspective(100px) rotateX(30deg);
  -webkit-transform: perspective(100px) rotateX(30deg);
}

.shogun-tabs.shogun-modern li.shogun-tab-active .shogun-tab-box::after {
  border-bottom: none !important;
  height: 46px;
}

.shogun-tabs-body {
  padding-top: 10px;
}

.shogun-tabs-body.shogun-rounded {
  margin-top: 0px !important;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.shogun-tabs-body > .shogun-tab-content {
  display: none;
}

.shogun-tabs-body > .shogun-tab-content.shogun-tab-active {
  -webkit-animation: fadeIn 0.5s;
  animation: fadeIn 0.5s;
  display: block;
}

.shogun-tab-border {
  position: absolute;
}

.shogun-tab-title {
  white-space: nowrap;
  text-align: center;

  display: inline-block;
  width: 100%;
}

.shogun-tabs.shogun-modern .shogun-tab-title {
  /** Hack for Safari weird bug */
  /* https://stackoverflow.com/questions/18146511/bug-in-css3-rotatey-transition-on-safari */
  transform: translateZ(1000px);
}

#s-54dcc743-abb1-4420-9e22-e4d9973acbb0 {
  text-align: left;
}


  #s-54dcc743-abb1-4420-9e22-e4d9973acbb0 .shogun-tabs > li > .shogun-tab-box {
    background: #fff;
    border: 1px solid #DDDDDD;
  }
  #s-54dcc743-abb1-4420-9e22-e4d9973acbb0 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: #F4F4F4;
    border: 1px solid #ddd;
  }
#s-54dcc743-abb1-4420-9e22-e4d9973acbb0 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: #50b3da;
  font-family: Inter;
  font-weight: ;
  font-style: ;
  font-size: 18px;
}

#s-54dcc743-abb1-4420-9e22-e4d9973acbb0 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: #555;
}

#s-54dcc743-abb1-4420-9e22-e4d9973acbb0 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: #F4F4F4;
}

#s-54dcc743-abb1-4420-9e22-e4d9973acbb0 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid #ddd;
}

.shogun-video {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.shogun-video-16x9 {
  padding-bottom: 56.25%;
}

.shogun-video-4x3 {
  padding-bottom: 75%;
}

.shogun-video-embed {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#s-7990b9a7-0ca1-4312-88d7-0c44e565cbd7 {
  margin-left: 2%;
margin-right: 2%;
}

@media (min-width: 0px) {
[id="s-0bb7cce5-2a1c-4acc-aeee-5549f6798b54"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0bb7cce5-2a1c-4acc-aeee-5549f6798b54"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0bb7cce5-2a1c-4acc-aeee-5549f6798b54"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0bb7cce5-2a1c-4acc-aeee-5549f6798b54"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-8aad08f6-bceb-40b6-b2cc-dffc0325cf97"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8aad08f6-bceb-40b6-b2cc-dffc0325cf97"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8aad08f6-bceb-40b6-b2cc-dffc0325cf97"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8aad08f6-bceb-40b6-b2cc-dffc0325cf97"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8aad08f6-bceb-40b6-b2cc-dffc0325cf97"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8aad08f6-bceb-40b6-b2cc-dffc0325cf97"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8aad08f6-bceb-40b6-b2cc-dffc0325cf97"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-c9893a20-79cd-494b-8a71-9e90d528383c {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-4ce10bc1-ca1f-4bfe-bce7-94bb72609c71"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4ce10bc1-ca1f-4bfe-bce7-94bb72609c71"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4ce10bc1-ca1f-4bfe-bce7-94bb72609c71"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4ce10bc1-ca1f-4bfe-bce7-94bb72609c71"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4ce10bc1-ca1f-4bfe-bce7-94bb72609c71"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4ce10bc1-ca1f-4bfe-bce7-94bb72609c71"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4ce10bc1-ca1f-4bfe-bce7-94bb72609c71"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-42b68e9d-dac2-4482-9070-6ca9fd91d084 {
  background-color: rgba(232, 232, 232, 1);
}
}
.shg-hr-wrapper {
  padding: 30px 0;
}

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

#s-0002a962-e966-44d7-9bc5-91622bc6468a {
  margin-top: -10px;
margin-bottom: -10px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-0002a962-e966-44d7-9bc5-91622bc6468a hr {
  border-top: 1px solid #ddd;
}

@media (min-width: 0px) {
[id="s-4717bab8-611e-45a3-b976-1f606261fe98"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4717bab8-611e-45a3-b976-1f606261fe98"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4717bab8-611e-45a3-b976-1f606261fe98"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4717bab8-611e-45a3-b976-1f606261fe98"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-481b0452-6ab0-4aa4-90e9-a97d2d958ce6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-481b0452-6ab0-4aa4-90e9-a97d2d958ce6"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-481b0452-6ab0-4aa4-90e9-a97d2d958ce6"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-481b0452-6ab0-4aa4-90e9-a97d2d958ce6"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-481b0452-6ab0-4aa4-90e9-a97d2d958ce6"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-481b0452-6ab0-4aa4-90e9-a97d2d958ce6"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-481b0452-6ab0-4aa4-90e9-a97d2d958ce6"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-e23a5985-b9fd-4264-b107-aecbc20dfc01 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-1bc8ec57-097a-49bc-80b2-86937864d177"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1bc8ec57-097a-49bc-80b2-86937864d177"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-1bc8ec57-097a-49bc-80b2-86937864d177"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1bc8ec57-097a-49bc-80b2-86937864d177"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-1bc8ec57-097a-49bc-80b2-86937864d177"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1bc8ec57-097a-49bc-80b2-86937864d177"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-1bc8ec57-097a-49bc-80b2-86937864d177"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-c5d0afa5-edcc-4bce-964d-09a74bf235ff {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-d1e128de-9075-44a3-a173-6caafe22f6e1"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-d1e128de-9075-44a3-a173-6caafe22f6e1"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-d1e128de-9075-44a3-a173-6caafe22f6e1"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-d1e128de-9075-44a3-a173-6caafe22f6e1"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-ec51a07a-11cc-4fb8-807e-970109a76882 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-ec51a07a-11cc-4fb8-807e-970109a76882 {
  margin: 0 !important;
  overflow: visible;
}

#s-ec51a07a-11cc-4fb8-807e-970109a76882-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ec51a07a-11cc-4fb8-807e-970109a76882 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ec51a07a-11cc-4fb8-807e-970109a76882 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ec51a07a-11cc-4fb8-807e-970109a76882 img.shogun-image {
  /* Add background color handling */
  
}

#s-ec51a07a-11cc-4fb8-807e-970109a76882 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ec51a07a-11cc-4fb8-807e-970109a76882 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ec51a07a-11cc-4fb8-807e-970109a76882 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ec51a07a-11cc-4fb8-807e-970109a76882 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ec51a07a-11cc-4fb8-807e-970109a76882 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-ec51a07a-11cc-4fb8-807e-970109a76882 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ec51a07a-11cc-4fb8-807e-970109a76882.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image {
  box-sizing: border-box;
}



.s-ec51a07a-11cc-4fb8-807e-970109a76882 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ec51a07a-11cc-4fb8-807e-970109a76882 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image-container {
      position: relative;
    }

    .s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ec51a07a-11cc-4fb8-807e-970109a76882 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-ec51a07a-11cc-4fb8-807e-970109a76882 {
  margin: 0 !important;
  overflow: visible;
}

#s-ec51a07a-11cc-4fb8-807e-970109a76882-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ec51a07a-11cc-4fb8-807e-970109a76882 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ec51a07a-11cc-4fb8-807e-970109a76882 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ec51a07a-11cc-4fb8-807e-970109a76882 img.shogun-image {
  /* Add background color handling */
  
}

#s-ec51a07a-11cc-4fb8-807e-970109a76882 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ec51a07a-11cc-4fb8-807e-970109a76882 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ec51a07a-11cc-4fb8-807e-970109a76882 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ec51a07a-11cc-4fb8-807e-970109a76882 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ec51a07a-11cc-4fb8-807e-970109a76882 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-ec51a07a-11cc-4fb8-807e-970109a76882 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ec51a07a-11cc-4fb8-807e-970109a76882.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image {
  box-sizing: border-box;
}



.s-ec51a07a-11cc-4fb8-807e-970109a76882 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ec51a07a-11cc-4fb8-807e-970109a76882 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image-container {
      position: relative;
    }

    .s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ec51a07a-11cc-4fb8-807e-970109a76882 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-ec51a07a-11cc-4fb8-807e-970109a76882 {
  margin: 0 !important;
  overflow: visible;
}

#s-ec51a07a-11cc-4fb8-807e-970109a76882-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ec51a07a-11cc-4fb8-807e-970109a76882 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ec51a07a-11cc-4fb8-807e-970109a76882 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ec51a07a-11cc-4fb8-807e-970109a76882 img.shogun-image {
  /* Add background color handling */
  
}

#s-ec51a07a-11cc-4fb8-807e-970109a76882 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ec51a07a-11cc-4fb8-807e-970109a76882 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ec51a07a-11cc-4fb8-807e-970109a76882 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ec51a07a-11cc-4fb8-807e-970109a76882 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ec51a07a-11cc-4fb8-807e-970109a76882 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-ec51a07a-11cc-4fb8-807e-970109a76882 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ec51a07a-11cc-4fb8-807e-970109a76882.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image {
  box-sizing: border-box;
}



.s-ec51a07a-11cc-4fb8-807e-970109a76882 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ec51a07a-11cc-4fb8-807e-970109a76882 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image-container {
      position: relative;
    }

    .s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ec51a07a-11cc-4fb8-807e-970109a76882 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-ec51a07a-11cc-4fb8-807e-970109a76882 {
  margin: 0 !important;
  overflow: visible;
}

#s-ec51a07a-11cc-4fb8-807e-970109a76882-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ec51a07a-11cc-4fb8-807e-970109a76882 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ec51a07a-11cc-4fb8-807e-970109a76882 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ec51a07a-11cc-4fb8-807e-970109a76882 img.shogun-image {
  /* Add background color handling */
  
}

#s-ec51a07a-11cc-4fb8-807e-970109a76882 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ec51a07a-11cc-4fb8-807e-970109a76882 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ec51a07a-11cc-4fb8-807e-970109a76882 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ec51a07a-11cc-4fb8-807e-970109a76882 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ec51a07a-11cc-4fb8-807e-970109a76882 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-ec51a07a-11cc-4fb8-807e-970109a76882 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ec51a07a-11cc-4fb8-807e-970109a76882.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image {
  box-sizing: border-box;
}



.s-ec51a07a-11cc-4fb8-807e-970109a76882 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ec51a07a-11cc-4fb8-807e-970109a76882 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image-container {
      position: relative;
    }

    .s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ec51a07a-11cc-4fb8-807e-970109a76882 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-ec51a07a-11cc-4fb8-807e-970109a76882 {
  margin: 0 !important;
  overflow: visible;
}

#s-ec51a07a-11cc-4fb8-807e-970109a76882-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ec51a07a-11cc-4fb8-807e-970109a76882 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ec51a07a-11cc-4fb8-807e-970109a76882 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ec51a07a-11cc-4fb8-807e-970109a76882 img.shogun-image {
  /* Add background color handling */
  
}

#s-ec51a07a-11cc-4fb8-807e-970109a76882 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ec51a07a-11cc-4fb8-807e-970109a76882 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ec51a07a-11cc-4fb8-807e-970109a76882 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ec51a07a-11cc-4fb8-807e-970109a76882 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ec51a07a-11cc-4fb8-807e-970109a76882 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-ec51a07a-11cc-4fb8-807e-970109a76882 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ec51a07a-11cc-4fb8-807e-970109a76882.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image {
  box-sizing: border-box;
}



.s-ec51a07a-11cc-4fb8-807e-970109a76882 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ec51a07a-11cc-4fb8-807e-970109a76882 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image-container {
      position: relative;
    }

    .s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ec51a07a-11cc-4fb8-807e-970109a76882.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ec51a07a-11cc-4fb8-807e-970109a76882 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-79c999a7-b287-435d-92c0-89ca680b0b84 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-79c999a7-b287-435d-92c0-89ca680b0b84 {
  margin: 0 !important;
  overflow: visible;
}

#s-79c999a7-b287-435d-92c0-89ca680b0b84-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-79c999a7-b287-435d-92c0-89ca680b0b84 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-79c999a7-b287-435d-92c0-89ca680b0b84 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-79c999a7-b287-435d-92c0-89ca680b0b84 img.shogun-image {
  /* Add background color handling */
  
}

#s-79c999a7-b287-435d-92c0-89ca680b0b84 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-79c999a7-b287-435d-92c0-89ca680b0b84 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-79c999a7-b287-435d-92c0-89ca680b0b84 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-79c999a7-b287-435d-92c0-89ca680b0b84 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-79c999a7-b287-435d-92c0-89ca680b0b84 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-79c999a7-b287-435d-92c0-89ca680b0b84 .shogun-image-content {
  
    justify-content: center;
  
}

.s-79c999a7-b287-435d-92c0-89ca680b0b84.shg-align-container {
  display: flex;
  justify-content: center
}

.s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image {
  box-sizing: border-box;
}



.s-79c999a7-b287-435d-92c0-89ca680b0b84 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-79c999a7-b287-435d-92c0-89ca680b0b84 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image-container {
      position: relative;
    }

    .s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-79c999a7-b287-435d-92c0-89ca680b0b84 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-79c999a7-b287-435d-92c0-89ca680b0b84 {
  margin: 0 !important;
  overflow: visible;
}

#s-79c999a7-b287-435d-92c0-89ca680b0b84-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-79c999a7-b287-435d-92c0-89ca680b0b84 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-79c999a7-b287-435d-92c0-89ca680b0b84 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-79c999a7-b287-435d-92c0-89ca680b0b84 img.shogun-image {
  /* Add background color handling */
  
}

#s-79c999a7-b287-435d-92c0-89ca680b0b84 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-79c999a7-b287-435d-92c0-89ca680b0b84 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-79c999a7-b287-435d-92c0-89ca680b0b84 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-79c999a7-b287-435d-92c0-89ca680b0b84 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-79c999a7-b287-435d-92c0-89ca680b0b84 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-79c999a7-b287-435d-92c0-89ca680b0b84 .shogun-image-content {
  
    justify-content: center;
  
}

.s-79c999a7-b287-435d-92c0-89ca680b0b84.shg-align-container {
  display: flex;
  justify-content: center
}

.s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image {
  box-sizing: border-box;
}



.s-79c999a7-b287-435d-92c0-89ca680b0b84 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-79c999a7-b287-435d-92c0-89ca680b0b84 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image-container {
      position: relative;
    }

    .s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-79c999a7-b287-435d-92c0-89ca680b0b84 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-79c999a7-b287-435d-92c0-89ca680b0b84 {
  margin: 0 !important;
  overflow: visible;
}

#s-79c999a7-b287-435d-92c0-89ca680b0b84-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-79c999a7-b287-435d-92c0-89ca680b0b84 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-79c999a7-b287-435d-92c0-89ca680b0b84 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-79c999a7-b287-435d-92c0-89ca680b0b84 img.shogun-image {
  /* Add background color handling */
  
}

#s-79c999a7-b287-435d-92c0-89ca680b0b84 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-79c999a7-b287-435d-92c0-89ca680b0b84 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-79c999a7-b287-435d-92c0-89ca680b0b84 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-79c999a7-b287-435d-92c0-89ca680b0b84 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-79c999a7-b287-435d-92c0-89ca680b0b84 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-79c999a7-b287-435d-92c0-89ca680b0b84 .shogun-image-content {
  
    justify-content: center;
  
}

.s-79c999a7-b287-435d-92c0-89ca680b0b84.shg-align-container {
  display: flex;
  justify-content: center
}

.s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image {
  box-sizing: border-box;
}



.s-79c999a7-b287-435d-92c0-89ca680b0b84 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-79c999a7-b287-435d-92c0-89ca680b0b84 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image-container {
      position: relative;
    }

    .s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-79c999a7-b287-435d-92c0-89ca680b0b84 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-79c999a7-b287-435d-92c0-89ca680b0b84 {
  margin: 0 !important;
  overflow: visible;
}

#s-79c999a7-b287-435d-92c0-89ca680b0b84-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-79c999a7-b287-435d-92c0-89ca680b0b84 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-79c999a7-b287-435d-92c0-89ca680b0b84 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-79c999a7-b287-435d-92c0-89ca680b0b84 img.shogun-image {
  /* Add background color handling */
  
}

#s-79c999a7-b287-435d-92c0-89ca680b0b84 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-79c999a7-b287-435d-92c0-89ca680b0b84 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-79c999a7-b287-435d-92c0-89ca680b0b84 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-79c999a7-b287-435d-92c0-89ca680b0b84 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-79c999a7-b287-435d-92c0-89ca680b0b84 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-79c999a7-b287-435d-92c0-89ca680b0b84 .shogun-image-content {
  
    justify-content: center;
  
}

.s-79c999a7-b287-435d-92c0-89ca680b0b84.shg-align-container {
  display: flex;
  justify-content: center
}

.s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image {
  box-sizing: border-box;
}



.s-79c999a7-b287-435d-92c0-89ca680b0b84 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-79c999a7-b287-435d-92c0-89ca680b0b84 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image-container {
      position: relative;
    }

    .s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-79c999a7-b287-435d-92c0-89ca680b0b84 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-79c999a7-b287-435d-92c0-89ca680b0b84 {
  margin: 0 !important;
  overflow: visible;
}

#s-79c999a7-b287-435d-92c0-89ca680b0b84-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-79c999a7-b287-435d-92c0-89ca680b0b84 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-79c999a7-b287-435d-92c0-89ca680b0b84 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-79c999a7-b287-435d-92c0-89ca680b0b84 img.shogun-image {
  /* Add background color handling */
  
}

#s-79c999a7-b287-435d-92c0-89ca680b0b84 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-79c999a7-b287-435d-92c0-89ca680b0b84 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-79c999a7-b287-435d-92c0-89ca680b0b84 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-79c999a7-b287-435d-92c0-89ca680b0b84 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-79c999a7-b287-435d-92c0-89ca680b0b84 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-79c999a7-b287-435d-92c0-89ca680b0b84 .shogun-image-content {
  
    justify-content: center;
  
}

.s-79c999a7-b287-435d-92c0-89ca680b0b84.shg-align-container {
  display: flex;
  justify-content: center
}

.s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image {
  box-sizing: border-box;
}



.s-79c999a7-b287-435d-92c0-89ca680b0b84 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-79c999a7-b287-435d-92c0-89ca680b0b84 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image-container {
      position: relative;
    }

    .s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-79c999a7-b287-435d-92c0-89ca680b0b84.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-79c999a7-b287-435d-92c0-89ca680b0b84 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de {
  margin: 0 !important;
  overflow: visible;
}

#s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de img.shogun-image {
  /* Add background color handling */
  
}

#s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de .shogun-image-content {
  
    justify-content: center;
  
}

.s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image {
  box-sizing: border-box;
}



.s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image-container {
      position: relative;
    }

    .s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de {
  margin: 0 !important;
  overflow: visible;
}

#s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de img.shogun-image {
  /* Add background color handling */
  
}

#s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de .shogun-image-content {
  
    justify-content: center;
  
}

.s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image {
  box-sizing: border-box;
}



.s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image-container {
      position: relative;
    }

    .s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de {
  margin: 0 !important;
  overflow: visible;
}

#s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de img.shogun-image {
  /* Add background color handling */
  
}

#s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de .shogun-image-content {
  
    justify-content: center;
  
}

.s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image {
  box-sizing: border-box;
}



.s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image-container {
      position: relative;
    }

    .s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de {
  margin: 0 !important;
  overflow: visible;
}

#s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de img.shogun-image {
  /* Add background color handling */
  
}

#s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de .shogun-image-content {
  
    justify-content: center;
  
}

.s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image {
  box-sizing: border-box;
}



.s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image-container {
      position: relative;
    }

    .s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de {
  margin: 0 !important;
  overflow: visible;
}

#s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de img.shogun-image {
  /* Add background color handling */
  
}

#s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de .shogun-image-content {
  
    justify-content: center;
  
}

.s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image {
  box-sizing: border-box;
}



.s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image-container {
      position: relative;
    }

    .s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8d0a5570-71cd-411e-a9bf-3fa5cb32d9de img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 {
  margin: 0 !important;
  overflow: visible;
}

#s-f9c54a77-620d-4003-97b4-5016ec9cb8a1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 img.shogun-image {
  /* Add background color handling */
  
}

#s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image {
  box-sizing: border-box;
}



.s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image-container {
      position: relative;
    }

    .s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 {
  margin: 0 !important;
  overflow: visible;
}

#s-f9c54a77-620d-4003-97b4-5016ec9cb8a1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 img.shogun-image {
  /* Add background color handling */
  
}

#s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image {
  box-sizing: border-box;
}



.s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image-container {
      position: relative;
    }

    .s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 {
  margin: 0 !important;
  overflow: visible;
}

#s-f9c54a77-620d-4003-97b4-5016ec9cb8a1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 img.shogun-image {
  /* Add background color handling */
  
}

#s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image {
  box-sizing: border-box;
}



.s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image-container {
      position: relative;
    }

    .s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 {
  margin: 0 !important;
  overflow: visible;
}

#s-f9c54a77-620d-4003-97b4-5016ec9cb8a1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 img.shogun-image {
  /* Add background color handling */
  
}

#s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image {
  box-sizing: border-box;
}



.s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image-container {
      position: relative;
    }

    .s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 {
  margin: 0 !important;
  overflow: visible;
}

#s-f9c54a77-620d-4003-97b4-5016ec9cb8a1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 img.shogun-image {
  /* Add background color handling */
  
}

#s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image {
  box-sizing: border-box;
}



.s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image-container {
      position: relative;
    }

    .s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f9c54a77-620d-4003-97b4-5016ec9cb8a1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f9c54a77-620d-4003-97b4-5016ec9cb8a1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
@media (min-width: 0px) {
[id="s-5183623e-0675-4a95-a960-b1bae08771ae"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5183623e-0675-4a95-a960-b1bae08771ae"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5183623e-0675-4a95-a960-b1bae08771ae"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5183623e-0675-4a95-a960-b1bae08771ae"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-d49437b0-3bba-4971-aa36-fef337e7838e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d49437b0-3bba-4971-aa36-fef337e7838e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d49437b0-3bba-4971-aa36-fef337e7838e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d49437b0-3bba-4971-aa36-fef337e7838e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d49437b0-3bba-4971-aa36-fef337e7838e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d49437b0-3bba-4971-aa36-fef337e7838e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d49437b0-3bba-4971-aa36-fef337e7838e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-3a7cafcb-cce1-4fa4-a5ff-dbd1f280f718 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-5343e971-bf42-4314-a9f0-3bbf9b08ed11"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5343e971-bf42-4314-a9f0-3bbf9b08ed11"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5343e971-bf42-4314-a9f0-3bbf9b08ed11"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5343e971-bf42-4314-a9f0-3bbf9b08ed11"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5343e971-bf42-4314-a9f0-3bbf9b08ed11"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5343e971-bf42-4314-a9f0-3bbf9b08ed11"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5343e971-bf42-4314-a9f0-3bbf9b08ed11"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-552a9322-2950-4f0a-add2-16a05365e271 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-81c884f7-85fb-4434-b246-01f3b5283ce7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-81c884f7-85fb-4434-b246-01f3b5283ce7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-81c884f7-85fb-4434-b246-01f3b5283ce7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-81c884f7-85fb-4434-b246-01f3b5283ce7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-a2a04304-d70d-434c-8cd8-c1d04aa15702"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a2a04304-d70d-434c-8cd8-c1d04aa15702"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a2a04304-d70d-434c-8cd8-c1d04aa15702"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a2a04304-d70d-434c-8cd8-c1d04aa15702"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a2a04304-d70d-434c-8cd8-c1d04aa15702"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a2a04304-d70d-434c-8cd8-c1d04aa15702"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a2a04304-d70d-434c-8cd8-c1d04aa15702"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-be533aaf-079c-49ae-9f39-18bfa9fd3872 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-fb07d26f-1117-400a-8b14-f244ce2df61f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fb07d26f-1117-400a-8b14-f244ce2df61f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-fb07d26f-1117-400a-8b14-f244ce2df61f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-fb07d26f-1117-400a-8b14-f244ce2df61f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-fb07d26f-1117-400a-8b14-f244ce2df61f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-fb07d26f-1117-400a-8b14-f244ce2df61f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-fb07d26f-1117-400a-8b14-f244ce2df61f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-fc3156d7-7c97-4f67-b41e-9356e6d59863 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-2b6b98ac-1d42-41f5-9694-61ea15e534c5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2b6b98ac-1d42-41f5-9694-61ea15e534c5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2b6b98ac-1d42-41f5-9694-61ea15e534c5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2b6b98ac-1d42-41f5-9694-61ea15e534c5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-3403c7dc-7457-416c-9696-2fc2813f64b6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3403c7dc-7457-416c-9696-2fc2813f64b6"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3403c7dc-7457-416c-9696-2fc2813f64b6"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3403c7dc-7457-416c-9696-2fc2813f64b6"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3403c7dc-7457-416c-9696-2fc2813f64b6"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3403c7dc-7457-416c-9696-2fc2813f64b6"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3403c7dc-7457-416c-9696-2fc2813f64b6"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-7dd396e7-327a-4a93-a0cf-6e66e281ede8 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-b912f2e7-47c6-4c98-9d2e-ff33ba3e07ef"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b912f2e7-47c6-4c98-9d2e-ff33ba3e07ef"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b912f2e7-47c6-4c98-9d2e-ff33ba3e07ef"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b912f2e7-47c6-4c98-9d2e-ff33ba3e07ef"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b912f2e7-47c6-4c98-9d2e-ff33ba3e07ef"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b912f2e7-47c6-4c98-9d2e-ff33ba3e07ef"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b912f2e7-47c6-4c98-9d2e-ff33ba3e07ef"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-b19b7144-4a90-4cc9-8af9-0bf806c054a9 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-77529620-667f-4e2d-8b42-cd632fc0874f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-77529620-667f-4e2d-8b42-cd632fc0874f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-77529620-667f-4e2d-8b42-cd632fc0874f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-77529620-667f-4e2d-8b42-cd632fc0874f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-77529620-667f-4e2d-8b42-cd632fc0874f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-77529620-667f-4e2d-8b42-cd632fc0874f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-77529620-667f-4e2d-8b42-cd632fc0874f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

#s-f6d74f76-2ff2-4645-9f25-3a427e529c9b {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 0%;
padding-right: 0%;
}

#s-b5dcbd14-c684-4870-ad1a-39c52240302c {
  margin-left: 4%;
margin-right: 4%;
padding-top: 20px;
padding-left: 1%;
padding-bottom: 20px;
padding-right: 1%;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  max-width: 1920px;
aspect-ratio: 1920/1095;
text-align: center;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  margin: 0 !important;
  overflow: visible;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  /* Add background color handling */
  
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shogun-image-content {
  
    justify-content: center;
  
}

.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image {
  box-sizing: border-box;
}



.s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
      position: relative;
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

@media (min-width: 1200px){#s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  margin: 0 !important;
  overflow: visible;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  /* Add background color handling */
  
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shogun-image-content {
  
    justify-content: center;
  
}

.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image {
  box-sizing: border-box;
}



.s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
      position: relative;
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  margin: 0 !important;
  overflow: visible;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  /* Add background color handling */
  
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shogun-image-content {
  
    justify-content: center;
  
}

.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image {
  box-sizing: border-box;
}



.s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
      position: relative;
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  margin: 0 !important;
  overflow: visible;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  /* Add background color handling */
  
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shogun-image-content {
  
    justify-content: center;
  
}

.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image {
  box-sizing: border-box;
}



.s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
      position: relative;
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (max-width: 767px){#s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  margin: 0 !important;
  overflow: visible;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  /* Add background color handling */
  
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-df7b3138-f859-4e09-ad51-dc76c2262b9b .shogun-image-content {
  
    justify-content: center;
  
}

.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image {
  box-sizing: border-box;
}



.s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container {
      position: relative;
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df7b3138-f859-4e09-ad51-dc76c2262b9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}
@media (min-width: 0px) {
[id="s-a5d4950c-be25-4a06-8dd5-1e950aed5075"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a5d4950c-be25-4a06-8dd5-1e950aed5075"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a5d4950c-be25-4a06-8dd5-1e950aed5075"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a5d4950c-be25-4a06-8dd5-1e950aed5075"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-f1e30593-af3c-4414-b240-7770eaba11e7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f1e30593-af3c-4414-b240-7770eaba11e7"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f1e30593-af3c-4414-b240-7770eaba11e7"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f1e30593-af3c-4414-b240-7770eaba11e7"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f1e30593-af3c-4414-b240-7770eaba11e7"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f1e30593-af3c-4414-b240-7770eaba11e7"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f1e30593-af3c-4414-b240-7770eaba11e7"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-a3fa4a20-1867-4230-b7c1-ba36c3b8d652 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-7c7a5e12-9feb-4c5d-9328-428d4d2b05a4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7c7a5e12-9feb-4c5d-9328-428d4d2b05a4"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-7c7a5e12-9feb-4c5d-9328-428d4d2b05a4"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7c7a5e12-9feb-4c5d-9328-428d4d2b05a4"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-7c7a5e12-9feb-4c5d-9328-428d4d2b05a4"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7c7a5e12-9feb-4c5d-9328-428d4d2b05a4"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-7c7a5e12-9feb-4c5d-9328-428d4d2b05a4"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-5634f936-bfe6-46fe-8e45-2cd92b64a71e {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-dd202877-b2ce-45e8-bceb-2578128ceab7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-dd202877-b2ce-45e8-bceb-2578128ceab7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-dd202877-b2ce-45e8-bceb-2578128ceab7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-dd202877-b2ce-45e8-bceb-2578128ceab7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-9967cb1e-3df2-481f-817b-43831c380ca6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9967cb1e-3df2-481f-817b-43831c380ca6"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-9967cb1e-3df2-481f-817b-43831c380ca6"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9967cb1e-3df2-481f-817b-43831c380ca6"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-9967cb1e-3df2-481f-817b-43831c380ca6"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9967cb1e-3df2-481f-817b-43831c380ca6"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-9967cb1e-3df2-481f-817b-43831c380ca6"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-8cbb55d7-a542-4f07-b7d6-a7866ea96616 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-03638553-0c2e-4504-b304-cc3f1a8de160"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-03638553-0c2e-4504-b304-cc3f1a8de160"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-03638553-0c2e-4504-b304-cc3f1a8de160"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-03638553-0c2e-4504-b304-cc3f1a8de160"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-03638553-0c2e-4504-b304-cc3f1a8de160"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-03638553-0c2e-4504-b304-cc3f1a8de160"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-03638553-0c2e-4504-b304-cc3f1a8de160"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-bc452c53-5e6f-4a7b-bef5-521f0dcd8496 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-1c0c121d-3846-4cf7-b1f4-d9420095fe10"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1c0c121d-3846-4cf7-b1f4-d9420095fe10"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1c0c121d-3846-4cf7-b1f4-d9420095fe10"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1c0c121d-3846-4cf7-b1f4-d9420095fe10"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-35080d85-ee8c-4f77-92d6-f13889bdf847"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-35080d85-ee8c-4f77-92d6-f13889bdf847"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-35080d85-ee8c-4f77-92d6-f13889bdf847"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-35080d85-ee8c-4f77-92d6-f13889bdf847"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-35080d85-ee8c-4f77-92d6-f13889bdf847"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-35080d85-ee8c-4f77-92d6-f13889bdf847"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-35080d85-ee8c-4f77-92d6-f13889bdf847"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-0225ceef-4d73-4a3a-be3a-9ec30932c97e {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-27be9477-b306-4043-a3b4-8bd54d4fe2c2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-27be9477-b306-4043-a3b4-8bd54d4fe2c2"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-27be9477-b306-4043-a3b4-8bd54d4fe2c2"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-27be9477-b306-4043-a3b4-8bd54d4fe2c2"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-27be9477-b306-4043-a3b4-8bd54d4fe2c2"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-27be9477-b306-4043-a3b4-8bd54d4fe2c2"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-27be9477-b306-4043-a3b4-8bd54d4fe2c2"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-d419ead4-5607-47d8-a3d5-765de8443e41 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-ac61776e-50fc-494b-9c23-2b3fa76769f1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ac61776e-50fc-494b-9c23-2b3fa76769f1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ac61776e-50fc-494b-9c23-2b3fa76769f1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ac61776e-50fc-494b-9c23-2b3fa76769f1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-0023fc57-27bb-4d96-a9d2-b1c53cbc0afc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0023fc57-27bb-4d96-a9d2-b1c53cbc0afc"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0023fc57-27bb-4d96-a9d2-b1c53cbc0afc"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0023fc57-27bb-4d96-a9d2-b1c53cbc0afc"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0023fc57-27bb-4d96-a9d2-b1c53cbc0afc"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0023fc57-27bb-4d96-a9d2-b1c53cbc0afc"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0023fc57-27bb-4d96-a9d2-b1c53cbc0afc"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-d817ae12-5aeb-4ff7-ae52-2eda96769389 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-ab56b81d-d7d7-4dbd-93a0-9e8e28c0c66f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ab56b81d-d7d7-4dbd-93a0-9e8e28c0c66f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ab56b81d-d7d7-4dbd-93a0-9e8e28c0c66f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ab56b81d-d7d7-4dbd-93a0-9e8e28c0c66f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ab56b81d-d7d7-4dbd-93a0-9e8e28c0c66f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ab56b81d-d7d7-4dbd-93a0-9e8e28c0c66f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ab56b81d-d7d7-4dbd-93a0-9e8e28c0c66f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-52e9b995-708d-4232-ae8b-d87e9fcca998 {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-dab90108-228d-4410-b572-d40bb7b5e9cd {
  margin-top: -10px;
margin-bottom: -10px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-dab90108-228d-4410-b572-d40bb7b5e9cd hr {
  border-top: 1px solid #ddd;
}

@media (min-width: 0px) {
[id="s-27b7517f-86b3-4d2e-80f3-7414b059f776"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-27b7517f-86b3-4d2e-80f3-7414b059f776"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-27b7517f-86b3-4d2e-80f3-7414b059f776"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-27b7517f-86b3-4d2e-80f3-7414b059f776"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-8507b7ab-d116-4a11-a321-94da4f73c3e7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8507b7ab-d116-4a11-a321-94da4f73c3e7"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8507b7ab-d116-4a11-a321-94da4f73c3e7"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8507b7ab-d116-4a11-a321-94da4f73c3e7"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8507b7ab-d116-4a11-a321-94da4f73c3e7"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8507b7ab-d116-4a11-a321-94da4f73c3e7"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8507b7ab-d116-4a11-a321-94da4f73c3e7"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-800b6fa6-3efd-404e-93f6-b918cc38f63f {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-3dca47ec-b208-4628-bb94-7fedfe750037"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3dca47ec-b208-4628-bb94-7fedfe750037"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-3dca47ec-b208-4628-bb94-7fedfe750037"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3dca47ec-b208-4628-bb94-7fedfe750037"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-3dca47ec-b208-4628-bb94-7fedfe750037"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3dca47ec-b208-4628-bb94-7fedfe750037"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-3dca47ec-b208-4628-bb94-7fedfe750037"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-7020f9bf-cd8a-4c4d-9100-47be10a850ab {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-d709af62-a303-4e60-9e4f-35e87300ddc2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d709af62-a303-4e60-9e4f-35e87300ddc2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d709af62-a303-4e60-9e4f-35e87300ddc2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d709af62-a303-4e60-9e4f-35e87300ddc2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-f0ae34f2-b3ab-4ae5-8d4b-d5542f75ed64"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f0ae34f2-b3ab-4ae5-8d4b-d5542f75ed64"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f0ae34f2-b3ab-4ae5-8d4b-d5542f75ed64"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f0ae34f2-b3ab-4ae5-8d4b-d5542f75ed64"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f0ae34f2-b3ab-4ae5-8d4b-d5542f75ed64"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f0ae34f2-b3ab-4ae5-8d4b-d5542f75ed64"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f0ae34f2-b3ab-4ae5-8d4b-d5542f75ed64"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-20fc0a00-cf03-4cd5-a023-3026fedfe313 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-a7fa3b6d-e95e-40b3-adb3-c2fa2c047509"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a7fa3b6d-e95e-40b3-adb3-c2fa2c047509"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a7fa3b6d-e95e-40b3-adb3-c2fa2c047509"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a7fa3b6d-e95e-40b3-adb3-c2fa2c047509"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a7fa3b6d-e95e-40b3-adb3-c2fa2c047509"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a7fa3b6d-e95e-40b3-adb3-c2fa2c047509"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a7fa3b6d-e95e-40b3-adb3-c2fa2c047509"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-9847e8d4-6d75-4ed3-b6df-9b9790253f78 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-171b4126-e1cb-43e1-bbc5-6277bed8bd15"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-171b4126-e1cb-43e1-bbc5-6277bed8bd15"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-171b4126-e1cb-43e1-bbc5-6277bed8bd15"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-171b4126-e1cb-43e1-bbc5-6277bed8bd15"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-efdda1cf-99b2-46ea-9682-8423f67acdef"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-efdda1cf-99b2-46ea-9682-8423f67acdef"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-efdda1cf-99b2-46ea-9682-8423f67acdef"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-efdda1cf-99b2-46ea-9682-8423f67acdef"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-efdda1cf-99b2-46ea-9682-8423f67acdef"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-efdda1cf-99b2-46ea-9682-8423f67acdef"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-efdda1cf-99b2-46ea-9682-8423f67acdef"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-c495cc9c-edf5-4e6e-97d9-b6aaf72ba3b7 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-1086368d-3b8a-465a-a66a-f4bfe76e5470"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1086368d-3b8a-465a-a66a-f4bfe76e5470"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1086368d-3b8a-465a-a66a-f4bfe76e5470"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1086368d-3b8a-465a-a66a-f4bfe76e5470"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1086368d-3b8a-465a-a66a-f4bfe76e5470"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1086368d-3b8a-465a-a66a-f4bfe76e5470"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1086368d-3b8a-465a-a66a-f4bfe76e5470"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-aa3b3bae-f468-4e25-8189-37d5791bd7cc {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-f449db87-e14e-4a99-b1c3-2deca497dc2b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f449db87-e14e-4a99-b1c3-2deca497dc2b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f449db87-e14e-4a99-b1c3-2deca497dc2b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f449db87-e14e-4a99-b1c3-2deca497dc2b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-ae86aa38-bda9-4127-9133-2dec52873056"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ae86aa38-bda9-4127-9133-2dec52873056"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ae86aa38-bda9-4127-9133-2dec52873056"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ae86aa38-bda9-4127-9133-2dec52873056"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ae86aa38-bda9-4127-9133-2dec52873056"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ae86aa38-bda9-4127-9133-2dec52873056"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ae86aa38-bda9-4127-9133-2dec52873056"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-191e08d5-5f23-4599-9d67-0a8a38f5fd5e {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-b133f1c4-b72d-4067-bb6e-5799bccf8611"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b133f1c4-b72d-4067-bb6e-5799bccf8611"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b133f1c4-b72d-4067-bb6e-5799bccf8611"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b133f1c4-b72d-4067-bb6e-5799bccf8611"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b133f1c4-b72d-4067-bb6e-5799bccf8611"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b133f1c4-b72d-4067-bb6e-5799bccf8611"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b133f1c4-b72d-4067-bb6e-5799bccf8611"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-37de18cd-571b-4273-aa9e-c249e2d26489 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-4fca2b10-5564-41c0-858a-f4062bd610df"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4fca2b10-5564-41c0-858a-f4062bd610df"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-4fca2b10-5564-41c0-858a-f4062bd610df"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4fca2b10-5564-41c0-858a-f4062bd610df"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-4fca2b10-5564-41c0-858a-f4062bd610df"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4fca2b10-5564-41c0-858a-f4062bd610df"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-4fca2b10-5564-41c0-858a-f4062bd610df"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  max-width: 1920px;
aspect-ratio: 1920/1095;
text-align: center;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image {
  box-sizing: border-box;
}



.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
      position: relative;
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

@media (min-width: 1200px){#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image {
  box-sizing: border-box;
}



.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
      position: relative;
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image {
  box-sizing: border-box;
}



.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
      position: relative;
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image {
  box-sizing: border-box;
}



.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
      position: relative;
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (max-width: 767px){#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image {
  box-sizing: border-box;
}



.s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container {
      position: relative;
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c0aeeaaa-22e2-4534-96eb-8f209cd729a7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}
#s-6b828aca-d3d4-456f-8393-362d48823dbe {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 1%;
padding-right: 1%;
}

#s-c750f8e5-53aa-4959-8439-4bb9ed0925d7 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 20px;
padding-left: 1%;
padding-bottom: 20px;
padding-right: 1%;
}

@media (min-width: 0px) {
[id="s-b60dca75-6d11-42d3-90a5-17fe0744ee27"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b60dca75-6d11-42d3-90a5-17fe0744ee27"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b60dca75-6d11-42d3-90a5-17fe0744ee27"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b60dca75-6d11-42d3-90a5-17fe0744ee27"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-226bebea-ffa1-4460-b665-363a777706c8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-226bebea-ffa1-4460-b665-363a777706c8"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-226bebea-ffa1-4460-b665-363a777706c8"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-226bebea-ffa1-4460-b665-363a777706c8"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-226bebea-ffa1-4460-b665-363a777706c8"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-226bebea-ffa1-4460-b665-363a777706c8"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-226bebea-ffa1-4460-b665-363a777706c8"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-679dbca7-9a5f-43c6-aef8-f6d7806dc2ca {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-96670133-0981-49cb-afc8-f948db25fb93"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-96670133-0981-49cb-afc8-f948db25fb93"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-96670133-0981-49cb-afc8-f948db25fb93"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-96670133-0981-49cb-afc8-f948db25fb93"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-96670133-0981-49cb-afc8-f948db25fb93"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-96670133-0981-49cb-afc8-f948db25fb93"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-96670133-0981-49cb-afc8-f948db25fb93"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-77a564d5-6ddb-4534-8b20-57b295e0213e {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-2d278fb9-3749-4e12-a0b9-bc911aeb8e7a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2d278fb9-3749-4e12-a0b9-bc911aeb8e7a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2d278fb9-3749-4e12-a0b9-bc911aeb8e7a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2d278fb9-3749-4e12-a0b9-bc911aeb8e7a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-23f8e707-388a-4904-b038-9a63dbf81c4f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-23f8e707-388a-4904-b038-9a63dbf81c4f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-23f8e707-388a-4904-b038-9a63dbf81c4f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-23f8e707-388a-4904-b038-9a63dbf81c4f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-23f8e707-388a-4904-b038-9a63dbf81c4f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-23f8e707-388a-4904-b038-9a63dbf81c4f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-23f8e707-388a-4904-b038-9a63dbf81c4f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-88532541-667f-4d96-8250-87391cbadf50 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-09e9d766-26ba-49c1-ae7b-c5b3aca990b6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-09e9d766-26ba-49c1-ae7b-c5b3aca990b6"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-09e9d766-26ba-49c1-ae7b-c5b3aca990b6"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-09e9d766-26ba-49c1-ae7b-c5b3aca990b6"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-09e9d766-26ba-49c1-ae7b-c5b3aca990b6"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-09e9d766-26ba-49c1-ae7b-c5b3aca990b6"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-09e9d766-26ba-49c1-ae7b-c5b3aca990b6"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-70901aa3-a064-44a9-8b36-856299e9358b {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-3c469b57-652d-4a94-b433-12d94923fea5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3c469b57-652d-4a94-b433-12d94923fea5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3c469b57-652d-4a94-b433-12d94923fea5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3c469b57-652d-4a94-b433-12d94923fea5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-4232234f-590e-4792-ad76-2522e57bd844"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4232234f-590e-4792-ad76-2522e57bd844"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4232234f-590e-4792-ad76-2522e57bd844"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4232234f-590e-4792-ad76-2522e57bd844"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4232234f-590e-4792-ad76-2522e57bd844"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4232234f-590e-4792-ad76-2522e57bd844"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4232234f-590e-4792-ad76-2522e57bd844"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-97e67ac5-94ff-498b-811f-34d7a4a15e61 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-db7d6dbd-3969-45a2-8bb0-bdda05b35706"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-db7d6dbd-3969-45a2-8bb0-bdda05b35706"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-db7d6dbd-3969-45a2-8bb0-bdda05b35706"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-db7d6dbd-3969-45a2-8bb0-bdda05b35706"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-db7d6dbd-3969-45a2-8bb0-bdda05b35706"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-db7d6dbd-3969-45a2-8bb0-bdda05b35706"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-db7d6dbd-3969-45a2-8bb0-bdda05b35706"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-9269af70-e0a9-416f-8228-391720b66ddd {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-bf6b8ab0-27e0-4acb-8ff1-4138dd576dac"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bf6b8ab0-27e0-4acb-8ff1-4138dd576dac"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-bf6b8ab0-27e0-4acb-8ff1-4138dd576dac"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-bf6b8ab0-27e0-4acb-8ff1-4138dd576dac"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-2f705a1e-5c41-4652-b799-fac65f10e19c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2f705a1e-5c41-4652-b799-fac65f10e19c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2f705a1e-5c41-4652-b799-fac65f10e19c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2f705a1e-5c41-4652-b799-fac65f10e19c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2f705a1e-5c41-4652-b799-fac65f10e19c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2f705a1e-5c41-4652-b799-fac65f10e19c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2f705a1e-5c41-4652-b799-fac65f10e19c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-a93d13bb-b7d9-4483-9b98-072a00248546 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-64e4d83f-d48e-4edd-9357-15238c557f28"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-64e4d83f-d48e-4edd-9357-15238c557f28"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-64e4d83f-d48e-4edd-9357-15238c557f28"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-64e4d83f-d48e-4edd-9357-15238c557f28"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-64e4d83f-d48e-4edd-9357-15238c557f28"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-64e4d83f-d48e-4edd-9357-15238c557f28"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-64e4d83f-d48e-4edd-9357-15238c557f28"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-7fdb199e-5dc6-4e91-9665-ac9c25bfca2d {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-980a9cbe-4a60-49c0-b776-07a6b0fa49fb {
  margin-top: -10px;
margin-bottom: -10px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-980a9cbe-4a60-49c0-b776-07a6b0fa49fb hr {
  border-top: 1px solid #ddd;
}

@media (min-width: 0px) {
[id="s-bc991582-9d5f-4706-b912-89d1f20c710a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bc991582-9d5f-4706-b912-89d1f20c710a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-bc991582-9d5f-4706-b912-89d1f20c710a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-bc991582-9d5f-4706-b912-89d1f20c710a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-90a0d87e-88d8-4478-ab8a-611f0c743383"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-90a0d87e-88d8-4478-ab8a-611f0c743383"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-90a0d87e-88d8-4478-ab8a-611f0c743383"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-90a0d87e-88d8-4478-ab8a-611f0c743383"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-90a0d87e-88d8-4478-ab8a-611f0c743383"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-90a0d87e-88d8-4478-ab8a-611f0c743383"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-90a0d87e-88d8-4478-ab8a-611f0c743383"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-d04d8356-719f-4050-b861-3a4881018e19 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-97e8ccee-274b-42a9-9fbb-dff50d0ba1b0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-97e8ccee-274b-42a9-9fbb-dff50d0ba1b0"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-97e8ccee-274b-42a9-9fbb-dff50d0ba1b0"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-97e8ccee-274b-42a9-9fbb-dff50d0ba1b0"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-97e8ccee-274b-42a9-9fbb-dff50d0ba1b0"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-97e8ccee-274b-42a9-9fbb-dff50d0ba1b0"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-97e8ccee-274b-42a9-9fbb-dff50d0ba1b0"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-e337007e-362d-4611-a3c8-49818e662425 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-e5b320f3-cbe4-4c08-be9e-e335a04b0985"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e5b320f3-cbe4-4c08-be9e-e335a04b0985"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e5b320f3-cbe4-4c08-be9e-e335a04b0985"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e5b320f3-cbe4-4c08-be9e-e335a04b0985"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-b9003552-1a30-43dd-9071-ae718c6be378"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b9003552-1a30-43dd-9071-ae718c6be378"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b9003552-1a30-43dd-9071-ae718c6be378"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b9003552-1a30-43dd-9071-ae718c6be378"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b9003552-1a30-43dd-9071-ae718c6be378"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b9003552-1a30-43dd-9071-ae718c6be378"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b9003552-1a30-43dd-9071-ae718c6be378"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-f08f0ed0-44c3-4e72-9536-14329810b85e {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-c8145249-bc1f-4773-aea9-d0ea4a0943f4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c8145249-bc1f-4773-aea9-d0ea4a0943f4"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c8145249-bc1f-4773-aea9-d0ea4a0943f4"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c8145249-bc1f-4773-aea9-d0ea4a0943f4"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c8145249-bc1f-4773-aea9-d0ea4a0943f4"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c8145249-bc1f-4773-aea9-d0ea4a0943f4"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c8145249-bc1f-4773-aea9-d0ea4a0943f4"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-a73fad25-7dee-4176-be26-593b593b555d {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-c67810ad-67b1-46ec-85f0-c3bd3fa3adea"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c67810ad-67b1-46ec-85f0-c3bd3fa3adea"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c67810ad-67b1-46ec-85f0-c3bd3fa3adea"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c67810ad-67b1-46ec-85f0-c3bd3fa3adea"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-fa62ec53-5e60-4535-9892-22e91d731aee"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fa62ec53-5e60-4535-9892-22e91d731aee"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-fa62ec53-5e60-4535-9892-22e91d731aee"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-fa62ec53-5e60-4535-9892-22e91d731aee"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-fa62ec53-5e60-4535-9892-22e91d731aee"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-fa62ec53-5e60-4535-9892-22e91d731aee"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-fa62ec53-5e60-4535-9892-22e91d731aee"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-fcb3e244-7a4f-4e35-8ca1-dfd6f3e02fe8 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-574ff64b-3ba5-4d69-b7f4-cb7e76f01efc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-574ff64b-3ba5-4d69-b7f4-cb7e76f01efc"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-574ff64b-3ba5-4d69-b7f4-cb7e76f01efc"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-574ff64b-3ba5-4d69-b7f4-cb7e76f01efc"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-574ff64b-3ba5-4d69-b7f4-cb7e76f01efc"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-574ff64b-3ba5-4d69-b7f4-cb7e76f01efc"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-574ff64b-3ba5-4d69-b7f4-cb7e76f01efc"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-4504f6ab-6336-4e2f-9164-aa603074c6d6 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-8951c1b9-dbde-4b08-8c81-e7b95d92b121"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8951c1b9-dbde-4b08-8c81-e7b95d92b121"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8951c1b9-dbde-4b08-8c81-e7b95d92b121"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8951c1b9-dbde-4b08-8c81-e7b95d92b121"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-aa55b25b-c0e2-426e-a281-55bd16a917d2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-aa55b25b-c0e2-426e-a281-55bd16a917d2"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-aa55b25b-c0e2-426e-a281-55bd16a917d2"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-aa55b25b-c0e2-426e-a281-55bd16a917d2"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-aa55b25b-c0e2-426e-a281-55bd16a917d2"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-aa55b25b-c0e2-426e-a281-55bd16a917d2"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-aa55b25b-c0e2-426e-a281-55bd16a917d2"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-f80360fb-54ae-4360-aa6e-b811042f082e {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-4e2cabe8-482a-415f-be17-d80dddd92521"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4e2cabe8-482a-415f-be17-d80dddd92521"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4e2cabe8-482a-415f-be17-d80dddd92521"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4e2cabe8-482a-415f-be17-d80dddd92521"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4e2cabe8-482a-415f-be17-d80dddd92521"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4e2cabe8-482a-415f-be17-d80dddd92521"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4e2cabe8-482a-415f-be17-d80dddd92521"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-3498f50a-2757-4e95-b4a0-04ad69d178c0 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-0182cb5a-0cbb-4fad-bdbf-c69749d990e5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0182cb5a-0cbb-4fad-bdbf-c69749d990e5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0182cb5a-0cbb-4fad-bdbf-c69749d990e5"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0182cb5a-0cbb-4fad-bdbf-c69749d990e5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0182cb5a-0cbb-4fad-bdbf-c69749d990e5"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0182cb5a-0cbb-4fad-bdbf-c69749d990e5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0182cb5a-0cbb-4fad-bdbf-c69749d990e5"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

#s-b1f03b3d-6438-459a-98b5-462562ae6955 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 0%;
padding-right: 0%;
}

#s-25a13f82-cef6-488b-a792-0f73c901d434 {
  margin-left: 3%;
margin-right: 3%;
padding-top: 20px;
padding-left: 1%;
padding-bottom: 20px;
padding-right: 1%;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  max-width: 1920px;
aspect-ratio: 1920/1095;
text-align: center;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  margin: 0 !important;
  overflow: visible;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  /* Add background color handling */
  
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image {
  box-sizing: border-box;
}



.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
      position: relative;
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

@media (min-width: 1200px){#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  margin: 0 !important;
  overflow: visible;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  /* Add background color handling */
  
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image {
  box-sizing: border-box;
}



.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
      position: relative;
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  margin: 0 !important;
  overflow: visible;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  /* Add background color handling */
  
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image {
  box-sizing: border-box;
}



.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
      position: relative;
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  margin: 0 !important;
  overflow: visible;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  /* Add background color handling */
  
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image {
  box-sizing: border-box;
}



.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
      position: relative;
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (max-width: 767px){#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  margin: 0 !important;
  overflow: visible;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  /* Add background color handling */
  
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image {
  box-sizing: border-box;
}



.s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container {
      position: relative;
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e11d0d6f-d6d9-41bd-ae8d-042d28b0ef93 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}
@media (min-width: 0px) {
[id="s-f7327a8b-7423-4e8e-bbcc-e7fcfbe107dc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f7327a8b-7423-4e8e-bbcc-e7fcfbe107dc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f7327a8b-7423-4e8e-bbcc-e7fcfbe107dc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f7327a8b-7423-4e8e-bbcc-e7fcfbe107dc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-47f5f872-7dd6-4e03-9e8f-79a3517ea8f9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-47f5f872-7dd6-4e03-9e8f-79a3517ea8f9"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-47f5f872-7dd6-4e03-9e8f-79a3517ea8f9"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-47f5f872-7dd6-4e03-9e8f-79a3517ea8f9"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-47f5f872-7dd6-4e03-9e8f-79a3517ea8f9"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-47f5f872-7dd6-4e03-9e8f-79a3517ea8f9"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-47f5f872-7dd6-4e03-9e8f-79a3517ea8f9"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-151a56e0-a8c7-45fb-958c-9273e772526b {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-0e4394d0-002d-4a5f-8d91-9eb3109f7c1a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0e4394d0-002d-4a5f-8d91-9eb3109f7c1a"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-0e4394d0-002d-4a5f-8d91-9eb3109f7c1a"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0e4394d0-002d-4a5f-8d91-9eb3109f7c1a"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-0e4394d0-002d-4a5f-8d91-9eb3109f7c1a"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0e4394d0-002d-4a5f-8d91-9eb3109f7c1a"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-0e4394d0-002d-4a5f-8d91-9eb3109f7c1a"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-0e8a8878-c8aa-41d1-a8ac-6d52515864ab {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-68ce89e8-5713-4d82-ad1c-68106d8d784d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-68ce89e8-5713-4d82-ad1c-68106d8d784d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-68ce89e8-5713-4d82-ad1c-68106d8d784d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-68ce89e8-5713-4d82-ad1c-68106d8d784d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-f2c906ae-760f-4271-b3cd-28c22b3c3654"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f2c906ae-760f-4271-b3cd-28c22b3c3654"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f2c906ae-760f-4271-b3cd-28c22b3c3654"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f2c906ae-760f-4271-b3cd-28c22b3c3654"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f2c906ae-760f-4271-b3cd-28c22b3c3654"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f2c906ae-760f-4271-b3cd-28c22b3c3654"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f2c906ae-760f-4271-b3cd-28c22b3c3654"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-eb19a16c-bf5b-4437-a542-fe41ba94c668 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-d2ae615b-6b05-4d95-81d7-bb7e71adc018"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d2ae615b-6b05-4d95-81d7-bb7e71adc018"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d2ae615b-6b05-4d95-81d7-bb7e71adc018"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d2ae615b-6b05-4d95-81d7-bb7e71adc018"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d2ae615b-6b05-4d95-81d7-bb7e71adc018"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d2ae615b-6b05-4d95-81d7-bb7e71adc018"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d2ae615b-6b05-4d95-81d7-bb7e71adc018"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-e1b386d3-9c63-47db-8268-c97ee34ee624 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-1342535d-2068-493c-a3d4-41b277af2045"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1342535d-2068-493c-a3d4-41b277af2045"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1342535d-2068-493c-a3d4-41b277af2045"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1342535d-2068-493c-a3d4-41b277af2045"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-14003bb0-af82-4e21-b10e-2eaff35ada43"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-14003bb0-af82-4e21-b10e-2eaff35ada43"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-14003bb0-af82-4e21-b10e-2eaff35ada43"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-14003bb0-af82-4e21-b10e-2eaff35ada43"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-14003bb0-af82-4e21-b10e-2eaff35ada43"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-14003bb0-af82-4e21-b10e-2eaff35ada43"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-14003bb0-af82-4e21-b10e-2eaff35ada43"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-0ca75cb8-5b39-4c2d-a780-b8c9072c35c6 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-7743cbcc-ad8a-4665-bfa9-54b44c91401b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7743cbcc-ad8a-4665-bfa9-54b44c91401b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7743cbcc-ad8a-4665-bfa9-54b44c91401b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7743cbcc-ad8a-4665-bfa9-54b44c91401b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7743cbcc-ad8a-4665-bfa9-54b44c91401b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7743cbcc-ad8a-4665-bfa9-54b44c91401b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7743cbcc-ad8a-4665-bfa9-54b44c91401b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-a9bd8f53-d37c-489e-91f1-37d4b6a91486 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-7f4ccd8e-f80b-49ca-892b-8eb6ced9e8f3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7f4ccd8e-f80b-49ca-892b-8eb6ced9e8f3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7f4ccd8e-f80b-49ca-892b-8eb6ced9e8f3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7f4ccd8e-f80b-49ca-892b-8eb6ced9e8f3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-bce85aab-cefb-4c9c-b467-81e0c3787bde"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bce85aab-cefb-4c9c-b467-81e0c3787bde"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-bce85aab-cefb-4c9c-b467-81e0c3787bde"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-bce85aab-cefb-4c9c-b467-81e0c3787bde"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-bce85aab-cefb-4c9c-b467-81e0c3787bde"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-bce85aab-cefb-4c9c-b467-81e0c3787bde"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-bce85aab-cefb-4c9c-b467-81e0c3787bde"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-f4f1d94e-3b07-46a2-9ff4-9298a923ac0f {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-c9c826d4-92aa-4262-b55a-7bc40c84e0f3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c9c826d4-92aa-4262-b55a-7bc40c84e0f3"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c9c826d4-92aa-4262-b55a-7bc40c84e0f3"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c9c826d4-92aa-4262-b55a-7bc40c84e0f3"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c9c826d4-92aa-4262-b55a-7bc40c84e0f3"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c9c826d4-92aa-4262-b55a-7bc40c84e0f3"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c9c826d4-92aa-4262-b55a-7bc40c84e0f3"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-66ae29c9-48d5-4c06-a874-b1df5016aa16 {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-6ccbd91c-169e-4fae-8aea-738e3533d8fd {
  margin-top: -10px;
margin-bottom: -10px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-6ccbd91c-169e-4fae-8aea-738e3533d8fd hr {
  border-top: 1px solid #ddd;
}

@media (min-width: 0px) {
[id="s-0cc3e2ad-ccb1-4d18-8d9b-db7d99ca86cf"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0cc3e2ad-ccb1-4d18-8d9b-db7d99ca86cf"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0cc3e2ad-ccb1-4d18-8d9b-db7d99ca86cf"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0cc3e2ad-ccb1-4d18-8d9b-db7d99ca86cf"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-b1b59772-7b11-48b1-b8e8-a0fd0d2822f8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b1b59772-7b11-48b1-b8e8-a0fd0d2822f8"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-b1b59772-7b11-48b1-b8e8-a0fd0d2822f8"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b1b59772-7b11-48b1-b8e8-a0fd0d2822f8"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-b1b59772-7b11-48b1-b8e8-a0fd0d2822f8"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b1b59772-7b11-48b1-b8e8-a0fd0d2822f8"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-b1b59772-7b11-48b1-b8e8-a0fd0d2822f8"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-85061f75-d7a5-4fe2-b4f6-ce9d1fe7e30c {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-8d6cfa80-649e-4f82-be83-ae5e4dacb18f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8d6cfa80-649e-4f82-be83-ae5e4dacb18f"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8d6cfa80-649e-4f82-be83-ae5e4dacb18f"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8d6cfa80-649e-4f82-be83-ae5e4dacb18f"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8d6cfa80-649e-4f82-be83-ae5e4dacb18f"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8d6cfa80-649e-4f82-be83-ae5e4dacb18f"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8d6cfa80-649e-4f82-be83-ae5e4dacb18f"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-a02287aa-293e-4c0a-84df-6bfc6c9a7f1d {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-f9f90b4e-d273-46d6-a0b0-48af350c8ded"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f9f90b4e-d273-46d6-a0b0-48af350c8ded"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f9f90b4e-d273-46d6-a0b0-48af350c8ded"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f9f90b4e-d273-46d6-a0b0-48af350c8ded"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-33a37f98-68ec-45f8-91aa-21f49946d414"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-33a37f98-68ec-45f8-91aa-21f49946d414"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-33a37f98-68ec-45f8-91aa-21f49946d414"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-33a37f98-68ec-45f8-91aa-21f49946d414"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-33a37f98-68ec-45f8-91aa-21f49946d414"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-33a37f98-68ec-45f8-91aa-21f49946d414"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-33a37f98-68ec-45f8-91aa-21f49946d414"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-4a390245-30ab-4412-b9e1-c2b1a6e391a9 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-226e4885-0e84-40c9-8ee2-25e4457757c6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-226e4885-0e84-40c9-8ee2-25e4457757c6"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-226e4885-0e84-40c9-8ee2-25e4457757c6"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-226e4885-0e84-40c9-8ee2-25e4457757c6"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-226e4885-0e84-40c9-8ee2-25e4457757c6"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-226e4885-0e84-40c9-8ee2-25e4457757c6"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-226e4885-0e84-40c9-8ee2-25e4457757c6"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-fc035745-a2fa-4ff6-97b4-09f027723d85 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-7fb35164-dfe4-417e-a8ce-e66a0793c04e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7fb35164-dfe4-417e-a8ce-e66a0793c04e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7fb35164-dfe4-417e-a8ce-e66a0793c04e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7fb35164-dfe4-417e-a8ce-e66a0793c04e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-d6b2b25c-f39d-4e8c-9030-daead8791718"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d6b2b25c-f39d-4e8c-9030-daead8791718"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d6b2b25c-f39d-4e8c-9030-daead8791718"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d6b2b25c-f39d-4e8c-9030-daead8791718"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d6b2b25c-f39d-4e8c-9030-daead8791718"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d6b2b25c-f39d-4e8c-9030-daead8791718"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d6b2b25c-f39d-4e8c-9030-daead8791718"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-a3d4d39b-5edd-4267-8900-b91319f7caac {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-baedd65e-bf6e-40ed-a7c9-08cfc4db3630"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-baedd65e-bf6e-40ed-a7c9-08cfc4db3630"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-baedd65e-bf6e-40ed-a7c9-08cfc4db3630"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-baedd65e-bf6e-40ed-a7c9-08cfc4db3630"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-baedd65e-bf6e-40ed-a7c9-08cfc4db3630"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-baedd65e-bf6e-40ed-a7c9-08cfc4db3630"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-baedd65e-bf6e-40ed-a7c9-08cfc4db3630"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-6ffed58a-da24-44b5-8067-d1d770aba37a {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-f32c3c52-c890-4086-8270-75ca6ae29576"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f32c3c52-c890-4086-8270-75ca6ae29576"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-f32c3c52-c890-4086-8270-75ca6ae29576"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f32c3c52-c890-4086-8270-75ca6ae29576"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-f32c3c52-c890-4086-8270-75ca6ae29576"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f32c3c52-c890-4086-8270-75ca6ae29576"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-f32c3c52-c890-4086-8270-75ca6ae29576"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

#s-8ea90a74-e8c3-457b-9212-138e90a4924b {
  max-width: 1920px;
aspect-ratio: 1920/1095;
text-align: center;
}

#s-8ea90a74-e8c3-457b-9212-138e90a4924b {
  margin: 0 !important;
  overflow: visible;
}

#s-8ea90a74-e8c3-457b-9212-138e90a4924b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8ea90a74-e8c3-457b-9212-138e90a4924b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8ea90a74-e8c3-457b-9212-138e90a4924b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8ea90a74-e8c3-457b-9212-138e90a4924b img.shogun-image {
  /* Add background color handling */
  
}

#s-8ea90a74-e8c3-457b-9212-138e90a4924b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8ea90a74-e8c3-457b-9212-138e90a4924b .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-8ea90a74-e8c3-457b-9212-138e90a4924b .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8ea90a74-e8c3-457b-9212-138e90a4924b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8ea90a74-e8c3-457b-9212-138e90a4924b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-8ea90a74-e8c3-457b-9212-138e90a4924b .shogun-image-content {
  
    justify-content: center;
  
}

.s-8ea90a74-e8c3-457b-9212-138e90a4924b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image {
  box-sizing: border-box;
}



.s-8ea90a74-e8c3-457b-9212-138e90a4924b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8ea90a74-e8c3-457b-9212-138e90a4924b {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image-container {
      position: relative;
    }

    .s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8ea90a74-e8c3-457b-9212-138e90a4924b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

@media (min-width: 1200px){#s-8ea90a74-e8c3-457b-9212-138e90a4924b {
  margin: 0 !important;
  overflow: visible;
}

#s-8ea90a74-e8c3-457b-9212-138e90a4924b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8ea90a74-e8c3-457b-9212-138e90a4924b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8ea90a74-e8c3-457b-9212-138e90a4924b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8ea90a74-e8c3-457b-9212-138e90a4924b img.shogun-image {
  /* Add background color handling */
  
}

#s-8ea90a74-e8c3-457b-9212-138e90a4924b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8ea90a74-e8c3-457b-9212-138e90a4924b .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-8ea90a74-e8c3-457b-9212-138e90a4924b .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8ea90a74-e8c3-457b-9212-138e90a4924b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8ea90a74-e8c3-457b-9212-138e90a4924b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-8ea90a74-e8c3-457b-9212-138e90a4924b .shogun-image-content {
  
    justify-content: center;
  
}

.s-8ea90a74-e8c3-457b-9212-138e90a4924b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image {
  box-sizing: border-box;
}



.s-8ea90a74-e8c3-457b-9212-138e90a4924b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8ea90a74-e8c3-457b-9212-138e90a4924b {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image-container {
      position: relative;
    }

    .s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8ea90a74-e8c3-457b-9212-138e90a4924b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-8ea90a74-e8c3-457b-9212-138e90a4924b {
  margin: 0 !important;
  overflow: visible;
}

#s-8ea90a74-e8c3-457b-9212-138e90a4924b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8ea90a74-e8c3-457b-9212-138e90a4924b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8ea90a74-e8c3-457b-9212-138e90a4924b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8ea90a74-e8c3-457b-9212-138e90a4924b img.shogun-image {
  /* Add background color handling */
  
}

#s-8ea90a74-e8c3-457b-9212-138e90a4924b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8ea90a74-e8c3-457b-9212-138e90a4924b .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-8ea90a74-e8c3-457b-9212-138e90a4924b .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8ea90a74-e8c3-457b-9212-138e90a4924b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8ea90a74-e8c3-457b-9212-138e90a4924b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-8ea90a74-e8c3-457b-9212-138e90a4924b .shogun-image-content {
  
    justify-content: center;
  
}

.s-8ea90a74-e8c3-457b-9212-138e90a4924b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image {
  box-sizing: border-box;
}



.s-8ea90a74-e8c3-457b-9212-138e90a4924b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8ea90a74-e8c3-457b-9212-138e90a4924b {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image-container {
      position: relative;
    }

    .s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8ea90a74-e8c3-457b-9212-138e90a4924b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-8ea90a74-e8c3-457b-9212-138e90a4924b {
  margin: 0 !important;
  overflow: visible;
}

#s-8ea90a74-e8c3-457b-9212-138e90a4924b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8ea90a74-e8c3-457b-9212-138e90a4924b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8ea90a74-e8c3-457b-9212-138e90a4924b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8ea90a74-e8c3-457b-9212-138e90a4924b img.shogun-image {
  /* Add background color handling */
  
}

#s-8ea90a74-e8c3-457b-9212-138e90a4924b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8ea90a74-e8c3-457b-9212-138e90a4924b .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-8ea90a74-e8c3-457b-9212-138e90a4924b .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8ea90a74-e8c3-457b-9212-138e90a4924b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8ea90a74-e8c3-457b-9212-138e90a4924b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-8ea90a74-e8c3-457b-9212-138e90a4924b .shogun-image-content {
  
    justify-content: center;
  
}

.s-8ea90a74-e8c3-457b-9212-138e90a4924b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image {
  box-sizing: border-box;
}



.s-8ea90a74-e8c3-457b-9212-138e90a4924b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8ea90a74-e8c3-457b-9212-138e90a4924b {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image-container {
      position: relative;
    }

    .s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8ea90a74-e8c3-457b-9212-138e90a4924b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (max-width: 767px){#s-8ea90a74-e8c3-457b-9212-138e90a4924b {
  margin: 0 !important;
  overflow: visible;
}

#s-8ea90a74-e8c3-457b-9212-138e90a4924b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8ea90a74-e8c3-457b-9212-138e90a4924b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8ea90a74-e8c3-457b-9212-138e90a4924b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8ea90a74-e8c3-457b-9212-138e90a4924b img.shogun-image {
  /* Add background color handling */
  
}

#s-8ea90a74-e8c3-457b-9212-138e90a4924b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8ea90a74-e8c3-457b-9212-138e90a4924b .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-8ea90a74-e8c3-457b-9212-138e90a4924b .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8ea90a74-e8c3-457b-9212-138e90a4924b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8ea90a74-e8c3-457b-9212-138e90a4924b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-8ea90a74-e8c3-457b-9212-138e90a4924b .shogun-image-content {
  
    justify-content: center;
  
}

.s-8ea90a74-e8c3-457b-9212-138e90a4924b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image {
  box-sizing: border-box;
}



.s-8ea90a74-e8c3-457b-9212-138e90a4924b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8ea90a74-e8c3-457b-9212-138e90a4924b {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image-container {
      position: relative;
    }

    .s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8ea90a74-e8c3-457b-9212-138e90a4924b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8ea90a74-e8c3-457b-9212-138e90a4924b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}
#s-2894249c-5677-41b9-bea0-8d95b1189425 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 1%;
padding-right: 1%;
}

#s-66ec3a8b-d90e-497c-b81b-dc118bb0fadf {
  margin-left: 4%;
margin-right: 4%;
padding-top: 20px;
padding-left: 1%;
padding-bottom: 20px;
padding-right: 1%;
}

@media (min-width: 0px) {
[id="s-0413b2f1-2f67-442a-bff6-cfa82953537d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0413b2f1-2f67-442a-bff6-cfa82953537d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0413b2f1-2f67-442a-bff6-cfa82953537d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0413b2f1-2f67-442a-bff6-cfa82953537d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-8047cb37-d359-45ae-a70e-23acb4352fc5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8047cb37-d359-45ae-a70e-23acb4352fc5"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8047cb37-d359-45ae-a70e-23acb4352fc5"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8047cb37-d359-45ae-a70e-23acb4352fc5"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8047cb37-d359-45ae-a70e-23acb4352fc5"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8047cb37-d359-45ae-a70e-23acb4352fc5"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8047cb37-d359-45ae-a70e-23acb4352fc5"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-f5cd4853-fd67-4344-a9e9-8f9b6ea7f36b {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-73e86751-805b-4e71-a94a-dce088b86726"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-73e86751-805b-4e71-a94a-dce088b86726"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-73e86751-805b-4e71-a94a-dce088b86726"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-73e86751-805b-4e71-a94a-dce088b86726"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-73e86751-805b-4e71-a94a-dce088b86726"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-73e86751-805b-4e71-a94a-dce088b86726"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-73e86751-805b-4e71-a94a-dce088b86726"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px){#s-a87da65a-9345-4f4e-9345-3638a64faf68 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-cc711aa8-05b8-4ed8-8a92-132ccd30761c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cc711aa8-05b8-4ed8-8a92-132ccd30761c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-cc711aa8-05b8-4ed8-8a92-132ccd30761c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-cc711aa8-05b8-4ed8-8a92-132ccd30761c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-4d35fc4a-57db-486a-9c96-ca10f2725141"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4d35fc4a-57db-486a-9c96-ca10f2725141"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4d35fc4a-57db-486a-9c96-ca10f2725141"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4d35fc4a-57db-486a-9c96-ca10f2725141"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4d35fc4a-57db-486a-9c96-ca10f2725141"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4d35fc4a-57db-486a-9c96-ca10f2725141"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4d35fc4a-57db-486a-9c96-ca10f2725141"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-c023d23e-f2a3-43a1-b720-2440fbcaf946 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-ed2a8224-924f-4195-869d-16d520b00b1e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ed2a8224-924f-4195-869d-16d520b00b1e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ed2a8224-924f-4195-869d-16d520b00b1e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ed2a8224-924f-4195-869d-16d520b00b1e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ed2a8224-924f-4195-869d-16d520b00b1e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ed2a8224-924f-4195-869d-16d520b00b1e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ed2a8224-924f-4195-869d-16d520b00b1e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-fc6d3ac5-60f4-40e3-954f-d1f753f95c24 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-7fe1efb9-4752-4da9-8ce3-c88f95c3182d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7fe1efb9-4752-4da9-8ce3-c88f95c3182d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7fe1efb9-4752-4da9-8ce3-c88f95c3182d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7fe1efb9-4752-4da9-8ce3-c88f95c3182d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-7fda37c4-4a3a-47cd-8436-a78cd363ecb0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7fda37c4-4a3a-47cd-8436-a78cd363ecb0"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7fda37c4-4a3a-47cd-8436-a78cd363ecb0"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7fda37c4-4a3a-47cd-8436-a78cd363ecb0"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7fda37c4-4a3a-47cd-8436-a78cd363ecb0"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7fda37c4-4a3a-47cd-8436-a78cd363ecb0"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7fda37c4-4a3a-47cd-8436-a78cd363ecb0"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-fed12097-37e7-4158-a924-ec18ed57c33f {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-d3b307dd-019b-4791-8e7a-c1dfbb974629"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d3b307dd-019b-4791-8e7a-c1dfbb974629"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d3b307dd-019b-4791-8e7a-c1dfbb974629"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d3b307dd-019b-4791-8e7a-c1dfbb974629"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d3b307dd-019b-4791-8e7a-c1dfbb974629"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d3b307dd-019b-4791-8e7a-c1dfbb974629"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d3b307dd-019b-4791-8e7a-c1dfbb974629"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-cd486d3c-a38e-4b18-be78-7d8e427945e3 {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-1ceab5ec-97d9-409e-9f2c-034383d5bf63 {
  margin-top: -10px;
margin-bottom: -10px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-1ceab5ec-97d9-409e-9f2c-034383d5bf63 hr {
  border-top: 1px solid #ddd;
}

@media (min-width: 0px) {
[id="s-7669ae0f-dffa-43b0-befc-0f0940565219"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7669ae0f-dffa-43b0-befc-0f0940565219"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7669ae0f-dffa-43b0-befc-0f0940565219"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7669ae0f-dffa-43b0-befc-0f0940565219"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-e0c5a409-a6db-416c-aa95-5204d0a5ef55"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e0c5a409-a6db-416c-aa95-5204d0a5ef55"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e0c5a409-a6db-416c-aa95-5204d0a5ef55"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e0c5a409-a6db-416c-aa95-5204d0a5ef55"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e0c5a409-a6db-416c-aa95-5204d0a5ef55"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e0c5a409-a6db-416c-aa95-5204d0a5ef55"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e0c5a409-a6db-416c-aa95-5204d0a5ef55"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-ed5c1533-6669-448b-8822-568974c26f0d {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-21ca41f4-fc45-4c9c-bee6-d3106cf0869c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-21ca41f4-fc45-4c9c-bee6-d3106cf0869c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-21ca41f4-fc45-4c9c-bee6-d3106cf0869c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-21ca41f4-fc45-4c9c-bee6-d3106cf0869c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-21ca41f4-fc45-4c9c-bee6-d3106cf0869c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-21ca41f4-fc45-4c9c-bee6-d3106cf0869c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-21ca41f4-fc45-4c9c-bee6-d3106cf0869c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-3b8982b2-9b3a-40e7-82b2-8783830d18f7 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-4b2777b8-b54a-4356-9981-8ba452bf4c98"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4b2777b8-b54a-4356-9981-8ba452bf4c98"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4b2777b8-b54a-4356-9981-8ba452bf4c98"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4b2777b8-b54a-4356-9981-8ba452bf4c98"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-d08c959c-8d98-4e1f-b0c8-10a143f2befc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d08c959c-8d98-4e1f-b0c8-10a143f2befc"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d08c959c-8d98-4e1f-b0c8-10a143f2befc"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d08c959c-8d98-4e1f-b0c8-10a143f2befc"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d08c959c-8d98-4e1f-b0c8-10a143f2befc"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d08c959c-8d98-4e1f-b0c8-10a143f2befc"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d08c959c-8d98-4e1f-b0c8-10a143f2befc"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-ba138936-6bdd-44bf-80f1-8c4e1c48d207 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-48699f0d-8cd6-4146-901a-49ee27d5142e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-48699f0d-8cd6-4146-901a-49ee27d5142e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-48699f0d-8cd6-4146-901a-49ee27d5142e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-48699f0d-8cd6-4146-901a-49ee27d5142e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-48699f0d-8cd6-4146-901a-49ee27d5142e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-48699f0d-8cd6-4146-901a-49ee27d5142e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-48699f0d-8cd6-4146-901a-49ee27d5142e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-f564e378-db35-45e8-9b2f-aa89047da084 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-a8db86e4-4f4f-4aaf-8d4c-61e909eb0014"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a8db86e4-4f4f-4aaf-8d4c-61e909eb0014"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a8db86e4-4f4f-4aaf-8d4c-61e909eb0014"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a8db86e4-4f4f-4aaf-8d4c-61e909eb0014"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a8db86e4-4f4f-4aaf-8d4c-61e909eb0014"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a8db86e4-4f4f-4aaf-8d4c-61e909eb0014"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a8db86e4-4f4f-4aaf-8d4c-61e909eb0014"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

#s-7567a649-ba99-4ad6-a717-bf63242bb3c7 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 0%;
padding-right: 0%;
}

#s-a4f94895-f18e-41a9-9411-82d131cabc7b {
  margin-left: 3%;
margin-right: 3%;
padding-top: 20px;
padding-left: 1%;
padding-bottom: 20px;
padding-right: 1%;
}

#s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c {
  max-width: 1920px;
aspect-ratio: 1920/1095;
text-align: center;
}

#s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c {
  margin: 0 !important;
  overflow: visible;
}

#s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c img.shogun-image {
  /* Add background color handling */
  
}

#s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c .shogun-image-content {
  
    justify-content: center;
  
}

.s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image {
  box-sizing: border-box;
}



.s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image-container {
      position: relative;
    }

    .s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

@media (min-width: 1200px){#s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c {
  margin: 0 !important;
  overflow: visible;
}

#s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c img.shogun-image {
  /* Add background color handling */
  
}

#s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c .shogun-image-content {
  
    justify-content: center;
  
}

.s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image {
  box-sizing: border-box;
}



.s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image-container {
      position: relative;
    }

    .s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c {
  margin: 0 !important;
  overflow: visible;
}

#s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c img.shogun-image {
  /* Add background color handling */
  
}

#s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c .shogun-image-content {
  
    justify-content: center;
  
}

.s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image {
  box-sizing: border-box;
}



.s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image-container {
      position: relative;
    }

    .s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c {
  margin: 0 !important;
  overflow: visible;
}

#s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c img.shogun-image {
  /* Add background color handling */
  
}

#s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c .shogun-image-content {
  
    justify-content: center;
  
}

.s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image {
  box-sizing: border-box;
}



.s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image-container {
      position: relative;
    }

    .s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (max-width: 767px){#s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c {
  margin: 0 !important;
  overflow: visible;
}

#s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c img.shogun-image {
  /* Add background color handling */
  
}

#s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c .shg-image-content-wrapper {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }

    #s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c .shogun-image-link {
      aspect-ratio: 1920/1095;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c .shogun-image-content {
  
    justify-content: center;
  
}

.s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image {
  box-sizing: border-box;
}



.s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c {
      --shg-aspect-ratio: calc(1920/1095); 
    }

    .s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image-container {
      position: relative;
    }

    .s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c3c7cfdb-431c-4dbb-bf98-0c964ade0c1c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}
@media (min-width: 0px) {
[id="s-8d296a78-03f4-49ac-8a27-fb623225dda0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8d296a78-03f4-49ac-8a27-fb623225dda0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8d296a78-03f4-49ac-8a27-fb623225dda0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8d296a78-03f4-49ac-8a27-fb623225dda0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-cf379c6d-d6d9-4e08-a1e2-cc7f6297ecef"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cf379c6d-d6d9-4e08-a1e2-cc7f6297ecef"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-cf379c6d-d6d9-4e08-a1e2-cc7f6297ecef"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-cf379c6d-d6d9-4e08-a1e2-cc7f6297ecef"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-cf379c6d-d6d9-4e08-a1e2-cc7f6297ecef"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-cf379c6d-d6d9-4e08-a1e2-cc7f6297ecef"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-cf379c6d-d6d9-4e08-a1e2-cc7f6297ecef"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-9613532d-c1c2-41c5-b011-8cc3be0549e8 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-9828055f-8bb1-4c57-ae31-e30d0a827f61"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9828055f-8bb1-4c57-ae31-e30d0a827f61"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-9828055f-8bb1-4c57-ae31-e30d0a827f61"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9828055f-8bb1-4c57-ae31-e30d0a827f61"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-9828055f-8bb1-4c57-ae31-e30d0a827f61"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9828055f-8bb1-4c57-ae31-e30d0a827f61"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-9828055f-8bb1-4c57-ae31-e30d0a827f61"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-33e81b21-3483-4a52-8213-b7467aba7d22 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-a5ac9a6f-f62e-4c94-aa48-d67e90d8bb12"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a5ac9a6f-f62e-4c94-aa48-d67e90d8bb12"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a5ac9a6f-f62e-4c94-aa48-d67e90d8bb12"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a5ac9a6f-f62e-4c94-aa48-d67e90d8bb12"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-e4526118-4ba6-478b-b882-e21a6e143dad"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e4526118-4ba6-478b-b882-e21a6e143dad"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e4526118-4ba6-478b-b882-e21a6e143dad"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e4526118-4ba6-478b-b882-e21a6e143dad"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e4526118-4ba6-478b-b882-e21a6e143dad"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e4526118-4ba6-478b-b882-e21a6e143dad"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e4526118-4ba6-478b-b882-e21a6e143dad"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-c2b49c25-7e26-4a7b-b3f4-11d23ad950ed {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-4d88d4ad-80f2-4aa6-aad9-2e1c49be6d1e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4d88d4ad-80f2-4aa6-aad9-2e1c49be6d1e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4d88d4ad-80f2-4aa6-aad9-2e1c49be6d1e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4d88d4ad-80f2-4aa6-aad9-2e1c49be6d1e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4d88d4ad-80f2-4aa6-aad9-2e1c49be6d1e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4d88d4ad-80f2-4aa6-aad9-2e1c49be6d1e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4d88d4ad-80f2-4aa6-aad9-2e1c49be6d1e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-6ad4ac30-ca2e-45a3-ab8f-96ba6ccc7761 {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-8032e1e2-81be-4d0e-969b-63766ad82ac8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8032e1e2-81be-4d0e-969b-63766ad82ac8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8032e1e2-81be-4d0e-969b-63766ad82ac8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8032e1e2-81be-4d0e-969b-63766ad82ac8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-4b5c181c-cf54-4cbd-8505-53fd185ca3d7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4b5c181c-cf54-4cbd-8505-53fd185ca3d7"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4b5c181c-cf54-4cbd-8505-53fd185ca3d7"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4b5c181c-cf54-4cbd-8505-53fd185ca3d7"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4b5c181c-cf54-4cbd-8505-53fd185ca3d7"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4b5c181c-cf54-4cbd-8505-53fd185ca3d7"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-4b5c181c-cf54-4cbd-8505-53fd185ca3d7"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-e313a7c1-cc71-46ee-8f18-1e74d7a7883a {
  background-color: rgba(232, 232, 232, 1);
}
}
@media (min-width: 0px) {
[id="s-affc2826-3a4d-44e9-b2dd-1496e7efc549"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-affc2826-3a4d-44e9-b2dd-1496e7efc549"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-affc2826-3a4d-44e9-b2dd-1496e7efc549"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-affc2826-3a4d-44e9-b2dd-1496e7efc549"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-affc2826-3a4d-44e9-b2dd-1496e7efc549"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-affc2826-3a4d-44e9-b2dd-1496e7efc549"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-affc2826-3a4d-44e9-b2dd-1496e7efc549"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px){#s-90919c7a-eb7a-4383-be1e-6f3c658ee4c0 {
  background-color: rgba(232, 232, 232, 1);
}
}
#s-fa685e59-af13-4d67-97a1-25cdd50ef2c8 {
  margin-top: -8px;
margin-bottom: -8px;
min-height: 50px;
}








#s-fa685e59-af13-4d67-97a1-25cdd50ef2c8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fa685e59-af13-4d67-97a1-25cdd50ef2c8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6e4e5499-633b-497c-b321-e9e9bdbb8e2f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6e4e5499-633b-497c-b321-e9e9bdbb8e2f .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-871fbced-318a-4cfa-9b69-c1dc11081692 {
  margin-top: -8px;
margin-bottom: -8px;
min-height: 50px;
}








#s-871fbced-318a-4cfa-9b69-c1dc11081692 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-871fbced-318a-4cfa-9b69-c1dc11081692.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-586480b6-11df-4b10-9b8d-95b8ca2f7570"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-586480b6-11df-4b10-9b8d-95b8ca2f7570"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-586480b6-11df-4b10-9b8d-95b8ca2f7570"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-586480b6-11df-4b10-9b8d-95b8ca2f7570"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-b3eac6db-8eab-4b32-909e-6f8c785681ec {
  max-width: 543px;
aspect-ratio: 543/185;
text-align: center;
}
@media (min-width: 1200px){#s-b3eac6db-8eab-4b32-909e-6f8c785681ec {
  max-width: 200px;
}
}
#s-b3eac6db-8eab-4b32-909e-6f8c785681ec {
  margin: 0 !important;
  overflow: visible;
}

#s-b3eac6db-8eab-4b32-909e-6f8c785681ec-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b3eac6db-8eab-4b32-909e-6f8c785681ec {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b3eac6db-8eab-4b32-909e-6f8c785681ec {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b3eac6db-8eab-4b32-909e-6f8c785681ec img.shogun-image {
  /* Add background color handling */
  
}

#s-b3eac6db-8eab-4b32-909e-6f8c785681ec img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b3eac6db-8eab-4b32-909e-6f8c785681ec .shg-image-content-wrapper {
      aspect-ratio: 543/185;
      min-width: 100%;
      height: auto;
    }

    #s-b3eac6db-8eab-4b32-909e-6f8c785681ec .shogun-image-link {
      aspect-ratio: 543/185;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b3eac6db-8eab-4b32-909e-6f8c785681ec .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b3eac6db-8eab-4b32-909e-6f8c785681ec img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 543px;
  }



  img.s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image {
    
    
    
    max-height: 543px;
  }


.s-b3eac6db-8eab-4b32-909e-6f8c785681ec .shogun-image-content {
  
    justify-content: center;
  
}

.s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image {
  box-sizing: border-box;
}



.s-b3eac6db-8eab-4b32-909e-6f8c785681ec img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b3eac6db-8eab-4b32-909e-6f8c785681ec {
      --shg-aspect-ratio: calc(543/185); 
    }

    .s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image-container {
      position: relative;
    }

    .s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b3eac6db-8eab-4b32-909e-6f8c785681ec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 543px;
    }
  }

@media (min-width: 1200px){#s-b3eac6db-8eab-4b32-909e-6f8c785681ec {
  margin: 0 !important;
  overflow: visible;
}

#s-b3eac6db-8eab-4b32-909e-6f8c785681ec-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b3eac6db-8eab-4b32-909e-6f8c785681ec {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b3eac6db-8eab-4b32-909e-6f8c785681ec {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b3eac6db-8eab-4b32-909e-6f8c785681ec img.shogun-image {
  /* Add background color handling */
  
}

#s-b3eac6db-8eab-4b32-909e-6f8c785681ec img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b3eac6db-8eab-4b32-909e-6f8c785681ec .shg-image-content-wrapper {
      aspect-ratio: 543/185;
      min-width: 100%;
      height: auto;
    }

    #s-b3eac6db-8eab-4b32-909e-6f8c785681ec .shogun-image-link {
      aspect-ratio: 543/185;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b3eac6db-8eab-4b32-909e-6f8c785681ec .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b3eac6db-8eab-4b32-909e-6f8c785681ec img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 543px;
  }



  img.s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image {
    
    
    
    max-height: 543px;
  }


.s-b3eac6db-8eab-4b32-909e-6f8c785681ec .shogun-image-content {
  
    justify-content: center;
  
}

.s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image {
  box-sizing: border-box;
}



.s-b3eac6db-8eab-4b32-909e-6f8c785681ec img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b3eac6db-8eab-4b32-909e-6f8c785681ec {
      --shg-aspect-ratio: calc(543/185); 
    }

    .s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image-container {
      position: relative;
    }

    .s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b3eac6db-8eab-4b32-909e-6f8c785681ec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 543px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-b3eac6db-8eab-4b32-909e-6f8c785681ec {
  margin: 0 !important;
  overflow: visible;
}

#s-b3eac6db-8eab-4b32-909e-6f8c785681ec-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b3eac6db-8eab-4b32-909e-6f8c785681ec {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b3eac6db-8eab-4b32-909e-6f8c785681ec {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b3eac6db-8eab-4b32-909e-6f8c785681ec img.shogun-image {
  /* Add background color handling */
  
}

#s-b3eac6db-8eab-4b32-909e-6f8c785681ec img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b3eac6db-8eab-4b32-909e-6f8c785681ec .shg-image-content-wrapper {
      aspect-ratio: 543/185;
      min-width: 100%;
      height: auto;
    }

    #s-b3eac6db-8eab-4b32-909e-6f8c785681ec .shogun-image-link {
      aspect-ratio: 543/185;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b3eac6db-8eab-4b32-909e-6f8c785681ec .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b3eac6db-8eab-4b32-909e-6f8c785681ec img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 543px;
  }



  img.s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image {
    
    
    
    max-height: 543px;
  }


.s-b3eac6db-8eab-4b32-909e-6f8c785681ec .shogun-image-content {
  
    justify-content: center;
  
}

.s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image {
  box-sizing: border-box;
}



.s-b3eac6db-8eab-4b32-909e-6f8c785681ec img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b3eac6db-8eab-4b32-909e-6f8c785681ec {
      --shg-aspect-ratio: calc(543/185); 
    }

    .s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image-container {
      position: relative;
    }

    .s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b3eac6db-8eab-4b32-909e-6f8c785681ec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 543px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-b3eac6db-8eab-4b32-909e-6f8c785681ec {
  margin: 0 !important;
  overflow: visible;
}

#s-b3eac6db-8eab-4b32-909e-6f8c785681ec-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b3eac6db-8eab-4b32-909e-6f8c785681ec {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b3eac6db-8eab-4b32-909e-6f8c785681ec {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b3eac6db-8eab-4b32-909e-6f8c785681ec img.shogun-image {
  /* Add background color handling */
  
}

#s-b3eac6db-8eab-4b32-909e-6f8c785681ec img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b3eac6db-8eab-4b32-909e-6f8c785681ec .shg-image-content-wrapper {
      aspect-ratio: 543/185;
      min-width: 100%;
      height: auto;
    }

    #s-b3eac6db-8eab-4b32-909e-6f8c785681ec .shogun-image-link {
      aspect-ratio: 543/185;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b3eac6db-8eab-4b32-909e-6f8c785681ec .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b3eac6db-8eab-4b32-909e-6f8c785681ec img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 543px;
  }



  img.s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image {
    
    
    
    max-height: 543px;
  }


.s-b3eac6db-8eab-4b32-909e-6f8c785681ec .shogun-image-content {
  
    justify-content: center;
  
}

.s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image {
  box-sizing: border-box;
}



.s-b3eac6db-8eab-4b32-909e-6f8c785681ec img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b3eac6db-8eab-4b32-909e-6f8c785681ec {
      --shg-aspect-ratio: calc(543/185); 
    }

    .s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image-container {
      position: relative;
    }

    .s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b3eac6db-8eab-4b32-909e-6f8c785681ec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 543px;
    }
  }

}@media (max-width: 767px){#s-b3eac6db-8eab-4b32-909e-6f8c785681ec {
  margin: 0 !important;
  overflow: visible;
}

#s-b3eac6db-8eab-4b32-909e-6f8c785681ec-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b3eac6db-8eab-4b32-909e-6f8c785681ec {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b3eac6db-8eab-4b32-909e-6f8c785681ec {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b3eac6db-8eab-4b32-909e-6f8c785681ec img.shogun-image {
  /* Add background color handling */
  
}

#s-b3eac6db-8eab-4b32-909e-6f8c785681ec img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b3eac6db-8eab-4b32-909e-6f8c785681ec .shg-image-content-wrapper {
      aspect-ratio: 543/185;
      min-width: 100%;
      height: auto;
    }

    #s-b3eac6db-8eab-4b32-909e-6f8c785681ec .shogun-image-link {
      aspect-ratio: 543/185;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b3eac6db-8eab-4b32-909e-6f8c785681ec .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b3eac6db-8eab-4b32-909e-6f8c785681ec img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 543px;
  }



  img.s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image {
    
    
    
    max-height: 543px;
  }


.s-b3eac6db-8eab-4b32-909e-6f8c785681ec .shogun-image-content {
  
    justify-content: center;
  
}

.s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image {
  box-sizing: border-box;
}



.s-b3eac6db-8eab-4b32-909e-6f8c785681ec img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b3eac6db-8eab-4b32-909e-6f8c785681ec {
      --shg-aspect-ratio: calc(543/185); 
    }

    .s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image-container {
      position: relative;
    }

    .s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b3eac6db-8eab-4b32-909e-6f8c785681ec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b3eac6db-8eab-4b32-909e-6f8c785681ec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 543px;
    }
  }

}
@media (min-width: 1200px){#s-34a0fc16-084e-4960-8bf3-9f01a120b5da {
  margin-top: 10px;
margin-left: 5%;
margin-bottom: 10px;
margin-right: 5%;
min-height: 0px;
}
}
#s-46528d48-6646-4fb9-b753-e31b1738ba14 {
  margin-top: -8px;
margin-bottom: -8px;
min-height: 50px;
}








#s-46528d48-6646-4fb9-b753-e31b1738ba14 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-46528d48-6646-4fb9-b753-e31b1738ba14.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c8838b88-5d13-487a-8265-21974fe4b1c4 {
  margin-top: -8px;
margin-bottom: -8px;
min-height: 50px;
}








#s-c8838b88-5d13-487a-8265-21974fe4b1c4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c8838b88-5d13-487a-8265-21974fe4b1c4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-d74a18b9-225d-4ea4-ae14-66f3ba7998a5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d74a18b9-225d-4ea4-ae14-66f3ba7998a5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-d74a18b9-225d-4ea4-ae14-66f3ba7998a5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-d74a18b9-225d-4ea4-ae14-66f3ba7998a5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-538b3ef1-7741-4f17-9e68-71279399698c {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-538b3ef1-7741-4f17-9e68-71279399698c {
  margin: 0 !important;
  overflow: visible;
}

#s-538b3ef1-7741-4f17-9e68-71279399698c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-538b3ef1-7741-4f17-9e68-71279399698c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-538b3ef1-7741-4f17-9e68-71279399698c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-538b3ef1-7741-4f17-9e68-71279399698c img.shogun-image {
  /* Add background color handling */
  
}

#s-538b3ef1-7741-4f17-9e68-71279399698c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-538b3ef1-7741-4f17-9e68-71279399698c .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-538b3ef1-7741-4f17-9e68-71279399698c .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-538b3ef1-7741-4f17-9e68-71279399698c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-538b3ef1-7741-4f17-9e68-71279399698c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-538b3ef1-7741-4f17-9e68-71279399698c .shogun-image-content {
  
    justify-content: center;
  
}

.s-538b3ef1-7741-4f17-9e68-71279399698c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image {
  box-sizing: border-box;
}



.s-538b3ef1-7741-4f17-9e68-71279399698c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-538b3ef1-7741-4f17-9e68-71279399698c {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image-container {
      position: relative;
    }

    .s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-538b3ef1-7741-4f17-9e68-71279399698c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-538b3ef1-7741-4f17-9e68-71279399698c {
  margin: 0 !important;
  overflow: visible;
}

#s-538b3ef1-7741-4f17-9e68-71279399698c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-538b3ef1-7741-4f17-9e68-71279399698c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-538b3ef1-7741-4f17-9e68-71279399698c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-538b3ef1-7741-4f17-9e68-71279399698c img.shogun-image {
  /* Add background color handling */
  
}

#s-538b3ef1-7741-4f17-9e68-71279399698c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-538b3ef1-7741-4f17-9e68-71279399698c .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-538b3ef1-7741-4f17-9e68-71279399698c .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-538b3ef1-7741-4f17-9e68-71279399698c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-538b3ef1-7741-4f17-9e68-71279399698c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-538b3ef1-7741-4f17-9e68-71279399698c .shogun-image-content {
  
    justify-content: center;
  
}

.s-538b3ef1-7741-4f17-9e68-71279399698c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image {
  box-sizing: border-box;
}



.s-538b3ef1-7741-4f17-9e68-71279399698c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-538b3ef1-7741-4f17-9e68-71279399698c {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image-container {
      position: relative;
    }

    .s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-538b3ef1-7741-4f17-9e68-71279399698c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-538b3ef1-7741-4f17-9e68-71279399698c {
  margin: 0 !important;
  overflow: visible;
}

#s-538b3ef1-7741-4f17-9e68-71279399698c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-538b3ef1-7741-4f17-9e68-71279399698c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-538b3ef1-7741-4f17-9e68-71279399698c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-538b3ef1-7741-4f17-9e68-71279399698c img.shogun-image {
  /* Add background color handling */
  
}

#s-538b3ef1-7741-4f17-9e68-71279399698c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-538b3ef1-7741-4f17-9e68-71279399698c .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-538b3ef1-7741-4f17-9e68-71279399698c .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-538b3ef1-7741-4f17-9e68-71279399698c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-538b3ef1-7741-4f17-9e68-71279399698c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-538b3ef1-7741-4f17-9e68-71279399698c .shogun-image-content {
  
    justify-content: center;
  
}

.s-538b3ef1-7741-4f17-9e68-71279399698c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image {
  box-sizing: border-box;
}



.s-538b3ef1-7741-4f17-9e68-71279399698c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-538b3ef1-7741-4f17-9e68-71279399698c {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image-container {
      position: relative;
    }

    .s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-538b3ef1-7741-4f17-9e68-71279399698c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-538b3ef1-7741-4f17-9e68-71279399698c {
  margin: 0 !important;
  overflow: visible;
}

#s-538b3ef1-7741-4f17-9e68-71279399698c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-538b3ef1-7741-4f17-9e68-71279399698c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-538b3ef1-7741-4f17-9e68-71279399698c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-538b3ef1-7741-4f17-9e68-71279399698c img.shogun-image {
  /* Add background color handling */
  
}

#s-538b3ef1-7741-4f17-9e68-71279399698c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-538b3ef1-7741-4f17-9e68-71279399698c .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-538b3ef1-7741-4f17-9e68-71279399698c .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-538b3ef1-7741-4f17-9e68-71279399698c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-538b3ef1-7741-4f17-9e68-71279399698c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-538b3ef1-7741-4f17-9e68-71279399698c .shogun-image-content {
  
    justify-content: center;
  
}

.s-538b3ef1-7741-4f17-9e68-71279399698c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image {
  box-sizing: border-box;
}



.s-538b3ef1-7741-4f17-9e68-71279399698c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-538b3ef1-7741-4f17-9e68-71279399698c {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image-container {
      position: relative;
    }

    .s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-538b3ef1-7741-4f17-9e68-71279399698c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-538b3ef1-7741-4f17-9e68-71279399698c {
  margin: 0 !important;
  overflow: visible;
}

#s-538b3ef1-7741-4f17-9e68-71279399698c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-538b3ef1-7741-4f17-9e68-71279399698c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-538b3ef1-7741-4f17-9e68-71279399698c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-538b3ef1-7741-4f17-9e68-71279399698c img.shogun-image {
  /* Add background color handling */
  
}

#s-538b3ef1-7741-4f17-9e68-71279399698c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-538b3ef1-7741-4f17-9e68-71279399698c .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-538b3ef1-7741-4f17-9e68-71279399698c .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-538b3ef1-7741-4f17-9e68-71279399698c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-538b3ef1-7741-4f17-9e68-71279399698c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-538b3ef1-7741-4f17-9e68-71279399698c .shogun-image-content {
  
    justify-content: center;
  
}

.s-538b3ef1-7741-4f17-9e68-71279399698c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image {
  box-sizing: border-box;
}



.s-538b3ef1-7741-4f17-9e68-71279399698c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-538b3ef1-7741-4f17-9e68-71279399698c {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image-container {
      position: relative;
    }

    .s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-538b3ef1-7741-4f17-9e68-71279399698c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-538b3ef1-7741-4f17-9e68-71279399698c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
#s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 {
  max-width: 1464px;
aspect-ratio: 1464/600;
text-align: center;
}

#s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 {
  margin: 0 !important;
  overflow: visible;
}

#s-3e2ff79d-740d-41ef-b442-44a9c25d00b0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 img.shogun-image {
  /* Add background color handling */
  
}

#s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image {
  box-sizing: border-box;
}



.s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image-container {
      position: relative;
    }

    .s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

@media (min-width: 1200px){#s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 {
  margin: 0 !important;
  overflow: visible;
}

#s-3e2ff79d-740d-41ef-b442-44a9c25d00b0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 img.shogun-image {
  /* Add background color handling */
  
}

#s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image {
  box-sizing: border-box;
}



.s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image-container {
      position: relative;
    }

    .s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 {
  margin: 0 !important;
  overflow: visible;
}

#s-3e2ff79d-740d-41ef-b442-44a9c25d00b0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 img.shogun-image {
  /* Add background color handling */
  
}

#s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image {
  box-sizing: border-box;
}



.s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image-container {
      position: relative;
    }

    .s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 {
  margin: 0 !important;
  overflow: visible;
}

#s-3e2ff79d-740d-41ef-b442-44a9c25d00b0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 img.shogun-image {
  /* Add background color handling */
  
}

#s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image {
  box-sizing: border-box;
}



.s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image-container {
      position: relative;
    }

    .s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}@media (max-width: 767px){#s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 {
  margin: 0 !important;
  overflow: visible;
}

#s-3e2ff79d-740d-41ef-b442-44a9c25d00b0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 img.shogun-image {
  /* Add background color handling */
  
}

#s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 .shg-image-content-wrapper {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }

    #s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 .shogun-image-link {
      aspect-ratio: 1464/600;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1464px;
  }



  img.s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image {
    
    
    
    max-height: 1464px;
  }


.s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image {
  box-sizing: border-box;
}



.s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 {
      --shg-aspect-ratio: calc(1464/600); 
    }

    .s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image-container {
      position: relative;
    }

    .s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e2ff79d-740d-41ef-b442-44a9c25d00b0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e2ff79d-740d-41ef-b442-44a9c25d00b0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1464px;
    }
  }

}
@media (min-width: 0px) {
[id="s-0ad892eb-c780-417f-a7df-ad6c66553652"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-0ad892eb-c780-417f-a7df-ad6c66553652"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-0ad892eb-c780-417f-a7df-ad6c66553652"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-0ad892eb-c780-417f-a7df-ad6c66553652"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-5e314d07-e76f-4ad8-925f-55bb286bdb41 {
  max-width: 1601px;
aspect-ratio: 1/1;
text-align: center;
}

#s-5e314d07-e76f-4ad8-925f-55bb286bdb41 {
  margin: 0 !important;
  overflow: visible;
}

#s-5e314d07-e76f-4ad8-925f-55bb286bdb41-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5e314d07-e76f-4ad8-925f-55bb286bdb41 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5e314d07-e76f-4ad8-925f-55bb286bdb41 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5e314d07-e76f-4ad8-925f-55bb286bdb41 img.shogun-image {
  /* Add background color handling */
  
}

#s-5e314d07-e76f-4ad8-925f-55bb286bdb41 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5e314d07-e76f-4ad8-925f-55bb286bdb41 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5e314d07-e76f-4ad8-925f-55bb286bdb41 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5e314d07-e76f-4ad8-925f-55bb286bdb41 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5e314d07-e76f-4ad8-925f-55bb286bdb41 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1601px;
  }



  img.s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image {
    
    
    
    max-height: 1601px;
  }


.s-5e314d07-e76f-4ad8-925f-55bb286bdb41 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image {
  box-sizing: border-box;
}



.s-5e314d07-e76f-4ad8-925f-55bb286bdb41 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5e314d07-e76f-4ad8-925f-55bb286bdb41 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image-container {
      position: relative;
    }

    .s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5e314d07-e76f-4ad8-925f-55bb286bdb41 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1601px;
    }
  }

@media (min-width: 1200px){#s-5e314d07-e76f-4ad8-925f-55bb286bdb41 {
  margin: 0 !important;
  overflow: visible;
}

#s-5e314d07-e76f-4ad8-925f-55bb286bdb41-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5e314d07-e76f-4ad8-925f-55bb286bdb41 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5e314d07-e76f-4ad8-925f-55bb286bdb41 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5e314d07-e76f-4ad8-925f-55bb286bdb41 img.shogun-image {
  /* Add background color handling */
  
}

#s-5e314d07-e76f-4ad8-925f-55bb286bdb41 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5e314d07-e76f-4ad8-925f-55bb286bdb41 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5e314d07-e76f-4ad8-925f-55bb286bdb41 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5e314d07-e76f-4ad8-925f-55bb286bdb41 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5e314d07-e76f-4ad8-925f-55bb286bdb41 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1601px;
  }



  img.s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image {
    
    
    
    max-height: 1601px;
  }


.s-5e314d07-e76f-4ad8-925f-55bb286bdb41 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image {
  box-sizing: border-box;
}



.s-5e314d07-e76f-4ad8-925f-55bb286bdb41 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5e314d07-e76f-4ad8-925f-55bb286bdb41 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image-container {
      position: relative;
    }

    .s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5e314d07-e76f-4ad8-925f-55bb286bdb41 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1601px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-5e314d07-e76f-4ad8-925f-55bb286bdb41 {
  margin: 0 !important;
  overflow: visible;
}

#s-5e314d07-e76f-4ad8-925f-55bb286bdb41-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5e314d07-e76f-4ad8-925f-55bb286bdb41 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5e314d07-e76f-4ad8-925f-55bb286bdb41 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5e314d07-e76f-4ad8-925f-55bb286bdb41 img.shogun-image {
  /* Add background color handling */
  
}

#s-5e314d07-e76f-4ad8-925f-55bb286bdb41 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5e314d07-e76f-4ad8-925f-55bb286bdb41 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5e314d07-e76f-4ad8-925f-55bb286bdb41 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5e314d07-e76f-4ad8-925f-55bb286bdb41 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5e314d07-e76f-4ad8-925f-55bb286bdb41 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1601px;
  }



  img.s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image {
    
    
    
    max-height: 1601px;
  }


.s-5e314d07-e76f-4ad8-925f-55bb286bdb41 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image {
  box-sizing: border-box;
}



.s-5e314d07-e76f-4ad8-925f-55bb286bdb41 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5e314d07-e76f-4ad8-925f-55bb286bdb41 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image-container {
      position: relative;
    }

    .s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5e314d07-e76f-4ad8-925f-55bb286bdb41 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1601px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-5e314d07-e76f-4ad8-925f-55bb286bdb41 {
  margin: 0 !important;
  overflow: visible;
}

#s-5e314d07-e76f-4ad8-925f-55bb286bdb41-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5e314d07-e76f-4ad8-925f-55bb286bdb41 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5e314d07-e76f-4ad8-925f-55bb286bdb41 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5e314d07-e76f-4ad8-925f-55bb286bdb41 img.shogun-image {
  /* Add background color handling */
  
}

#s-5e314d07-e76f-4ad8-925f-55bb286bdb41 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5e314d07-e76f-4ad8-925f-55bb286bdb41 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5e314d07-e76f-4ad8-925f-55bb286bdb41 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5e314d07-e76f-4ad8-925f-55bb286bdb41 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5e314d07-e76f-4ad8-925f-55bb286bdb41 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1601px;
  }



  img.s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image {
    
    
    
    max-height: 1601px;
  }


.s-5e314d07-e76f-4ad8-925f-55bb286bdb41 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image {
  box-sizing: border-box;
}



.s-5e314d07-e76f-4ad8-925f-55bb286bdb41 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5e314d07-e76f-4ad8-925f-55bb286bdb41 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image-container {
      position: relative;
    }

    .s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5e314d07-e76f-4ad8-925f-55bb286bdb41 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1601px;
    }
  }

}@media (max-width: 767px){#s-5e314d07-e76f-4ad8-925f-55bb286bdb41 {
  margin: 0 !important;
  overflow: visible;
}

#s-5e314d07-e76f-4ad8-925f-55bb286bdb41-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5e314d07-e76f-4ad8-925f-55bb286bdb41 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5e314d07-e76f-4ad8-925f-55bb286bdb41 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5e314d07-e76f-4ad8-925f-55bb286bdb41 img.shogun-image {
  /* Add background color handling */
  
}

#s-5e314d07-e76f-4ad8-925f-55bb286bdb41 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5e314d07-e76f-4ad8-925f-55bb286bdb41 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5e314d07-e76f-4ad8-925f-55bb286bdb41 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5e314d07-e76f-4ad8-925f-55bb286bdb41 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5e314d07-e76f-4ad8-925f-55bb286bdb41 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1601px;
  }



  img.s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image {
    
    
    
    max-height: 1601px;
  }


.s-5e314d07-e76f-4ad8-925f-55bb286bdb41 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image {
  box-sizing: border-box;
}



.s-5e314d07-e76f-4ad8-925f-55bb286bdb41 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5e314d07-e76f-4ad8-925f-55bb286bdb41 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image-container {
      position: relative;
    }

    .s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5e314d07-e76f-4ad8-925f-55bb286bdb41.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5e314d07-e76f-4ad8-925f-55bb286bdb41 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1601px;
    }
  }

}
#s-b08419cf-a020-4e5c-b374-1e14dcb14f3d {
  max-width: 1610px;
aspect-ratio: 1/1;
text-align: center;
}

#s-b08419cf-a020-4e5c-b374-1e14dcb14f3d {
  margin: 0 !important;
  overflow: visible;
}

#s-b08419cf-a020-4e5c-b374-1e14dcb14f3d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b08419cf-a020-4e5c-b374-1e14dcb14f3d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b08419cf-a020-4e5c-b374-1e14dcb14f3d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b08419cf-a020-4e5c-b374-1e14dcb14f3d img.shogun-image {
  /* Add background color handling */
  
}

#s-b08419cf-a020-4e5c-b374-1e14dcb14f3d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b08419cf-a020-4e5c-b374-1e14dcb14f3d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b08419cf-a020-4e5c-b374-1e14dcb14f3d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b08419cf-a020-4e5c-b374-1e14dcb14f3d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b08419cf-a020-4e5c-b374-1e14dcb14f3d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1610px;
  }



  img.s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image {
    
    
    
    max-height: 1610px;
  }


.s-b08419cf-a020-4e5c-b374-1e14dcb14f3d .shogun-image-content {
  
    justify-content: center;
  
}

.s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image {
  box-sizing: border-box;
}



.s-b08419cf-a020-4e5c-b374-1e14dcb14f3d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b08419cf-a020-4e5c-b374-1e14dcb14f3d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image-container {
      position: relative;
    }

    .s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b08419cf-a020-4e5c-b374-1e14dcb14f3d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1610px;
    }
  }

@media (min-width: 1200px){#s-b08419cf-a020-4e5c-b374-1e14dcb14f3d {
  margin: 0 !important;
  overflow: visible;
}

#s-b08419cf-a020-4e5c-b374-1e14dcb14f3d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b08419cf-a020-4e5c-b374-1e14dcb14f3d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b08419cf-a020-4e5c-b374-1e14dcb14f3d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b08419cf-a020-4e5c-b374-1e14dcb14f3d img.shogun-image {
  /* Add background color handling */
  
}

#s-b08419cf-a020-4e5c-b374-1e14dcb14f3d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b08419cf-a020-4e5c-b374-1e14dcb14f3d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b08419cf-a020-4e5c-b374-1e14dcb14f3d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b08419cf-a020-4e5c-b374-1e14dcb14f3d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b08419cf-a020-4e5c-b374-1e14dcb14f3d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1610px;
  }



  img.s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image {
    
    
    
    max-height: 1610px;
  }


.s-b08419cf-a020-4e5c-b374-1e14dcb14f3d .shogun-image-content {
  
    justify-content: center;
  
}

.s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image {
  box-sizing: border-box;
}



.s-b08419cf-a020-4e5c-b374-1e14dcb14f3d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b08419cf-a020-4e5c-b374-1e14dcb14f3d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image-container {
      position: relative;
    }

    .s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b08419cf-a020-4e5c-b374-1e14dcb14f3d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1610px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-b08419cf-a020-4e5c-b374-1e14dcb14f3d {
  margin: 0 !important;
  overflow: visible;
}

#s-b08419cf-a020-4e5c-b374-1e14dcb14f3d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b08419cf-a020-4e5c-b374-1e14dcb14f3d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b08419cf-a020-4e5c-b374-1e14dcb14f3d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b08419cf-a020-4e5c-b374-1e14dcb14f3d img.shogun-image {
  /* Add background color handling */
  
}

#s-b08419cf-a020-4e5c-b374-1e14dcb14f3d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b08419cf-a020-4e5c-b374-1e14dcb14f3d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b08419cf-a020-4e5c-b374-1e14dcb14f3d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b08419cf-a020-4e5c-b374-1e14dcb14f3d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b08419cf-a020-4e5c-b374-1e14dcb14f3d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1610px;
  }



  img.s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image {
    
    
    
    max-height: 1610px;
  }


.s-b08419cf-a020-4e5c-b374-1e14dcb14f3d .shogun-image-content {
  
    justify-content: center;
  
}

.s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image {
  box-sizing: border-box;
}



.s-b08419cf-a020-4e5c-b374-1e14dcb14f3d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b08419cf-a020-4e5c-b374-1e14dcb14f3d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image-container {
      position: relative;
    }

    .s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b08419cf-a020-4e5c-b374-1e14dcb14f3d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1610px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-b08419cf-a020-4e5c-b374-1e14dcb14f3d {
  margin: 0 !important;
  overflow: visible;
}

#s-b08419cf-a020-4e5c-b374-1e14dcb14f3d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b08419cf-a020-4e5c-b374-1e14dcb14f3d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b08419cf-a020-4e5c-b374-1e14dcb14f3d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b08419cf-a020-4e5c-b374-1e14dcb14f3d img.shogun-image {
  /* Add background color handling */
  
}

#s-b08419cf-a020-4e5c-b374-1e14dcb14f3d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b08419cf-a020-4e5c-b374-1e14dcb14f3d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b08419cf-a020-4e5c-b374-1e14dcb14f3d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b08419cf-a020-4e5c-b374-1e14dcb14f3d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b08419cf-a020-4e5c-b374-1e14dcb14f3d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1610px;
  }



  img.s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image {
    
    
    
    max-height: 1610px;
  }


.s-b08419cf-a020-4e5c-b374-1e14dcb14f3d .shogun-image-content {
  
    justify-content: center;
  
}

.s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image {
  box-sizing: border-box;
}



.s-b08419cf-a020-4e5c-b374-1e14dcb14f3d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b08419cf-a020-4e5c-b374-1e14dcb14f3d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image-container {
      position: relative;
    }

    .s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b08419cf-a020-4e5c-b374-1e14dcb14f3d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1610px;
    }
  }

}@media (max-width: 767px){#s-b08419cf-a020-4e5c-b374-1e14dcb14f3d {
  margin: 0 !important;
  overflow: visible;
}

#s-b08419cf-a020-4e5c-b374-1e14dcb14f3d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b08419cf-a020-4e5c-b374-1e14dcb14f3d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b08419cf-a020-4e5c-b374-1e14dcb14f3d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b08419cf-a020-4e5c-b374-1e14dcb14f3d img.shogun-image {
  /* Add background color handling */
  
}

#s-b08419cf-a020-4e5c-b374-1e14dcb14f3d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b08419cf-a020-4e5c-b374-1e14dcb14f3d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b08419cf-a020-4e5c-b374-1e14dcb14f3d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b08419cf-a020-4e5c-b374-1e14dcb14f3d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b08419cf-a020-4e5c-b374-1e14dcb14f3d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1610px;
  }



  img.s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image {
    
    
    
    max-height: 1610px;
  }


.s-b08419cf-a020-4e5c-b374-1e14dcb14f3d .shogun-image-content {
  
    justify-content: center;
  
}

.s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image {
  box-sizing: border-box;
}



.s-b08419cf-a020-4e5c-b374-1e14dcb14f3d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b08419cf-a020-4e5c-b374-1e14dcb14f3d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image-container {
      position: relative;
    }

    .s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b08419cf-a020-4e5c-b374-1e14dcb14f3d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b08419cf-a020-4e5c-b374-1e14dcb14f3d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1610px;
    }
  }

}
#s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 {
  max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 {
  margin: 0 !important;
  overflow: visible;
}

#s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 img.shogun-image {
  /* Add background color handling */
  
}

#s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 .shogun-image-content {
  
    justify-content: center;
  
}

.s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shg-align-container {
  display: flex;
  justify-content: center
}

.s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image {
  box-sizing: border-box;
}



.s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image-container {
      position: relative;
    }

    .s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 {
  margin: 0 !important;
  overflow: visible;
}

#s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 img.shogun-image {
  /* Add background color handling */
  
}

#s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 .shogun-image-content {
  
    justify-content: center;
  
}

.s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shg-align-container {
  display: flex;
  justify-content: center
}

.s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image {
  box-sizing: border-box;
}



.s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image-container {
      position: relative;
    }

    .s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 {
  margin: 0 !important;
  overflow: visible;
}

#s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 img.shogun-image {
  /* Add background color handling */
  
}

#s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 .shogun-image-content {
  
    justify-content: center;
  
}

.s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shg-align-container {
  display: flex;
  justify-content: center
}

.s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image {
  box-sizing: border-box;
}



.s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image-container {
      position: relative;
    }

    .s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 {
  margin: 0 !important;
  overflow: visible;
}

#s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 img.shogun-image {
  /* Add background color handling */
  
}

#s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 .shogun-image-content {
  
    justify-content: center;
  
}

.s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shg-align-container {
  display: flex;
  justify-content: center
}

.s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image {
  box-sizing: border-box;
}



.s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image-container {
      position: relative;
    }

    .s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 {
  margin: 0 !important;
  overflow: visible;
}

#s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 img.shogun-image {
  /* Add background color handling */
  
}

#s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 .shogun-image-content {
  
    justify-content: center;
  
}

.s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shg-align-container {
  display: flex;
  justify-content: center
}

.s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image {
  box-sizing: border-box;
}



.s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image-container {
      position: relative;
    }

    .s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-86613a7f-f93a-41bb-9bcf-ff72e9a8a363 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa {
  max-width: 1610px;
aspect-ratio: 1/1;
text-align: center;
}

#s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa {
  margin: 0 !important;
  overflow: visible;
}

#s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa img.shogun-image {
  /* Add background color handling */
  
}

#s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1610px;
  }



  img.s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image {
    
    
    
    max-height: 1610px;
  }


.s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa .shogun-image-content {
  
    justify-content: center;
  
}

.s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image {
  box-sizing: border-box;
}



.s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image-container {
      position: relative;
    }

    .s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1610px;
    }
  }

@media (min-width: 1200px){#s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa {
  margin: 0 !important;
  overflow: visible;
}

#s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa img.shogun-image {
  /* Add background color handling */
  
}

#s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1610px;
  }



  img.s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image {
    
    
    
    max-height: 1610px;
  }


.s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa .shogun-image-content {
  
    justify-content: center;
  
}

.s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image {
  box-sizing: border-box;
}



.s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image-container {
      position: relative;
    }

    .s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1610px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa {
  margin: 0 !important;
  overflow: visible;
}

#s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa img.shogun-image {
  /* Add background color handling */
  
}

#s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1610px;
  }



  img.s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image {
    
    
    
    max-height: 1610px;
  }


.s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa .shogun-image-content {
  
    justify-content: center;
  
}

.s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image {
  box-sizing: border-box;
}



.s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image-container {
      position: relative;
    }

    .s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1610px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa {
  margin: 0 !important;
  overflow: visible;
}

#s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa img.shogun-image {
  /* Add background color handling */
  
}

#s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1610px;
  }



  img.s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image {
    
    
    
    max-height: 1610px;
  }


.s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa .shogun-image-content {
  
    justify-content: center;
  
}

.s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image {
  box-sizing: border-box;
}



.s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image-container {
      position: relative;
    }

    .s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1610px;
    }
  }

}@media (max-width: 767px){#s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa {
  margin: 0 !important;
  overflow: visible;
}

#s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa img.shogun-image {
  /* Add background color handling */
  
}

#s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1610px;
  }



  img.s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image {
    
    
    
    max-height: 1610px;
  }


.s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa .shogun-image-content {
  
    justify-content: center;
  
}

.s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image {
  box-sizing: border-box;
}



.s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image-container {
      position: relative;
    }

    .s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77b56eac-24cf-4a0f-a236-e943ddcdbaaa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1610px;
    }
  }

}
/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}

.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty:not(.shopify-section *):not([id^="wistia"]) {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}

/* <-- User Content Animations */

.shogun-form-error-msg,
.shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}
