.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-38bd3743-5efa-4358-97a3-f6ca4d7014ce {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-38bd3743-5efa-4358-97a3-f6ca4d7014ce {
  display: none;
}
#s-38bd3743-5efa-4358-97a3-f6ca4d7014ce, #wrap-s-38bd3743-5efa-4358-97a3-f6ca4d7014ce, #wrap-content-s-38bd3743-5efa-4358-97a3-f6ca4d7014ce { display: none !important; }}@media (max-width: 767px){#s-38bd3743-5efa-4358-97a3-f6ca4d7014ce {
  display: none;
}
#s-38bd3743-5efa-4358-97a3-f6ca4d7014ce, #wrap-s-38bd3743-5efa-4358-97a3-f6ca4d7014ce, #wrap-content-s-38bd3743-5efa-4358-97a3-f6ca4d7014ce { display: none !important; }}







#s-38bd3743-5efa-4358-97a3-f6ca4d7014ce > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-38bd3743-5efa-4358-97a3-f6ca4d7014ce.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-3257a4b6-4b8d-4150-8712-7d03603854cc {
  max-width: 2880px;
aspect-ratio: 2880/1521;
text-align: center;
}

#s-3257a4b6-4b8d-4150-8712-7d03603854cc {
  margin: 0 !important;
  overflow: visible;
}

#s-3257a4b6-4b8d-4150-8712-7d03603854cc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3257a4b6-4b8d-4150-8712-7d03603854cc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3257a4b6-4b8d-4150-8712-7d03603854cc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3257a4b6-4b8d-4150-8712-7d03603854cc img.shogun-image {
  /* Add background color handling */
  
}

#s-3257a4b6-4b8d-4150-8712-7d03603854cc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3257a4b6-4b8d-4150-8712-7d03603854cc .shg-image-content-wrapper {
      aspect-ratio: 2880/1521;
      min-width: 100%;
      height: auto;
    }

    #s-3257a4b6-4b8d-4150-8712-7d03603854cc .shogun-image-link {
      aspect-ratio: 2880/1521;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3257a4b6-4b8d-4150-8712-7d03603854cc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3257a4b6-4b8d-4150-8712-7d03603854cc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2880px;
  }



  img.s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image {
    
    
    
    max-height: 2880px;
  }


.s-3257a4b6-4b8d-4150-8712-7d03603854cc .shogun-image-content {
  
    justify-content: flex-end;
  
}

.s-3257a4b6-4b8d-4150-8712-7d03603854cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image {
  box-sizing: border-box;
}



.s-3257a4b6-4b8d-4150-8712-7d03603854cc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3257a4b6-4b8d-4150-8712-7d03603854cc {
      --shg-aspect-ratio: calc(2880/1521); 
    }

    .s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image-container {
      position: relative;
    }

    .s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3257a4b6-4b8d-4150-8712-7d03603854cc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2880px;
    }
  }

@media (min-width: 1200px){#s-3257a4b6-4b8d-4150-8712-7d03603854cc {
  margin: 0 !important;
  overflow: visible;
}

#s-3257a4b6-4b8d-4150-8712-7d03603854cc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3257a4b6-4b8d-4150-8712-7d03603854cc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3257a4b6-4b8d-4150-8712-7d03603854cc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3257a4b6-4b8d-4150-8712-7d03603854cc img.shogun-image {
  /* Add background color handling */
  
}

#s-3257a4b6-4b8d-4150-8712-7d03603854cc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3257a4b6-4b8d-4150-8712-7d03603854cc .shg-image-content-wrapper {
      aspect-ratio: 2880/1521;
      min-width: 100%;
      height: auto;
    }

    #s-3257a4b6-4b8d-4150-8712-7d03603854cc .shogun-image-link {
      aspect-ratio: 2880/1521;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3257a4b6-4b8d-4150-8712-7d03603854cc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3257a4b6-4b8d-4150-8712-7d03603854cc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2880px;
  }



  img.s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image {
    
    
    
    max-height: 2880px;
  }


.s-3257a4b6-4b8d-4150-8712-7d03603854cc .shogun-image-content {
  
    justify-content: flex-end;
  
}

.s-3257a4b6-4b8d-4150-8712-7d03603854cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image {
  box-sizing: border-box;
}



.s-3257a4b6-4b8d-4150-8712-7d03603854cc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3257a4b6-4b8d-4150-8712-7d03603854cc {
      --shg-aspect-ratio: calc(2880/1521); 
    }

    .s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image-container {
      position: relative;
    }

    .s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3257a4b6-4b8d-4150-8712-7d03603854cc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2880px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-3257a4b6-4b8d-4150-8712-7d03603854cc {
  margin: 0 !important;
  overflow: visible;
}

#s-3257a4b6-4b8d-4150-8712-7d03603854cc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3257a4b6-4b8d-4150-8712-7d03603854cc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3257a4b6-4b8d-4150-8712-7d03603854cc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3257a4b6-4b8d-4150-8712-7d03603854cc img.shogun-image {
  /* Add background color handling */
  
}

#s-3257a4b6-4b8d-4150-8712-7d03603854cc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3257a4b6-4b8d-4150-8712-7d03603854cc .shg-image-content-wrapper {
      aspect-ratio: 2880/1521;
      min-width: 100%;
      height: auto;
    }

    #s-3257a4b6-4b8d-4150-8712-7d03603854cc .shogun-image-link {
      aspect-ratio: 2880/1521;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3257a4b6-4b8d-4150-8712-7d03603854cc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3257a4b6-4b8d-4150-8712-7d03603854cc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2880px;
  }



  img.s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image {
    
    
    
    max-height: 2880px;
  }


.s-3257a4b6-4b8d-4150-8712-7d03603854cc .shogun-image-content {
  
    justify-content: flex-end;
  
}

.s-3257a4b6-4b8d-4150-8712-7d03603854cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image {
  box-sizing: border-box;
}



.s-3257a4b6-4b8d-4150-8712-7d03603854cc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3257a4b6-4b8d-4150-8712-7d03603854cc {
      --shg-aspect-ratio: calc(2880/1521); 
    }

    .s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image-container {
      position: relative;
    }

    .s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3257a4b6-4b8d-4150-8712-7d03603854cc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2880px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-3257a4b6-4b8d-4150-8712-7d03603854cc {
  margin: 0 !important;
  overflow: visible;
}

#s-3257a4b6-4b8d-4150-8712-7d03603854cc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3257a4b6-4b8d-4150-8712-7d03603854cc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3257a4b6-4b8d-4150-8712-7d03603854cc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3257a4b6-4b8d-4150-8712-7d03603854cc img.shogun-image {
  /* Add background color handling */
  
}

#s-3257a4b6-4b8d-4150-8712-7d03603854cc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3257a4b6-4b8d-4150-8712-7d03603854cc .shg-image-content-wrapper {
      aspect-ratio: 2880/1521;
      min-width: 100%;
      height: auto;
    }

    #s-3257a4b6-4b8d-4150-8712-7d03603854cc .shogun-image-link {
      aspect-ratio: 2880/1521;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3257a4b6-4b8d-4150-8712-7d03603854cc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3257a4b6-4b8d-4150-8712-7d03603854cc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2880px;
  }



  img.s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image {
    
    
    
    max-height: 2880px;
  }


.s-3257a4b6-4b8d-4150-8712-7d03603854cc .shogun-image-content {
  
    justify-content: flex-end;
  
}

.s-3257a4b6-4b8d-4150-8712-7d03603854cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image {
  box-sizing: border-box;
}



.s-3257a4b6-4b8d-4150-8712-7d03603854cc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3257a4b6-4b8d-4150-8712-7d03603854cc {
      --shg-aspect-ratio: calc(2880/1521); 
    }

    .s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image-container {
      position: relative;
    }

    .s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3257a4b6-4b8d-4150-8712-7d03603854cc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2880px;
    }
  }

}@media (max-width: 767px){#s-3257a4b6-4b8d-4150-8712-7d03603854cc {
  margin: 0 !important;
  overflow: visible;
}

#s-3257a4b6-4b8d-4150-8712-7d03603854cc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3257a4b6-4b8d-4150-8712-7d03603854cc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3257a4b6-4b8d-4150-8712-7d03603854cc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3257a4b6-4b8d-4150-8712-7d03603854cc img.shogun-image {
  /* Add background color handling */
  
}

#s-3257a4b6-4b8d-4150-8712-7d03603854cc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3257a4b6-4b8d-4150-8712-7d03603854cc .shg-image-content-wrapper {
      aspect-ratio: 2880/1521;
      min-width: 100%;
      height: auto;
    }

    #s-3257a4b6-4b8d-4150-8712-7d03603854cc .shogun-image-link {
      aspect-ratio: 2880/1521;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3257a4b6-4b8d-4150-8712-7d03603854cc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3257a4b6-4b8d-4150-8712-7d03603854cc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2880px;
  }



  img.s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image {
    
    
    
    max-height: 2880px;
  }


.s-3257a4b6-4b8d-4150-8712-7d03603854cc .shogun-image-content {
  
    justify-content: flex-end;
  
}

.s-3257a4b6-4b8d-4150-8712-7d03603854cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image {
  box-sizing: border-box;
}



.s-3257a4b6-4b8d-4150-8712-7d03603854cc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3257a4b6-4b8d-4150-8712-7d03603854cc {
      --shg-aspect-ratio: calc(2880/1521); 
    }

    .s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image-container {
      position: relative;
    }

    .s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3257a4b6-4b8d-4150-8712-7d03603854cc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3257a4b6-4b8d-4150-8712-7d03603854cc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2880px;
    }
  }

}
#s-2977e28e-8ebc-4421-93ba-4861eae1d1d5 {
  margin-left: auto;
margin-right: auto;
padding-bottom: 9%;
min-height: 50px;
max-width: 80%;
}








#s-2977e28e-8ebc-4421-93ba-4861eae1d1d5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2977e28e-8ebc-4421-93ba-4861eae1d1d5.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;
}

@media (min-width: 0px) {
[id="s-1cc48756-efce-408e-a4a6-fa942f7a24bb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1cc48756-efce-408e-a4a6-fa942f7a24bb"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-1cc48756-efce-408e-a4a6-fa942f7a24bb"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1cc48756-efce-408e-a4a6-fa942f7a24bb"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-1cc48756-efce-408e-a4a6-fa942f7a24bb"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1cc48756-efce-408e-a4a6-fa942f7a24bb"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-1cc48756-efce-408e-a4a6-fa942f7a24bb"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

#s-69a4dd7d-9799-4a3f-bf2f-7445ef2fbf7d {
  min-height: 50px;
}








#s-69a4dd7d-9799-4a3f-bf2f-7445ef2fbf7d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-69a4dd7d-9799-4a3f-bf2f-7445ef2fbf7d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.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: "Outfit";
  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-e664a979-75b0-4fd7-9760-c9c89aaf329a {
  margin-left: auto;
margin-bottom: 0%;
margin-right: auto;
padding-top: 0%;
padding-left: 0px;
padding-bottom: 2%;
padding-right: 0px;
text-align: left;
}

#s-e664a979-75b0-4fd7-9760-c9c89aaf329a .shogun-heading-component h1 {
  color: rgba(11, 75, 152, 1);
  font-weight:  600 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 3em;
  line-height: 1em;
  
  text-align: left;
}



#s-8e790c0d-e2ef-4096-a104-016315de0bcc {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 4%;
padding-bottom: 0%;
}
@media (min-width: 768px) and (max-width: 991px){#s-8e790c0d-e2ef-4096-a104-016315de0bcc {
  display: none;
}
#s-8e790c0d-e2ef-4096-a104-016315de0bcc, #wrap-s-8e790c0d-e2ef-4096-a104-016315de0bcc, #wrap-content-s-8e790c0d-e2ef-4096-a104-016315de0bcc { display: none !important; }}@media (max-width: 767px){#s-8e790c0d-e2ef-4096-a104-016315de0bcc {
  display: none;
}
#s-8e790c0d-e2ef-4096-a104-016315de0bcc, #wrap-s-8e790c0d-e2ef-4096-a104-016315de0bcc, #wrap-content-s-8e790c0d-e2ef-4096-a104-016315de0bcc { display: none !important; }}







#s-8e790c0d-e2ef-4096-a104-016315de0bcc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8e790c0d-e2ef-4096-a104-016315de0bcc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bc91e24d-4788-41c0-a57d-7ca57619d179 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 1200px;
}
@media (min-width: 1200px){#s-bc91e24d-4788-41c0-a57d-7ca57619d179 {
  max-width: 60%;
}
}
@media (min-width: 0px) {
[id="s-bc91e24d-4788-41c0-a57d-7ca57619d179"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-bc91e24d-4788-41c0-a57d-7ca57619d179"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-bc91e24d-4788-41c0-a57d-7ca57619d179"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-bc91e24d-4788-41c0-a57d-7ca57619d179"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-db1d994c-f2d6-467e-8ebc-7a7ab3b9377d {
  margin-left: 0px;
margin-right: auto;
min-height: 25em;
}








#s-db1d994c-f2d6-467e-8ebc-7a7ab3b9377d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-db1d994c-f2d6-467e-8ebc-7a7ab3b9377d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d {
  margin-right: auto;
aspect-ratio: 1/1;
text-align: left;
}
@media (min-width: 1200px){#s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d {
  max-width: 40em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d {
  max-width: 30em;
}
}
#s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d {
  margin: 0 !important;
  overflow: visible;
}

#s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d img.shogun-image {
  /* Add background color handling */
  
}

#s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image {
    
    
    
    
  }


.s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d .shogun-image-content {
  
    justify-content: center;
  
}

.s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image {
  box-sizing: border-box;
}



.s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image-container {
      position: relative;
    }

    .s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

@media (min-width: 1200px){#s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d {
  margin: 0 !important;
  overflow: visible;
}

#s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d img.shogun-image {
  /* Add background color handling */
  
}

#s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image {
    
    
    
    
  }


.s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d .shogun-image-content {
  
    justify-content: center;
  
}

.s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image {
  box-sizing: border-box;
}



.s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image-container {
      position: relative;
    }

    .s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d {
  margin: 0 !important;
  overflow: visible;
}

#s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d img.shogun-image {
  /* Add background color handling */
  
}

#s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image {
    
    
    
    
  }


.s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d .shogun-image-content {
  
    justify-content: center;
  
}

.s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image {
  box-sizing: border-box;
}



.s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image-container {
      position: relative;
    }

    .s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d {
  margin: 0 !important;
  overflow: visible;
}

#s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d img.shogun-image {
  /* Add background color handling */
  
}

#s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image {
    
    
    
    
  }


.s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d .shogun-image-content {
  
    justify-content: center;
  
}

.s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image {
  box-sizing: border-box;
}



.s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image-container {
      position: relative;
    }

    .s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}@media (max-width: 767px){#s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d {
  margin: 0 !important;
  overflow: visible;
}

#s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d img.shogun-image {
  /* Add background color handling */
  
}

#s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image {
    
    
    
    
  }


.s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d .shogun-image-content {
  
    justify-content: center;
  
}

.s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image {
  box-sizing: border-box;
}



.s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image-container {
      position: relative;
    }

    .s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-31afc5de-fcc2-47c2-9d01-a39a59f0f65d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}
#s-cab96f3f-1f92-4873-8fef-acd645ced9ed {
  margin-top: 2%;
margin-left: auto;
margin-bottom: 2%;
margin-right: auto;
padding-top: 0%;
padding-left: 0px;
padding-bottom: 1%;
padding-right: 0px;
text-align: left;
}

#s-cab96f3f-1f92-4873-8fef-acd645ced9ed .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1em;
  line-height: 1em;
  
  text-align: center;
}



#s-ad301969-f0f7-485e-b57d-378177aba758 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
min-height: 40em;
}
@media (min-width: 1200px){#s-ad301969-f0f7-485e-b57d-378177aba758 {
  min-height: 30em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ad301969-f0f7-485e-b57d-378177aba758 {
  min-height: 30em;
}
}







#s-ad301969-f0f7-485e-b57d-378177aba758 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ad301969-f0f7-485e-b57d-378177aba758.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7fa4680d-fc35-4b79-a3d9-728730d0dc2b {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 0%;
padding-left: 0px;
padding-bottom: 0.5em;
padding-right: 0px;
text-align: left;
}

#s-7fa4680d-fc35-4b79-a3d9-728730d0dc2b .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 2em;
  line-height: 1em;
  
  text-align: left;
}



.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: "Outfit";
  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: 100;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0.6em;
  color: #000000;
  font-family: "Outfit";
}

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

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

#s-e8e6e29b-034f-4ccc-8e10-f96ce31f27fa {
  margin-top: auto;
margin-bottom: auto;
padding-left: 0px;
padding-right: 0px;
}

#s-15e137be-183e-45d4-9256-973ad248881a {
  margin-top: 5%;
margin-bottom: 5%;
padding-left: 0px;
padding-right: 0px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-15e137be-183e-45d4-9256-973ad248881a {
  display: none;
}
#s-15e137be-183e-45d4-9256-973ad248881a, #wrap-s-15e137be-183e-45d4-9256-973ad248881a, #wrap-content-s-15e137be-183e-45d4-9256-973ad248881a { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-15e137be-183e-45d4-9256-973ad248881a {
  display: none;
}
#s-15e137be-183e-45d4-9256-973ad248881a, #wrap-s-15e137be-183e-45d4-9256-973ad248881a, #wrap-content-s-15e137be-183e-45d4-9256-973ad248881a { display: none !important; }}@media (max-width: 767px){#s-15e137be-183e-45d4-9256-973ad248881a {
  display: none;
}
#s-15e137be-183e-45d4-9256-973ad248881a, #wrap-s-15e137be-183e-45d4-9256-973ad248881a, #wrap-content-s-15e137be-183e-45d4-9256-973ad248881a { display: none !important; }}
#s-10355c67-eaf7-488b-88d3-905bb240bdef {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
min-height: 100%;
max-width: 80%;
}
@media (min-width: 1200px){#s-10355c67-eaf7-488b-88d3-905bb240bdef {
  max-width: 60%;
display: none;
}
#s-10355c67-eaf7-488b-88d3-905bb240bdef, #wrap-s-10355c67-eaf7-488b-88d3-905bb240bdef, #wrap-content-s-10355c67-eaf7-488b-88d3-905bb240bdef { display: none !important; }}
@media (min-width: 0px) {
[id="s-10355c67-eaf7-488b-88d3-905bb240bdef"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-10355c67-eaf7-488b-88d3-905bb240bdef"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-10355c67-eaf7-488b-88d3-905bb240bdef"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-10355c67-eaf7-488b-88d3-905bb240bdef"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-ededf48b-d3ac-4b8c-bdcb-64f76dcbf776 {
  margin-top: auto;
margin-bottom: auto;
padding-left: 0px;
padding-right: 0px;
}

#s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 {
  margin-top: 1%;
margin-bottom: 1%;
max-width: 1200px;
aspect-ratio: 2048/438;
text-align: center;
}
@media (min-width: 1200px){#s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 {
  max-width: 60%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 {
  max-width: 80%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 {
  display: none;
}
#s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03, #wrap-s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03, #wrap-content-s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 { display: none !important; }}@media (max-width: 767px){#s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 {
  display: none;
}
#s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03, #wrap-s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03, #wrap-content-s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 { display: none !important; }}
#s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 {
  margin: 0 !important;
  overflow: visible;
}

#s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 1%;
  margin-bottom: 1%;
}

.shg-image-content-margin-container-s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 img.shogun-image {
  /* Add background color handling */
  
}

#s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 .shg-image-content-wrapper {
      aspect-ratio: 2048/438;
      min-width: 100%;
      height: auto;
    }

    #s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 .shogun-image-link {
      aspect-ratio: 2048/438;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image {
  box-sizing: border-box;
}



.s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 {
      --shg-aspect-ratio: calc(2048/438); 
    }

    .s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image-container {
      position: relative;
    }

    .s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

@media (min-width: 1200px){#s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 {
  margin: 0 !important;
  overflow: visible;
}

#s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 img.shogun-image {
  /* Add background color handling */
  
}

#s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 .shg-image-content-wrapper {
      aspect-ratio: 2048/438;
      min-width: 100%;
      height: auto;
    }

    #s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 .shogun-image-link {
      aspect-ratio: 2048/438;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image {
  box-sizing: border-box;
}



.s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 {
      --shg-aspect-ratio: calc(2048/438); 
    }

    .s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image-container {
      position: relative;
    }

    .s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 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-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 {
  margin: 0 !important;
  overflow: visible;
}

#s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 img.shogun-image {
  /* Add background color handling */
  
}

#s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 .shg-image-content-wrapper {
      aspect-ratio: 2048/438;
      min-width: 100%;
      height: auto;
    }

    #s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 .shogun-image-link {
      aspect-ratio: 2048/438;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image {
  box-sizing: border-box;
}



.s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 {
      --shg-aspect-ratio: calc(2048/438); 
    }

    .s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image-container {
      position: relative;
    }

    .s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 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-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 {
  margin: 0 !important;
  overflow: visible;
}

#s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 img.shogun-image {
  /* Add background color handling */
  
}

#s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 .shg-image-content-wrapper {
      aspect-ratio: 2048/438;
      min-width: 100%;
      height: auto;
    }

    #s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 .shogun-image-link {
      aspect-ratio: 2048/438;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image {
  box-sizing: border-box;
}



.s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 {
      --shg-aspect-ratio: calc(2048/438); 
    }

    .s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image-container {
      position: relative;
    }

    .s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

}@media (max-width: 767px){#s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 {
  margin: 0 !important;
  overflow: visible;
}

#s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 img.shogun-image {
  /* Add background color handling */
  
}

#s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 .shg-image-content-wrapper {
      aspect-ratio: 2048/438;
      min-width: 100%;
      height: auto;
    }

    #s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 .shogun-image-link {
      aspect-ratio: 2048/438;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1200px;
  }



  img.s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image {
  box-sizing: border-box;
}



.s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 {
      --shg-aspect-ratio: calc(2048/438); 
    }

    .s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image-container {
      position: relative;
    }

    .s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f078d99e-9ded-4e6d-8e4c-4d6bd2d8df03 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

}
#s-33197fe0-7626-423d-b12d-d1b3afa7e9f5 {
  background-size: cover;
margin-top: 0%;
margin-bottom: 0%;
padding-top: 3%;
padding-bottom: 3%;
min-height: 50px;
background-color: rgba(247, 248, 249, 1);
background-position: right bottom;
}
@media (min-width: 1200px){#s-33197fe0-7626-423d-b12d-d1b3afa7e9f5 {
  display: none;
}
#s-33197fe0-7626-423d-b12d-d1b3afa7e9f5, #wrap-s-33197fe0-7626-423d-b12d-d1b3afa7e9f5, #wrap-content-s-33197fe0-7626-423d-b12d-d1b3afa7e9f5 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-33197fe0-7626-423d-b12d-d1b3afa7e9f5 {
  display: none;
}
#s-33197fe0-7626-423d-b12d-d1b3afa7e9f5, #wrap-s-33197fe0-7626-423d-b12d-d1b3afa7e9f5, #wrap-content-s-33197fe0-7626-423d-b12d-d1b3afa7e9f5 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-33197fe0-7626-423d-b12d-d1b3afa7e9f5 {
  display: none;
}
#s-33197fe0-7626-423d-b12d-d1b3afa7e9f5, #wrap-s-33197fe0-7626-423d-b12d-d1b3afa7e9f5, #wrap-content-s-33197fe0-7626-423d-b12d-d1b3afa7e9f5 { display: none !important; }}@media (max-width: 767px){#s-33197fe0-7626-423d-b12d-d1b3afa7e9f5 {
  display: none;
}
#s-33197fe0-7626-423d-b12d-d1b3afa7e9f5, #wrap-s-33197fe0-7626-423d-b12d-d1b3afa7e9f5, #wrap-content-s-33197fe0-7626-423d-b12d-d1b3afa7e9f5 { display: none !important; }}







#s-33197fe0-7626-423d-b12d-d1b3afa7e9f5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-33197fe0-7626-423d-b12d-d1b3afa7e9f5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-da111c39-3bbd-4731-a028-47a4003c4bdf {
  margin-top: 0%;
margin-left: auto;
margin-bottom: 0%;
margin-right: auto;
padding-top: 0%;
padding-left: 0px;
padding-bottom: 0.5em;
padding-right: 0px;
text-align: center;
}

#s-da111c39-3bbd-4731-a028-47a4003c4bdf .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 2em;
  line-height: 1em;
  
  text-align: center;
}



#s-f66bfbd5-35bb-482d-bdbb-3484b98a584c {
  margin-top: 2%;
margin-left: auto;
margin-right: auto;
max-width: 80%;
}
@media (min-width: 1200px){#s-f66bfbd5-35bb-482d-bdbb-3484b98a584c {
  max-width: 54%;
}
}
@media (min-width: 0px) {
[id="s-f66bfbd5-35bb-482d-bdbb-3484b98a584c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-f66bfbd5-35bb-482d-bdbb-3484b98a584c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f66bfbd5-35bb-482d-bdbb-3484b98a584c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f66bfbd5-35bb-482d-bdbb-3484b98a584c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-fa3c7731-7843-4f1f-aae3-9431e4442fa2 {
  margin-top: 0%;
margin-left: auto;
margin-bottom: 0%;
margin-right: auto;
max-width: 90%;
}

#s-499c80f6-0d4a-48a4-bbca-8a8539dfd784 {
  margin-top: 0%;
margin-left: auto;
margin-bottom: 0%;
min-height: 50px;
background-color: rgba(245, 245, 245, 0);
}








#s-499c80f6-0d4a-48a4-bbca-8a8539dfd784 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-499c80f6-0d4a-48a4-bbca-8a8539dfd784.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.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: 100;
  font-family: "Outfit";
}

.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-9fb07184-6c43-40a0-8777-15e86c6f1e96 {
  border-style: solid;
margin-top: 5%;
margin-bottom: 0%;
padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(11, 75, 152, 1);
border-radius: 38px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
line-height: 1.5em;
color: rgba(11, 75, 152, 1);
}
#s-9fb07184-6c43-40a0-8777-15e86c6f1e96:hover {background-color: rgba(11, 75, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-9fb07184-6c43-40a0-8777-15e86c6f1e96:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-9fb07184-6c43-40a0-8777-15e86c6f1e96-root {
    text-align: center;
  }


#s-9fb07184-6c43-40a0-8777-15e86c6f1e96.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-9fb07184-6c43-40a0-8777-15e86c6f1e96-root {
    text-align: center;
  }


#s-9fb07184-6c43-40a0-8777-15e86c6f1e96.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9fb07184-6c43-40a0-8777-15e86c6f1e96-root {
    text-align: center;
  }


#s-9fb07184-6c43-40a0-8777-15e86c6f1e96.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9fb07184-6c43-40a0-8777-15e86c6f1e96-root {
    text-align: center;
  }


#s-9fb07184-6c43-40a0-8777-15e86c6f1e96.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-9fb07184-6c43-40a0-8777-15e86c6f1e96-root {
    text-align: center;
  }


#s-9fb07184-6c43-40a0-8777-15e86c6f1e96.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}
#s-411db671-4411-41a6-bc81-bc4126db8513 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-411db671-4411-41a6-bc81-bc4126db8513 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-411db671-4411-41a6-bc81-bc4126db8513.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a0c1c9c8-a506-4a26-9a2e-958289bd627c {
  background-size: cover;
margin-top: 0%;
margin-bottom: 0%;
padding-top: 6%;
padding-bottom: 6%;
min-height: 50px;
background-color: rgba(11, 75, 152, 0.1);
background-position: right bottom;
}
@media (min-width: 1200px){#s-a0c1c9c8-a506-4a26-9a2e-958289bd627c {
  padding-top: 5%;
padding-bottom: 5%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-a0c1c9c8-a506-4a26-9a2e-958289bd627c {
  display: none;
}
#s-a0c1c9c8-a506-4a26-9a2e-958289bd627c, #wrap-s-a0c1c9c8-a506-4a26-9a2e-958289bd627c, #wrap-content-s-a0c1c9c8-a506-4a26-9a2e-958289bd627c { display: none !important; }}@media (max-width: 767px){#s-a0c1c9c8-a506-4a26-9a2e-958289bd627c {
  display: none;
}
#s-a0c1c9c8-a506-4a26-9a2e-958289bd627c, #wrap-s-a0c1c9c8-a506-4a26-9a2e-958289bd627c, #wrap-content-s-a0c1c9c8-a506-4a26-9a2e-958289bd627c { display: none !important; }}







#s-a0c1c9c8-a506-4a26-9a2e-958289bd627c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a0c1c9c8-a506-4a26-9a2e-958289bd627c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d53e2eba-478f-44d3-b6ce-9a5fcceb1998 {
  margin-top: 0%;
margin-left: auto;
margin-bottom: 0%;
margin-right: auto;
padding-top: 0%;
padding-left: 0px;
padding-bottom: 0.5em;
padding-right: 0px;
text-align: center;
}

#s-d53e2eba-478f-44d3-b6ce-9a5fcceb1998 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 2em;
  line-height: 1em;
  
  text-align: center;
}



#s-ac23ce4f-4eb3-4009-8e80-4bcda4be1a9a {
  margin-left: auto;
margin-bottom: 1%;
margin-right: auto;
padding-left: 0px;
padding-right: 0px;
max-width: 80%;
}

#s-9bb9ad8b-6890-42f7-b59b-e4af9545767e {
  margin-top: auto;
margin-left: auto;
margin-right: auto;
max-width: 85%;
}
@media (min-width: 1200px){#s-9bb9ad8b-6890-42f7-b59b-e4af9545767e {
  max-width: 60%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-9bb9ad8b-6890-42f7-b59b-e4af9545767e {
  max-width: 80%;
}
}
@media (min-width: 0px) {
[id="s-9bb9ad8b-6890-42f7-b59b-e4af9545767e"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-9bb9ad8b-6890-42f7-b59b-e4af9545767e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-9bb9ad8b-6890-42f7-b59b-e4af9545767e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-9bb9ad8b-6890-42f7-b59b-e4af9545767e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-a1edf3b3-79db-4547-8dc8-16fd47282918 {
  margin-top: 0%;
margin-left: auto;
margin-bottom: 0%;
min-height: 50px;
background-color: rgba(245, 245, 245, 0);
}








#s-a1edf3b3-79db-4547-8dc8-16fd47282918 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a1edf3b3-79db-4547-8dc8-16fd47282918.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b19f3a39-a440-4cfc-ad83-0ab5453a492e {
  max-width: 90%;
aspect-ratio: 1990/1453;
text-align: center;
}

#s-b19f3a39-a440-4cfc-ad83-0ab5453a492e {
  margin: 0 !important;
  overflow: visible;
}

#s-b19f3a39-a440-4cfc-ad83-0ab5453a492e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b19f3a39-a440-4cfc-ad83-0ab5453a492e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b19f3a39-a440-4cfc-ad83-0ab5453a492e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b19f3a39-a440-4cfc-ad83-0ab5453a492e img.shogun-image {
  /* Add background color handling */
  
}

#s-b19f3a39-a440-4cfc-ad83-0ab5453a492e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b19f3a39-a440-4cfc-ad83-0ab5453a492e .shg-image-content-wrapper {
      aspect-ratio: 1990/1453;
      min-width: 100%;
      height: auto;
    }

    #s-b19f3a39-a440-4cfc-ad83-0ab5453a492e .shogun-image-link {
      aspect-ratio: 1990/1453;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b19f3a39-a440-4cfc-ad83-0ab5453a492e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b19f3a39-a440-4cfc-ad83-0ab5453a492e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 90%;
  }



  img.s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image {
    
    
    
    max-height: 90%;
  }


.s-b19f3a39-a440-4cfc-ad83-0ab5453a492e .shogun-image-content {
  
    justify-content: center;
  
}

.s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image {
  box-sizing: border-box;
}



.s-b19f3a39-a440-4cfc-ad83-0ab5453a492e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b19f3a39-a440-4cfc-ad83-0ab5453a492e {
      --shg-aspect-ratio: calc(1990/1453); 
    }

    .s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image-container {
      position: relative;
    }

    .s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b19f3a39-a440-4cfc-ad83-0ab5453a492e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 90%;
    }
  }

@media (min-width: 1200px){#s-b19f3a39-a440-4cfc-ad83-0ab5453a492e {
  margin: 0 !important;
  overflow: visible;
}

#s-b19f3a39-a440-4cfc-ad83-0ab5453a492e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b19f3a39-a440-4cfc-ad83-0ab5453a492e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b19f3a39-a440-4cfc-ad83-0ab5453a492e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b19f3a39-a440-4cfc-ad83-0ab5453a492e img.shogun-image {
  /* Add background color handling */
  
}

#s-b19f3a39-a440-4cfc-ad83-0ab5453a492e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b19f3a39-a440-4cfc-ad83-0ab5453a492e .shg-image-content-wrapper {
      aspect-ratio: 1990/1453;
      min-width: 100%;
      height: auto;
    }

    #s-b19f3a39-a440-4cfc-ad83-0ab5453a492e .shogun-image-link {
      aspect-ratio: 1990/1453;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b19f3a39-a440-4cfc-ad83-0ab5453a492e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b19f3a39-a440-4cfc-ad83-0ab5453a492e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 90%;
  }



  img.s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image {
    
    
    
    max-height: 90%;
  }


.s-b19f3a39-a440-4cfc-ad83-0ab5453a492e .shogun-image-content {
  
    justify-content: center;
  
}

.s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image {
  box-sizing: border-box;
}



.s-b19f3a39-a440-4cfc-ad83-0ab5453a492e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b19f3a39-a440-4cfc-ad83-0ab5453a492e {
      --shg-aspect-ratio: calc(1990/1453); 
    }

    .s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image-container {
      position: relative;
    }

    .s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b19f3a39-a440-4cfc-ad83-0ab5453a492e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 90%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-b19f3a39-a440-4cfc-ad83-0ab5453a492e {
  margin: 0 !important;
  overflow: visible;
}

#s-b19f3a39-a440-4cfc-ad83-0ab5453a492e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b19f3a39-a440-4cfc-ad83-0ab5453a492e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b19f3a39-a440-4cfc-ad83-0ab5453a492e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b19f3a39-a440-4cfc-ad83-0ab5453a492e img.shogun-image {
  /* Add background color handling */
  
}

#s-b19f3a39-a440-4cfc-ad83-0ab5453a492e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b19f3a39-a440-4cfc-ad83-0ab5453a492e .shg-image-content-wrapper {
      aspect-ratio: 1990/1453;
      min-width: 100%;
      height: auto;
    }

    #s-b19f3a39-a440-4cfc-ad83-0ab5453a492e .shogun-image-link {
      aspect-ratio: 1990/1453;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b19f3a39-a440-4cfc-ad83-0ab5453a492e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b19f3a39-a440-4cfc-ad83-0ab5453a492e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 90%;
  }



  img.s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image {
    
    
    
    max-height: 90%;
  }


.s-b19f3a39-a440-4cfc-ad83-0ab5453a492e .shogun-image-content {
  
    justify-content: center;
  
}

.s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image {
  box-sizing: border-box;
}



.s-b19f3a39-a440-4cfc-ad83-0ab5453a492e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b19f3a39-a440-4cfc-ad83-0ab5453a492e {
      --shg-aspect-ratio: calc(1990/1453); 
    }

    .s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image-container {
      position: relative;
    }

    .s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b19f3a39-a440-4cfc-ad83-0ab5453a492e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 90%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-b19f3a39-a440-4cfc-ad83-0ab5453a492e {
  margin: 0 !important;
  overflow: visible;
}

#s-b19f3a39-a440-4cfc-ad83-0ab5453a492e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b19f3a39-a440-4cfc-ad83-0ab5453a492e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b19f3a39-a440-4cfc-ad83-0ab5453a492e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b19f3a39-a440-4cfc-ad83-0ab5453a492e img.shogun-image {
  /* Add background color handling */
  
}

#s-b19f3a39-a440-4cfc-ad83-0ab5453a492e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b19f3a39-a440-4cfc-ad83-0ab5453a492e .shg-image-content-wrapper {
      aspect-ratio: 1990/1453;
      min-width: 100%;
      height: auto;
    }

    #s-b19f3a39-a440-4cfc-ad83-0ab5453a492e .shogun-image-link {
      aspect-ratio: 1990/1453;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b19f3a39-a440-4cfc-ad83-0ab5453a492e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b19f3a39-a440-4cfc-ad83-0ab5453a492e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 90%;
  }



  img.s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image {
    
    
    
    max-height: 90%;
  }


.s-b19f3a39-a440-4cfc-ad83-0ab5453a492e .shogun-image-content {
  
    justify-content: center;
  
}

.s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image {
  box-sizing: border-box;
}



.s-b19f3a39-a440-4cfc-ad83-0ab5453a492e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b19f3a39-a440-4cfc-ad83-0ab5453a492e {
      --shg-aspect-ratio: calc(1990/1453); 
    }

    .s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image-container {
      position: relative;
    }

    .s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b19f3a39-a440-4cfc-ad83-0ab5453a492e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 90%;
    }
  }

}@media (max-width: 767px){#s-b19f3a39-a440-4cfc-ad83-0ab5453a492e {
  margin: 0 !important;
  overflow: visible;
}

#s-b19f3a39-a440-4cfc-ad83-0ab5453a492e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b19f3a39-a440-4cfc-ad83-0ab5453a492e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b19f3a39-a440-4cfc-ad83-0ab5453a492e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b19f3a39-a440-4cfc-ad83-0ab5453a492e img.shogun-image {
  /* Add background color handling */
  
}

#s-b19f3a39-a440-4cfc-ad83-0ab5453a492e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b19f3a39-a440-4cfc-ad83-0ab5453a492e .shg-image-content-wrapper {
      aspect-ratio: 1990/1453;
      min-width: 100%;
      height: auto;
    }

    #s-b19f3a39-a440-4cfc-ad83-0ab5453a492e .shogun-image-link {
      aspect-ratio: 1990/1453;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b19f3a39-a440-4cfc-ad83-0ab5453a492e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b19f3a39-a440-4cfc-ad83-0ab5453a492e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 90%;
  }



  img.s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image {
    
    
    
    max-height: 90%;
  }


.s-b19f3a39-a440-4cfc-ad83-0ab5453a492e .shogun-image-content {
  
    justify-content: center;
  
}

.s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image {
  box-sizing: border-box;
}



.s-b19f3a39-a440-4cfc-ad83-0ab5453a492e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b19f3a39-a440-4cfc-ad83-0ab5453a492e {
      --shg-aspect-ratio: calc(1990/1453); 
    }

    .s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image-container {
      position: relative;
    }

    .s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b19f3a39-a440-4cfc-ad83-0ab5453a492e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b19f3a39-a440-4cfc-ad83-0ab5453a492e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 90%;
    }
  }

}
#s-018ef418-f1bf-463b-a915-9890054d9257 {
  margin-top: 3%;
margin-left: auto;
margin-bottom: 0.5em;
margin-right: auto;
max-width: 90%;
text-align: left;
}

#s-018ef418-f1bf-463b-a915-9890054d9257 .shogun-heading-component h3 {
  color: ;
  font-weight:  normal ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.5em;
  line-height: 1em;
  
  text-align: center;
}



#s-b1d3473d-36b1-4593-a17e-dfaa7680d968 {
  margin-top: 0%;
margin-left: auto;
margin-bottom: 2%;
margin-right: auto;
max-width: 90%;
}

#s-1e8f235d-b182-4973-974a-2e96c776aa40 {
  border-style: solid;
padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(11, 75, 152, 1);
border-radius: 38px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
line-height: 1.5em;
color: rgba(11, 75, 152, 1);
}
#s-1e8f235d-b182-4973-974a-2e96c776aa40:hover {background-color: rgba(11, 75, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-1e8f235d-b182-4973-974a-2e96c776aa40:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-1e8f235d-b182-4973-974a-2e96c776aa40-root {
    text-align: center;
  }


#s-1e8f235d-b182-4973-974a-2e96c776aa40.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-1e8f235d-b182-4973-974a-2e96c776aa40-root {
    text-align: center;
  }


#s-1e8f235d-b182-4973-974a-2e96c776aa40.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1e8f235d-b182-4973-974a-2e96c776aa40-root {
    text-align: center;
  }


#s-1e8f235d-b182-4973-974a-2e96c776aa40.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1e8f235d-b182-4973-974a-2e96c776aa40-root {
    text-align: center;
  }


#s-1e8f235d-b182-4973-974a-2e96c776aa40.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-1e8f235d-b182-4973-974a-2e96c776aa40-root {
    text-align: center;
  }


#s-1e8f235d-b182-4973-974a-2e96c776aa40.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}
#s-7a36a55a-2771-48f8-a06f-976b487fc1ca {
  max-width: 90%;
aspect-ratio: 3980/2905;
text-align: center;
}

#s-7a36a55a-2771-48f8-a06f-976b487fc1ca {
  margin: 0 !important;
  overflow: visible;
}

#s-7a36a55a-2771-48f8-a06f-976b487fc1ca-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7a36a55a-2771-48f8-a06f-976b487fc1ca {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7a36a55a-2771-48f8-a06f-976b487fc1ca {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7a36a55a-2771-48f8-a06f-976b487fc1ca img.shogun-image {
  /* Add background color handling */
  
}

#s-7a36a55a-2771-48f8-a06f-976b487fc1ca img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7a36a55a-2771-48f8-a06f-976b487fc1ca .shg-image-content-wrapper {
      aspect-ratio: 3980/2905;
      min-width: 100%;
      height: auto;
    }

    #s-7a36a55a-2771-48f8-a06f-976b487fc1ca .shogun-image-link {
      aspect-ratio: 3980/2905;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7a36a55a-2771-48f8-a06f-976b487fc1ca .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7a36a55a-2771-48f8-a06f-976b487fc1ca img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 90%;
  }



  img.s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image {
    
    
    
    max-height: 90%;
  }


.s-7a36a55a-2771-48f8-a06f-976b487fc1ca .shogun-image-content {
  
    justify-content: center;
  
}

.s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image {
  box-sizing: border-box;
}



.s-7a36a55a-2771-48f8-a06f-976b487fc1ca img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7a36a55a-2771-48f8-a06f-976b487fc1ca {
      --shg-aspect-ratio: calc(3980/2905); 
    }

    .s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image-container {
      position: relative;
    }

    .s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a36a55a-2771-48f8-a06f-976b487fc1ca img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 90%;
    }
  }

@media (min-width: 1200px){#s-7a36a55a-2771-48f8-a06f-976b487fc1ca {
  margin: 0 !important;
  overflow: visible;
}

#s-7a36a55a-2771-48f8-a06f-976b487fc1ca-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7a36a55a-2771-48f8-a06f-976b487fc1ca {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7a36a55a-2771-48f8-a06f-976b487fc1ca {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7a36a55a-2771-48f8-a06f-976b487fc1ca img.shogun-image {
  /* Add background color handling */
  
}

#s-7a36a55a-2771-48f8-a06f-976b487fc1ca img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7a36a55a-2771-48f8-a06f-976b487fc1ca .shg-image-content-wrapper {
      aspect-ratio: 3980/2905;
      min-width: 100%;
      height: auto;
    }

    #s-7a36a55a-2771-48f8-a06f-976b487fc1ca .shogun-image-link {
      aspect-ratio: 3980/2905;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7a36a55a-2771-48f8-a06f-976b487fc1ca .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7a36a55a-2771-48f8-a06f-976b487fc1ca img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 90%;
  }



  img.s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image {
    
    
    
    max-height: 90%;
  }


.s-7a36a55a-2771-48f8-a06f-976b487fc1ca .shogun-image-content {
  
    justify-content: center;
  
}

.s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image {
  box-sizing: border-box;
}



.s-7a36a55a-2771-48f8-a06f-976b487fc1ca img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7a36a55a-2771-48f8-a06f-976b487fc1ca {
      --shg-aspect-ratio: calc(3980/2905); 
    }

    .s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image-container {
      position: relative;
    }

    .s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a36a55a-2771-48f8-a06f-976b487fc1ca img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 90%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-7a36a55a-2771-48f8-a06f-976b487fc1ca {
  margin: 0 !important;
  overflow: visible;
}

#s-7a36a55a-2771-48f8-a06f-976b487fc1ca-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7a36a55a-2771-48f8-a06f-976b487fc1ca {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7a36a55a-2771-48f8-a06f-976b487fc1ca {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7a36a55a-2771-48f8-a06f-976b487fc1ca img.shogun-image {
  /* Add background color handling */
  
}

#s-7a36a55a-2771-48f8-a06f-976b487fc1ca img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7a36a55a-2771-48f8-a06f-976b487fc1ca .shg-image-content-wrapper {
      aspect-ratio: 3980/2905;
      min-width: 100%;
      height: auto;
    }

    #s-7a36a55a-2771-48f8-a06f-976b487fc1ca .shogun-image-link {
      aspect-ratio: 3980/2905;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7a36a55a-2771-48f8-a06f-976b487fc1ca .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7a36a55a-2771-48f8-a06f-976b487fc1ca img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 90%;
  }



  img.s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image {
    
    
    
    max-height: 90%;
  }


.s-7a36a55a-2771-48f8-a06f-976b487fc1ca .shogun-image-content {
  
    justify-content: center;
  
}

.s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image {
  box-sizing: border-box;
}



.s-7a36a55a-2771-48f8-a06f-976b487fc1ca img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7a36a55a-2771-48f8-a06f-976b487fc1ca {
      --shg-aspect-ratio: calc(3980/2905); 
    }

    .s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image-container {
      position: relative;
    }

    .s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a36a55a-2771-48f8-a06f-976b487fc1ca img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 90%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-7a36a55a-2771-48f8-a06f-976b487fc1ca {
  margin: 0 !important;
  overflow: visible;
}

#s-7a36a55a-2771-48f8-a06f-976b487fc1ca-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7a36a55a-2771-48f8-a06f-976b487fc1ca {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7a36a55a-2771-48f8-a06f-976b487fc1ca {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7a36a55a-2771-48f8-a06f-976b487fc1ca img.shogun-image {
  /* Add background color handling */
  
}

#s-7a36a55a-2771-48f8-a06f-976b487fc1ca img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7a36a55a-2771-48f8-a06f-976b487fc1ca .shg-image-content-wrapper {
      aspect-ratio: 3980/2905;
      min-width: 100%;
      height: auto;
    }

    #s-7a36a55a-2771-48f8-a06f-976b487fc1ca .shogun-image-link {
      aspect-ratio: 3980/2905;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7a36a55a-2771-48f8-a06f-976b487fc1ca .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7a36a55a-2771-48f8-a06f-976b487fc1ca img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 90%;
  }



  img.s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image {
    
    
    
    max-height: 90%;
  }


.s-7a36a55a-2771-48f8-a06f-976b487fc1ca .shogun-image-content {
  
    justify-content: center;
  
}

.s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image {
  box-sizing: border-box;
}



.s-7a36a55a-2771-48f8-a06f-976b487fc1ca img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7a36a55a-2771-48f8-a06f-976b487fc1ca {
      --shg-aspect-ratio: calc(3980/2905); 
    }

    .s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image-container {
      position: relative;
    }

    .s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a36a55a-2771-48f8-a06f-976b487fc1ca img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 90%;
    }
  }

}@media (max-width: 767px){#s-7a36a55a-2771-48f8-a06f-976b487fc1ca {
  margin: 0 !important;
  overflow: visible;
}

#s-7a36a55a-2771-48f8-a06f-976b487fc1ca-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7a36a55a-2771-48f8-a06f-976b487fc1ca {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7a36a55a-2771-48f8-a06f-976b487fc1ca {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7a36a55a-2771-48f8-a06f-976b487fc1ca img.shogun-image {
  /* Add background color handling */
  
}

#s-7a36a55a-2771-48f8-a06f-976b487fc1ca img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7a36a55a-2771-48f8-a06f-976b487fc1ca .shg-image-content-wrapper {
      aspect-ratio: 3980/2905;
      min-width: 100%;
      height: auto;
    }

    #s-7a36a55a-2771-48f8-a06f-976b487fc1ca .shogun-image-link {
      aspect-ratio: 3980/2905;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7a36a55a-2771-48f8-a06f-976b487fc1ca .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7a36a55a-2771-48f8-a06f-976b487fc1ca img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 90%;
  }



  img.s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image {
    
    
    
    max-height: 90%;
  }


.s-7a36a55a-2771-48f8-a06f-976b487fc1ca .shogun-image-content {
  
    justify-content: center;
  
}

.s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image {
  box-sizing: border-box;
}



.s-7a36a55a-2771-48f8-a06f-976b487fc1ca img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7a36a55a-2771-48f8-a06f-976b487fc1ca {
      --shg-aspect-ratio: calc(3980/2905); 
    }

    .s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image-container {
      position: relative;
    }

    .s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a36a55a-2771-48f8-a06f-976b487fc1ca.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a36a55a-2771-48f8-a06f-976b487fc1ca img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 90%;
    }
  }

}
#s-a50ea8fe-d764-4c45-9797-99af0fb97d81 {
  margin-top: 0%;
margin-left: auto;
margin-bottom: 0%;
min-height: 50px;
background-color: rgba(245, 245, 245, 0);
}








#s-a50ea8fe-d764-4c45-9797-99af0fb97d81 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a50ea8fe-d764-4c45-9797-99af0fb97d81.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-803f9a31-08a4-4d3e-91d0-4fd123f46d5e {
  margin-top: 3%;
margin-left: auto;
margin-bottom: 0.5em;
margin-right: auto;
max-width: 90%;
text-align: left;
}

#s-803f9a31-08a4-4d3e-91d0-4fd123f46d5e .shogun-heading-component h3 {
  color: ;
  font-weight:  normal ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.5em;
  line-height: 1em;
  
  text-align: center;
}



#s-7b19011b-7d5e-40c7-a79f-02c0a998975b {
  margin-left: auto;
margin-bottom: 2%;
margin-right: auto;
max-width: 90%;
}

#s-4c3c26ef-5649-4a34-bfa4-83e0df81b492 {
  border-style: solid;
margin-top: 0px;
margin-bottom: auto;
padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(11, 75, 152, 1);
border-radius: 38px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
line-height: 1.5em;
color: rgba(11, 75, 152, 1);
}
#s-4c3c26ef-5649-4a34-bfa4-83e0df81b492:hover {background-color: rgba(11, 75, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-4c3c26ef-5649-4a34-bfa4-83e0df81b492:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-4c3c26ef-5649-4a34-bfa4-83e0df81b492-root {
    text-align: center;
  }


#s-4c3c26ef-5649-4a34-bfa4-83e0df81b492.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-4c3c26ef-5649-4a34-bfa4-83e0df81b492-root {
    text-align: center;
  }


#s-4c3c26ef-5649-4a34-bfa4-83e0df81b492.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4c3c26ef-5649-4a34-bfa4-83e0df81b492-root {
    text-align: center;
  }


#s-4c3c26ef-5649-4a34-bfa4-83e0df81b492.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4c3c26ef-5649-4a34-bfa4-83e0df81b492-root {
    text-align: center;
  }


#s-4c3c26ef-5649-4a34-bfa4-83e0df81b492.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-4c3c26ef-5649-4a34-bfa4-83e0df81b492-root {
    text-align: center;
  }


#s-4c3c26ef-5649-4a34-bfa4-83e0df81b492.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}
#s-010c132e-e953-4efd-b5fc-82793f3dec1a {
  max-width: 90%;
text-align: center;
}
@media (min-width: 1200px){#s-010c132e-e953-4efd-b5fc-82793f3dec1a {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-010c132e-e953-4efd-b5fc-82793f3dec1a {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-010c132e-e953-4efd-b5fc-82793f3dec1a {
  
}
}@media (max-width: 767px){#s-010c132e-e953-4efd-b5fc-82793f3dec1a {
  
}
}
#s-010c132e-e953-4efd-b5fc-82793f3dec1a {
  margin: 0 !important;
  overflow: visible;
}

#s-010c132e-e953-4efd-b5fc-82793f3dec1a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-010c132e-e953-4efd-b5fc-82793f3dec1a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-010c132e-e953-4efd-b5fc-82793f3dec1a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-010c132e-e953-4efd-b5fc-82793f3dec1a img.shogun-image {
  /* Add background color handling */
  
}

#s-010c132e-e953-4efd-b5fc-82793f3dec1a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-010c132e-e953-4efd-b5fc-82793f3dec1a .shogun-image-content {
  
    justify-content: center;
  
}

.s-010c132e-e953-4efd-b5fc-82793f3dec1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-010c132e-e953-4efd-b5fc-82793f3dec1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-010c132e-e953-4efd-b5fc-82793f3dec1a.shogun-image {
  box-sizing: border-box;
}



.s-010c132e-e953-4efd-b5fc-82793f3dec1a img.shogun-image {
  
}


@media (min-width: 1200px){#s-010c132e-e953-4efd-b5fc-82793f3dec1a {
  margin: 0 !important;
  overflow: visible;
}

#s-010c132e-e953-4efd-b5fc-82793f3dec1a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-010c132e-e953-4efd-b5fc-82793f3dec1a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-010c132e-e953-4efd-b5fc-82793f3dec1a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-010c132e-e953-4efd-b5fc-82793f3dec1a img.shogun-image {
  /* Add background color handling */
  
}

#s-010c132e-e953-4efd-b5fc-82793f3dec1a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-010c132e-e953-4efd-b5fc-82793f3dec1a .shogun-image-content {
  
    justify-content: center;
  
}

.s-010c132e-e953-4efd-b5fc-82793f3dec1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-010c132e-e953-4efd-b5fc-82793f3dec1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-010c132e-e953-4efd-b5fc-82793f3dec1a.shogun-image {
  box-sizing: border-box;
}



.s-010c132e-e953-4efd-b5fc-82793f3dec1a img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-010c132e-e953-4efd-b5fc-82793f3dec1a {
  margin: 0 !important;
  overflow: visible;
}

#s-010c132e-e953-4efd-b5fc-82793f3dec1a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-010c132e-e953-4efd-b5fc-82793f3dec1a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-010c132e-e953-4efd-b5fc-82793f3dec1a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-010c132e-e953-4efd-b5fc-82793f3dec1a img.shogun-image {
  /* Add background color handling */
  
}

#s-010c132e-e953-4efd-b5fc-82793f3dec1a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-010c132e-e953-4efd-b5fc-82793f3dec1a .shogun-image-content {
  
    justify-content: center;
  
}

.s-010c132e-e953-4efd-b5fc-82793f3dec1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-010c132e-e953-4efd-b5fc-82793f3dec1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-010c132e-e953-4efd-b5fc-82793f3dec1a.shogun-image {
  box-sizing: border-box;
}



.s-010c132e-e953-4efd-b5fc-82793f3dec1a img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-010c132e-e953-4efd-b5fc-82793f3dec1a {
  margin: 0 !important;
  overflow: visible;
}

#s-010c132e-e953-4efd-b5fc-82793f3dec1a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-010c132e-e953-4efd-b5fc-82793f3dec1a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-010c132e-e953-4efd-b5fc-82793f3dec1a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-010c132e-e953-4efd-b5fc-82793f3dec1a img.shogun-image {
  /* Add background color handling */
  
}

#s-010c132e-e953-4efd-b5fc-82793f3dec1a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-010c132e-e953-4efd-b5fc-82793f3dec1a .shogun-image-content {
  
    justify-content: center;
  
}

.s-010c132e-e953-4efd-b5fc-82793f3dec1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-010c132e-e953-4efd-b5fc-82793f3dec1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-010c132e-e953-4efd-b5fc-82793f3dec1a.shogun-image {
  box-sizing: border-box;
}



.s-010c132e-e953-4efd-b5fc-82793f3dec1a img.shogun-image {
  
}


}@media (max-width: 767px){#s-010c132e-e953-4efd-b5fc-82793f3dec1a {
  margin: 0 !important;
  overflow: visible;
}

#s-010c132e-e953-4efd-b5fc-82793f3dec1a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-010c132e-e953-4efd-b5fc-82793f3dec1a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-010c132e-e953-4efd-b5fc-82793f3dec1a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-010c132e-e953-4efd-b5fc-82793f3dec1a img.shogun-image {
  /* Add background color handling */
  
}

#s-010c132e-e953-4efd-b5fc-82793f3dec1a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-010c132e-e953-4efd-b5fc-82793f3dec1a .shogun-image-content {
  
    justify-content: center;
  
}

.s-010c132e-e953-4efd-b5fc-82793f3dec1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-010c132e-e953-4efd-b5fc-82793f3dec1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-010c132e-e953-4efd-b5fc-82793f3dec1a.shogun-image {
  box-sizing: border-box;
}



.s-010c132e-e953-4efd-b5fc-82793f3dec1a img.shogun-image {
  
}


}
#s-6d8d461d-0525-4735-897e-93b5ea2400e4 {
  margin-top: 3%;
margin-left: auto;
margin-bottom: 0.5em;
margin-right: auto;
max-width: 90%;
text-align: left;
}

#s-6d8d461d-0525-4735-897e-93b5ea2400e4 .shogun-heading-component h3 {
  color: ;
  font-weight:  normal ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.5em;
  line-height: 1em;
  
  text-align: center;
}



#s-e88d18d9-cba6-48fe-a2e2-14aa75b82347 {
  margin-top: 0%;
margin-left: auto;
margin-bottom: 2%;
margin-right: auto;
max-width: 90%;
}

#s-bd36a8d6-7b97-4fde-b1e7-5f4f41510dee {
  border-style: solid;
padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(11, 75, 152, 1);
border-radius: 38px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
line-height: 1.5em;
color: rgba(11, 75, 152, 1);
}
#s-bd36a8d6-7b97-4fde-b1e7-5f4f41510dee:hover {background-color: rgba(11, 75, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-bd36a8d6-7b97-4fde-b1e7-5f4f41510dee:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-bd36a8d6-7b97-4fde-b1e7-5f4f41510dee-root {
    text-align: center;
  }


#s-bd36a8d6-7b97-4fde-b1e7-5f4f41510dee.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-bd36a8d6-7b97-4fde-b1e7-5f4f41510dee-root {
    text-align: center;
  }


#s-bd36a8d6-7b97-4fde-b1e7-5f4f41510dee.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-bd36a8d6-7b97-4fde-b1e7-5f4f41510dee-root {
    text-align: center;
  }


#s-bd36a8d6-7b97-4fde-b1e7-5f4f41510dee.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-bd36a8d6-7b97-4fde-b1e7-5f4f41510dee-root {
    text-align: center;
  }


#s-bd36a8d6-7b97-4fde-b1e7-5f4f41510dee.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-bd36a8d6-7b97-4fde-b1e7-5f4f41510dee-root {
    text-align: center;
  }


#s-bd36a8d6-7b97-4fde-b1e7-5f4f41510dee.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}
#s-c2a74bdc-3ca8-4405-af18-d02fe939d221 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 15%;
padding-bottom: 10%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
background-position: left top;
}
@media (min-width: 1200px){#s-c2a74bdc-3ca8-4405-af18-d02fe939d221 {
  display: none;
}
#s-c2a74bdc-3ca8-4405-af18-d02fe939d221, #wrap-s-c2a74bdc-3ca8-4405-af18-d02fe939d221, #wrap-content-s-c2a74bdc-3ca8-4405-af18-d02fe939d221 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c2a74bdc-3ca8-4405-af18-d02fe939d221 {
  display: none;
}
#s-c2a74bdc-3ca8-4405-af18-d02fe939d221, #wrap-s-c2a74bdc-3ca8-4405-af18-d02fe939d221, #wrap-content-s-c2a74bdc-3ca8-4405-af18-d02fe939d221 { display: none !important; }}
#s-c2a74bdc-3ca8-4405-af18-d02fe939d221 {
  background-image: url(https://i.shgcdn.com/0153c745-c2ab-45d8-900a-4f7e77b4889a/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}

@media (max-width: 480px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-c2a74bdc-3ca8-4405-af18-d02fe939d221 {
  background-image: url(https://i.shgcdn.com/0153c745-c2ab-45d8-900a-4f7e77b4889a/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/480x/);
}
#s-c2a74bdc-3ca8-4405-af18-d02fe939d221.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-c2a74bdc-3ca8-4405-af18-d02fe939d221 {
  background-image: url(https://i.shgcdn.com/0153c745-c2ab-45d8-900a-4f7e77b4889a/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/960x/);
}
#s-c2a74bdc-3ca8-4405-af18-d02fe939d221.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-c2a74bdc-3ca8-4405-af18-d02fe939d221 {
  background-image: url(https://i.shgcdn.com/0153c745-c2ab-45d8-900a-4f7e77b4889a/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/768x/);
}
#s-c2a74bdc-3ca8-4405-af18-d02fe939d221.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-c2a74bdc-3ca8-4405-af18-d02fe939d221 {
  background-image: url(https://i.shgcdn.com/0153c745-c2ab-45d8-900a-4f7e77b4889a/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1536x/);
}
#s-c2a74bdc-3ca8-4405-af18-d02fe939d221.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-c2a74bdc-3ca8-4405-af18-d02fe939d221 {
  background-image: url(https://i.shgcdn.com/0153c745-c2ab-45d8-900a-4f7e77b4889a/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1024x/);
}
#s-c2a74bdc-3ca8-4405-af18-d02fe939d221.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-c2a74bdc-3ca8-4405-af18-d02fe939d221 {
  background-image: url(https://i.shgcdn.com/0153c745-c2ab-45d8-900a-4f7e77b4889a/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}
#s-c2a74bdc-3ca8-4405-af18-d02fe939d221.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-c2a74bdc-3ca8-4405-af18-d02fe939d221 {
  background-image: url(https://i.shgcdn.com/0153c745-c2ab-45d8-900a-4f7e77b4889a/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1200x/);
}
#s-c2a74bdc-3ca8-4405-af18-d02fe939d221.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-c2a74bdc-3ca8-4405-af18-d02fe939d221 {
  background-image: url(https://i.shgcdn.com/0153c745-c2ab-45d8-900a-4f7e77b4889a/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}
#s-c2a74bdc-3ca8-4405-af18-d02fe939d221.shogun-lazyload-bg-image {
  background-image: none;
}

}







#s-c2a74bdc-3ca8-4405-af18-d02fe939d221 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c2a74bdc-3ca8-4405-af18-d02fe939d221.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-0e242a82-d9be-4549-81fc-d9c5a0719d6a {
  margin-top: 0%;
margin-left: auto;
margin-bottom: 0%;
margin-right: auto;
padding-left: 0%;
padding-right: 0%;
max-width: 90%;
text-align: left;
}

#s-0e242a82-d9be-4549-81fc-d9c5a0719d6a .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 2em;
  line-height: 1em;
  
  text-align: center;
}



#s-8395c1f3-c7d7-49e9-9dac-23a32f98a5cd {
  margin-left: auto;
margin-right: auto;
max-width: 90%;
}

.shg-sld-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

.shg-sld-slides {
  word-break: break-word;
  position: relative;
  overflow-x: hidden;
}

.shg-sld-slides-padded {
  padding: 0 35px;
}

.shg-sld-nav-button {
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: 0;
  width: 35px;
  min-height: 35px;
  height: 100%;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.shg-sld-nav-button > svg {
  height: 100%;
  width: 100%;
}

.shg-sld-nav-button.shg-sld-left {
  left: 0;
}

.shg-sld-nav-button.shg-sld-left-over-content {
  left: 2%;
}

.shg-sld-nav-button.shg-sld-right {
  right: 0;
}

.shg-sld-nav-button.shg-sld-right-over-content {
  right: 2%;
}

.shg-sld-nav-button.shg-sld-disabled {
  cursor: default;
  opacity: 0.2;
}

.shg-sld-item {
  display: none;
}

.shg-sld-item.shg-sld-active {
  display: block;
}

.shg-sld-dots {
  margin-top: 10px;
  text-align: center;
  z-index: 1;
  position: relative;
}

.shg-sld-dots-on-top {
  margin-top: -30px !important;
}

.shg-sld-dot {
  cursor: pointer;
  display: inline-block !important;
  height: 14px;
  width: 14px;
  border-radius: 100%;
  margin-left: 5px;
  opacity: 0.5;
}

.shg-sld-dot:first-child {
  margin-left: 0px;
}

.shg-sld-dot.shg-sld-active {
  opacity: 1;
}

@keyframes shg-sld-fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

#s-c637f72b-d920-4b57-9793-5a5a511a0a0a {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 5%;
padding-bottom: 1px;
max-width: 100%;
}

#s-c637f72b-d920-4b57-9793-5a5a511a0a0a .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-c637f72b-d920-4b57-9793-5a5a511a0a0a .shg-sld-nav-button.shg-sld-left,
#s-c637f72b-d920-4b57-9793-5a5a511a0a0a .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-7b7ab0ef-5bf7-4171-8fc0-1751db56bd01 {
  min-height: 50px;
}








#s-7b7ab0ef-5bf7-4171-8fc0-1751db56bd01 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7b7ab0ef-5bf7-4171-8fc0-1751db56bd01.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 {
  margin-bottom: 3%;
max-width: 20%;
aspect-ratio: 1/1;
text-align: center;
}

#s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 {
  margin: 0 !important;
  overflow: visible;
}

#s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  margin-bottom: 3%;
}

.shg-image-content-margin-container-s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 img.shogun-image {
  /* Add background color handling */
  
}

#s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image {
  box-sizing: border-box;
}



.s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image-container {
      position: relative;
    }

    .s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

@media (min-width: 1200px){#s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 {
  margin: 0 !important;
  overflow: visible;
}

#s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 img.shogun-image {
  /* Add background color handling */
  
}

#s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image {
  box-sizing: border-box;
}



.s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image-container {
      position: relative;
    }

    .s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 {
  margin: 0 !important;
  overflow: visible;
}

#s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 img.shogun-image {
  /* Add background color handling */
  
}

#s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image {
  box-sizing: border-box;
}



.s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image-container {
      position: relative;
    }

    .s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 {
  margin: 0 !important;
  overflow: visible;
}

#s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 img.shogun-image {
  /* Add background color handling */
  
}

#s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image {
  box-sizing: border-box;
}



.s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image-container {
      position: relative;
    }

    .s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (max-width: 767px){#s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 {
  margin: 0 !important;
  overflow: visible;
}

#s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 img.shogun-image {
  /* Add background color handling */
  
}

#s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image {
  box-sizing: border-box;
}



.s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image-container {
      position: relative;
    }

    .s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f02ec6a2-e452-4ad8-95d6-0299fa4b29e7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}
#s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 {
  max-width: 20%;
aspect-ratio: 2570/470;
text-align: center;
}

#s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 {
  margin: 0 !important;
  overflow: visible;
}

#s-c9e55013-82b1-4d9e-a2cb-b4968d005b90-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 img.shogun-image {
  /* Add background color handling */
  
}

#s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-c9e55013-82b1-4d9e-a2cb-b4968d005b90.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c9e55013-82b1-4d9e-a2cb-b4968d005b90.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c9e55013-82b1-4d9e-a2cb-b4968d005b90.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c9e55013-82b1-4d9e-a2cb-b4968d005b90.shogun-image {
  box-sizing: border-box;
}



.s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 img.shogun-image {
  
}


@media (min-width: 1200px){#s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 {
  margin: 0 !important;
  overflow: visible;
}

#s-c9e55013-82b1-4d9e-a2cb-b4968d005b90-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 img.shogun-image {
  /* Add background color handling */
  
}

#s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-c9e55013-82b1-4d9e-a2cb-b4968d005b90.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c9e55013-82b1-4d9e-a2cb-b4968d005b90.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c9e55013-82b1-4d9e-a2cb-b4968d005b90.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c9e55013-82b1-4d9e-a2cb-b4968d005b90.shogun-image {
  box-sizing: border-box;
}



.s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 {
  margin: 0 !important;
  overflow: visible;
}

#s-c9e55013-82b1-4d9e-a2cb-b4968d005b90-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 img.shogun-image {
  /* Add background color handling */
  
}

#s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-c9e55013-82b1-4d9e-a2cb-b4968d005b90.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c9e55013-82b1-4d9e-a2cb-b4968d005b90.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c9e55013-82b1-4d9e-a2cb-b4968d005b90.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c9e55013-82b1-4d9e-a2cb-b4968d005b90.shogun-image {
  box-sizing: border-box;
}



.s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 {
  margin: 0 !important;
  overflow: visible;
}

#s-c9e55013-82b1-4d9e-a2cb-b4968d005b90-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 img.shogun-image {
  /* Add background color handling */
  
}

#s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-c9e55013-82b1-4d9e-a2cb-b4968d005b90.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c9e55013-82b1-4d9e-a2cb-b4968d005b90.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c9e55013-82b1-4d9e-a2cb-b4968d005b90.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c9e55013-82b1-4d9e-a2cb-b4968d005b90.shogun-image {
  box-sizing: border-box;
}



.s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 img.shogun-image {
  
}


}@media (max-width: 767px){#s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 {
  margin: 0 !important;
  overflow: visible;
}

#s-c9e55013-82b1-4d9e-a2cb-b4968d005b90-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 img.shogun-image {
  /* Add background color handling */
  
}

#s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-c9e55013-82b1-4d9e-a2cb-b4968d005b90.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c9e55013-82b1-4d9e-a2cb-b4968d005b90.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c9e55013-82b1-4d9e-a2cb-b4968d005b90.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c9e55013-82b1-4d9e-a2cb-b4968d005b90.shogun-image {
  box-sizing: border-box;
}



.s-c9e55013-82b1-4d9e-a2cb-b4968d005b90 img.shogun-image {
  
}


}
#s-2c575045-006a-4e3e-96f2-4ba669ccf18b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2c575045-006a-4e3e-96f2-4ba669ccf18b .shogun-heading-component h2 {
  color: ;
  font-weight:  500 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.4em;
  
  
  
}



#s-f44adcb3-c3a1-409e-a51c-89f451871adb {
  min-height: 50px;
}








#s-f44adcb3-c3a1-409e-a51c-89f451871adb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f44adcb3-c3a1-409e-a51c-89f451871adb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ce4dac4c-4744-4185-98f3-5af07331c9ed {
  margin-bottom: 3%;
max-width: 20%;
aspect-ratio: 1/1;
text-align: center;
}

#s-ce4dac4c-4744-4185-98f3-5af07331c9ed {
  margin: 0 !important;
  overflow: visible;
}

#s-ce4dac4c-4744-4185-98f3-5af07331c9ed-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ce4dac4c-4744-4185-98f3-5af07331c9ed {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  margin-bottom: 3%;
}

.shg-image-content-margin-container-s-ce4dac4c-4744-4185-98f3-5af07331c9ed {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ce4dac4c-4744-4185-98f3-5af07331c9ed img.shogun-image {
  /* Add background color handling */
  
}

#s-ce4dac4c-4744-4185-98f3-5af07331c9ed img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ce4dac4c-4744-4185-98f3-5af07331c9ed .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ce4dac4c-4744-4185-98f3-5af07331c9ed .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ce4dac4c-4744-4185-98f3-5af07331c9ed .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ce4dac4c-4744-4185-98f3-5af07331c9ed img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-ce4dac4c-4744-4185-98f3-5af07331c9ed .shogun-image-content {
  
    justify-content: center;
  
}

.s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image {
  box-sizing: border-box;
}



.s-ce4dac4c-4744-4185-98f3-5af07331c9ed img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ce4dac4c-4744-4185-98f3-5af07331c9ed {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image-container {
      position: relative;
    }

    .s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ce4dac4c-4744-4185-98f3-5af07331c9ed img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

@media (min-width: 1200px){#s-ce4dac4c-4744-4185-98f3-5af07331c9ed {
  margin: 0 !important;
  overflow: visible;
}

#s-ce4dac4c-4744-4185-98f3-5af07331c9ed-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ce4dac4c-4744-4185-98f3-5af07331c9ed {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ce4dac4c-4744-4185-98f3-5af07331c9ed {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ce4dac4c-4744-4185-98f3-5af07331c9ed img.shogun-image {
  /* Add background color handling */
  
}

#s-ce4dac4c-4744-4185-98f3-5af07331c9ed img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ce4dac4c-4744-4185-98f3-5af07331c9ed .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ce4dac4c-4744-4185-98f3-5af07331c9ed .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ce4dac4c-4744-4185-98f3-5af07331c9ed .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ce4dac4c-4744-4185-98f3-5af07331c9ed img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-ce4dac4c-4744-4185-98f3-5af07331c9ed .shogun-image-content {
  
    justify-content: center;
  
}

.s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image {
  box-sizing: border-box;
}



.s-ce4dac4c-4744-4185-98f3-5af07331c9ed img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ce4dac4c-4744-4185-98f3-5af07331c9ed {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image-container {
      position: relative;
    }

    .s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ce4dac4c-4744-4185-98f3-5af07331c9ed img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-ce4dac4c-4744-4185-98f3-5af07331c9ed {
  margin: 0 !important;
  overflow: visible;
}

#s-ce4dac4c-4744-4185-98f3-5af07331c9ed-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ce4dac4c-4744-4185-98f3-5af07331c9ed {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ce4dac4c-4744-4185-98f3-5af07331c9ed {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ce4dac4c-4744-4185-98f3-5af07331c9ed img.shogun-image {
  /* Add background color handling */
  
}

#s-ce4dac4c-4744-4185-98f3-5af07331c9ed img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ce4dac4c-4744-4185-98f3-5af07331c9ed .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ce4dac4c-4744-4185-98f3-5af07331c9ed .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ce4dac4c-4744-4185-98f3-5af07331c9ed .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ce4dac4c-4744-4185-98f3-5af07331c9ed img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-ce4dac4c-4744-4185-98f3-5af07331c9ed .shogun-image-content {
  
    justify-content: center;
  
}

.s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image {
  box-sizing: border-box;
}



.s-ce4dac4c-4744-4185-98f3-5af07331c9ed img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ce4dac4c-4744-4185-98f3-5af07331c9ed {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image-container {
      position: relative;
    }

    .s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ce4dac4c-4744-4185-98f3-5af07331c9ed img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-ce4dac4c-4744-4185-98f3-5af07331c9ed {
  margin: 0 !important;
  overflow: visible;
}

#s-ce4dac4c-4744-4185-98f3-5af07331c9ed-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ce4dac4c-4744-4185-98f3-5af07331c9ed {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ce4dac4c-4744-4185-98f3-5af07331c9ed {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ce4dac4c-4744-4185-98f3-5af07331c9ed img.shogun-image {
  /* Add background color handling */
  
}

#s-ce4dac4c-4744-4185-98f3-5af07331c9ed img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ce4dac4c-4744-4185-98f3-5af07331c9ed .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ce4dac4c-4744-4185-98f3-5af07331c9ed .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ce4dac4c-4744-4185-98f3-5af07331c9ed .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ce4dac4c-4744-4185-98f3-5af07331c9ed img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-ce4dac4c-4744-4185-98f3-5af07331c9ed .shogun-image-content {
  
    justify-content: center;
  
}

.s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image {
  box-sizing: border-box;
}



.s-ce4dac4c-4744-4185-98f3-5af07331c9ed img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ce4dac4c-4744-4185-98f3-5af07331c9ed {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image-container {
      position: relative;
    }

    .s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ce4dac4c-4744-4185-98f3-5af07331c9ed img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (max-width: 767px){#s-ce4dac4c-4744-4185-98f3-5af07331c9ed {
  margin: 0 !important;
  overflow: visible;
}

#s-ce4dac4c-4744-4185-98f3-5af07331c9ed-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ce4dac4c-4744-4185-98f3-5af07331c9ed {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ce4dac4c-4744-4185-98f3-5af07331c9ed {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ce4dac4c-4744-4185-98f3-5af07331c9ed img.shogun-image {
  /* Add background color handling */
  
}

#s-ce4dac4c-4744-4185-98f3-5af07331c9ed img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ce4dac4c-4744-4185-98f3-5af07331c9ed .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ce4dac4c-4744-4185-98f3-5af07331c9ed .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ce4dac4c-4744-4185-98f3-5af07331c9ed .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ce4dac4c-4744-4185-98f3-5af07331c9ed img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-ce4dac4c-4744-4185-98f3-5af07331c9ed .shogun-image-content {
  
    justify-content: center;
  
}

.s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image {
  box-sizing: border-box;
}



.s-ce4dac4c-4744-4185-98f3-5af07331c9ed img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ce4dac4c-4744-4185-98f3-5af07331c9ed {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image-container {
      position: relative;
    }

    .s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ce4dac4c-4744-4185-98f3-5af07331c9ed.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ce4dac4c-4744-4185-98f3-5af07331c9ed img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}
#s-6910c6f0-26df-429f-9a5e-f905e3a737d5 {
  max-width: 20%;
aspect-ratio: 2570/469;
text-align: center;
}

#s-6910c6f0-26df-429f-9a5e-f905e3a737d5 {
  margin: 0 !important;
  overflow: visible;
}

#s-6910c6f0-26df-429f-9a5e-f905e3a737d5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6910c6f0-26df-429f-9a5e-f905e3a737d5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6910c6f0-26df-429f-9a5e-f905e3a737d5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6910c6f0-26df-429f-9a5e-f905e3a737d5 img.shogun-image {
  /* Add background color handling */
  
}

#s-6910c6f0-26df-429f-9a5e-f905e3a737d5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-6910c6f0-26df-429f-9a5e-f905e3a737d5.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-6910c6f0-26df-429f-9a5e-f905e3a737d5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6910c6f0-26df-429f-9a5e-f905e3a737d5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6910c6f0-26df-429f-9a5e-f905e3a737d5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6910c6f0-26df-429f-9a5e-f905e3a737d5.shogun-image {
  box-sizing: border-box;
}



.s-6910c6f0-26df-429f-9a5e-f905e3a737d5 img.shogun-image {
  
}


@media (min-width: 1200px){#s-6910c6f0-26df-429f-9a5e-f905e3a737d5 {
  margin: 0 !important;
  overflow: visible;
}

#s-6910c6f0-26df-429f-9a5e-f905e3a737d5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6910c6f0-26df-429f-9a5e-f905e3a737d5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6910c6f0-26df-429f-9a5e-f905e3a737d5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6910c6f0-26df-429f-9a5e-f905e3a737d5 img.shogun-image {
  /* Add background color handling */
  
}

#s-6910c6f0-26df-429f-9a5e-f905e3a737d5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-6910c6f0-26df-429f-9a5e-f905e3a737d5.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-6910c6f0-26df-429f-9a5e-f905e3a737d5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6910c6f0-26df-429f-9a5e-f905e3a737d5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6910c6f0-26df-429f-9a5e-f905e3a737d5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6910c6f0-26df-429f-9a5e-f905e3a737d5.shogun-image {
  box-sizing: border-box;
}



.s-6910c6f0-26df-429f-9a5e-f905e3a737d5 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-6910c6f0-26df-429f-9a5e-f905e3a737d5 {
  margin: 0 !important;
  overflow: visible;
}

#s-6910c6f0-26df-429f-9a5e-f905e3a737d5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6910c6f0-26df-429f-9a5e-f905e3a737d5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6910c6f0-26df-429f-9a5e-f905e3a737d5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6910c6f0-26df-429f-9a5e-f905e3a737d5 img.shogun-image {
  /* Add background color handling */
  
}

#s-6910c6f0-26df-429f-9a5e-f905e3a737d5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-6910c6f0-26df-429f-9a5e-f905e3a737d5.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-6910c6f0-26df-429f-9a5e-f905e3a737d5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6910c6f0-26df-429f-9a5e-f905e3a737d5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6910c6f0-26df-429f-9a5e-f905e3a737d5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6910c6f0-26df-429f-9a5e-f905e3a737d5.shogun-image {
  box-sizing: border-box;
}



.s-6910c6f0-26df-429f-9a5e-f905e3a737d5 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-6910c6f0-26df-429f-9a5e-f905e3a737d5 {
  margin: 0 !important;
  overflow: visible;
}

#s-6910c6f0-26df-429f-9a5e-f905e3a737d5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6910c6f0-26df-429f-9a5e-f905e3a737d5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6910c6f0-26df-429f-9a5e-f905e3a737d5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6910c6f0-26df-429f-9a5e-f905e3a737d5 img.shogun-image {
  /* Add background color handling */
  
}

#s-6910c6f0-26df-429f-9a5e-f905e3a737d5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-6910c6f0-26df-429f-9a5e-f905e3a737d5.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-6910c6f0-26df-429f-9a5e-f905e3a737d5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6910c6f0-26df-429f-9a5e-f905e3a737d5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6910c6f0-26df-429f-9a5e-f905e3a737d5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6910c6f0-26df-429f-9a5e-f905e3a737d5.shogun-image {
  box-sizing: border-box;
}



.s-6910c6f0-26df-429f-9a5e-f905e3a737d5 img.shogun-image {
  
}


}@media (max-width: 767px){#s-6910c6f0-26df-429f-9a5e-f905e3a737d5 {
  margin: 0 !important;
  overflow: visible;
}

#s-6910c6f0-26df-429f-9a5e-f905e3a737d5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6910c6f0-26df-429f-9a5e-f905e3a737d5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6910c6f0-26df-429f-9a5e-f905e3a737d5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6910c6f0-26df-429f-9a5e-f905e3a737d5 img.shogun-image {
  /* Add background color handling */
  
}

#s-6910c6f0-26df-429f-9a5e-f905e3a737d5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-6910c6f0-26df-429f-9a5e-f905e3a737d5.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-6910c6f0-26df-429f-9a5e-f905e3a737d5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6910c6f0-26df-429f-9a5e-f905e3a737d5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6910c6f0-26df-429f-9a5e-f905e3a737d5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6910c6f0-26df-429f-9a5e-f905e3a737d5.shogun-image {
  box-sizing: border-box;
}



.s-6910c6f0-26df-429f-9a5e-f905e3a737d5 img.shogun-image {
  
}


}
#s-45c95226-8467-44c6-8810-6dea2455124b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-45c95226-8467-44c6-8810-6dea2455124b .shogun-heading-component h2 {
  color: ;
  font-weight:  500 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.4em;
  
  
  
}



#s-f5f8698e-20a3-4073-bc41-566a22c54438 {
  min-height: 50px;
}








#s-f5f8698e-20a3-4073-bc41-566a22c54438 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f5f8698e-20a3-4073-bc41-566a22c54438.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-63e67972-c7a3-4cbd-b395-cfdd54593144 {
  margin-bottom: 3%;
max-width: 20%;
aspect-ratio: 1/1;
text-align: center;
}

#s-63e67972-c7a3-4cbd-b395-cfdd54593144 {
  margin: 0 !important;
  overflow: visible;
}

#s-63e67972-c7a3-4cbd-b395-cfdd54593144-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-63e67972-c7a3-4cbd-b395-cfdd54593144 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  margin-bottom: 3%;
}

.shg-image-content-margin-container-s-63e67972-c7a3-4cbd-b395-cfdd54593144 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-63e67972-c7a3-4cbd-b395-cfdd54593144 img.shogun-image {
  /* Add background color handling */
  
}

#s-63e67972-c7a3-4cbd-b395-cfdd54593144 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-63e67972-c7a3-4cbd-b395-cfdd54593144 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-63e67972-c7a3-4cbd-b395-cfdd54593144 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-63e67972-c7a3-4cbd-b395-cfdd54593144 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-63e67972-c7a3-4cbd-b395-cfdd54593144 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-63e67972-c7a3-4cbd-b395-cfdd54593144 .shogun-image-content {
  
    justify-content: center;
  
}

.s-63e67972-c7a3-4cbd-b395-cfdd54593144.shg-align-container {
  display: flex;
  justify-content: center
}

.s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image {
  box-sizing: border-box;
}



.s-63e67972-c7a3-4cbd-b395-cfdd54593144 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-63e67972-c7a3-4cbd-b395-cfdd54593144 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image-container {
      position: relative;
    }

    .s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-63e67972-c7a3-4cbd-b395-cfdd54593144 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

@media (min-width: 1200px){#s-63e67972-c7a3-4cbd-b395-cfdd54593144 {
  margin: 0 !important;
  overflow: visible;
}

#s-63e67972-c7a3-4cbd-b395-cfdd54593144-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-63e67972-c7a3-4cbd-b395-cfdd54593144 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-63e67972-c7a3-4cbd-b395-cfdd54593144 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-63e67972-c7a3-4cbd-b395-cfdd54593144 img.shogun-image {
  /* Add background color handling */
  
}

#s-63e67972-c7a3-4cbd-b395-cfdd54593144 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-63e67972-c7a3-4cbd-b395-cfdd54593144 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-63e67972-c7a3-4cbd-b395-cfdd54593144 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-63e67972-c7a3-4cbd-b395-cfdd54593144 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-63e67972-c7a3-4cbd-b395-cfdd54593144 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-63e67972-c7a3-4cbd-b395-cfdd54593144 .shogun-image-content {
  
    justify-content: center;
  
}

.s-63e67972-c7a3-4cbd-b395-cfdd54593144.shg-align-container {
  display: flex;
  justify-content: center
}

.s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image {
  box-sizing: border-box;
}



.s-63e67972-c7a3-4cbd-b395-cfdd54593144 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-63e67972-c7a3-4cbd-b395-cfdd54593144 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image-container {
      position: relative;
    }

    .s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-63e67972-c7a3-4cbd-b395-cfdd54593144 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-63e67972-c7a3-4cbd-b395-cfdd54593144 {
  margin: 0 !important;
  overflow: visible;
}

#s-63e67972-c7a3-4cbd-b395-cfdd54593144-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-63e67972-c7a3-4cbd-b395-cfdd54593144 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-63e67972-c7a3-4cbd-b395-cfdd54593144 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-63e67972-c7a3-4cbd-b395-cfdd54593144 img.shogun-image {
  /* Add background color handling */
  
}

#s-63e67972-c7a3-4cbd-b395-cfdd54593144 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-63e67972-c7a3-4cbd-b395-cfdd54593144 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-63e67972-c7a3-4cbd-b395-cfdd54593144 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-63e67972-c7a3-4cbd-b395-cfdd54593144 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-63e67972-c7a3-4cbd-b395-cfdd54593144 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-63e67972-c7a3-4cbd-b395-cfdd54593144 .shogun-image-content {
  
    justify-content: center;
  
}

.s-63e67972-c7a3-4cbd-b395-cfdd54593144.shg-align-container {
  display: flex;
  justify-content: center
}

.s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image {
  box-sizing: border-box;
}



.s-63e67972-c7a3-4cbd-b395-cfdd54593144 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-63e67972-c7a3-4cbd-b395-cfdd54593144 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image-container {
      position: relative;
    }

    .s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-63e67972-c7a3-4cbd-b395-cfdd54593144 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-63e67972-c7a3-4cbd-b395-cfdd54593144 {
  margin: 0 !important;
  overflow: visible;
}

#s-63e67972-c7a3-4cbd-b395-cfdd54593144-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-63e67972-c7a3-4cbd-b395-cfdd54593144 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-63e67972-c7a3-4cbd-b395-cfdd54593144 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-63e67972-c7a3-4cbd-b395-cfdd54593144 img.shogun-image {
  /* Add background color handling */
  
}

#s-63e67972-c7a3-4cbd-b395-cfdd54593144 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-63e67972-c7a3-4cbd-b395-cfdd54593144 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-63e67972-c7a3-4cbd-b395-cfdd54593144 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-63e67972-c7a3-4cbd-b395-cfdd54593144 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-63e67972-c7a3-4cbd-b395-cfdd54593144 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-63e67972-c7a3-4cbd-b395-cfdd54593144 .shogun-image-content {
  
    justify-content: center;
  
}

.s-63e67972-c7a3-4cbd-b395-cfdd54593144.shg-align-container {
  display: flex;
  justify-content: center
}

.s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image {
  box-sizing: border-box;
}



.s-63e67972-c7a3-4cbd-b395-cfdd54593144 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-63e67972-c7a3-4cbd-b395-cfdd54593144 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image-container {
      position: relative;
    }

    .s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-63e67972-c7a3-4cbd-b395-cfdd54593144 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (max-width: 767px){#s-63e67972-c7a3-4cbd-b395-cfdd54593144 {
  margin: 0 !important;
  overflow: visible;
}

#s-63e67972-c7a3-4cbd-b395-cfdd54593144-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-63e67972-c7a3-4cbd-b395-cfdd54593144 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-63e67972-c7a3-4cbd-b395-cfdd54593144 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-63e67972-c7a3-4cbd-b395-cfdd54593144 img.shogun-image {
  /* Add background color handling */
  
}

#s-63e67972-c7a3-4cbd-b395-cfdd54593144 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-63e67972-c7a3-4cbd-b395-cfdd54593144 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-63e67972-c7a3-4cbd-b395-cfdd54593144 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-63e67972-c7a3-4cbd-b395-cfdd54593144 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-63e67972-c7a3-4cbd-b395-cfdd54593144 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-63e67972-c7a3-4cbd-b395-cfdd54593144 .shogun-image-content {
  
    justify-content: center;
  
}

.s-63e67972-c7a3-4cbd-b395-cfdd54593144.shg-align-container {
  display: flex;
  justify-content: center
}

.s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image {
  box-sizing: border-box;
}



.s-63e67972-c7a3-4cbd-b395-cfdd54593144 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-63e67972-c7a3-4cbd-b395-cfdd54593144 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image-container {
      position: relative;
    }

    .s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-63e67972-c7a3-4cbd-b395-cfdd54593144.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-63e67972-c7a3-4cbd-b395-cfdd54593144 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}
#s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f {
  max-width: 20%;
aspect-ratio: 2570/470;
text-align: center;
}

#s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f {
  margin: 0 !important;
  overflow: visible;
}

#s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f img.shogun-image {
  /* Add background color handling */
  
}

#s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f .shogun-image-content {
  
    justify-content: center;
  
}

.s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f.shogun-image {
  box-sizing: border-box;
}



.s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f img.shogun-image {
  
}


@media (min-width: 1200px){#s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f {
  margin: 0 !important;
  overflow: visible;
}

#s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f img.shogun-image {
  /* Add background color handling */
  
}

#s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f .shogun-image-content {
  
    justify-content: center;
  
}

.s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f.shogun-image {
  box-sizing: border-box;
}



.s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f {
  margin: 0 !important;
  overflow: visible;
}

#s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f img.shogun-image {
  /* Add background color handling */
  
}

#s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f .shogun-image-content {
  
    justify-content: center;
  
}

.s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f.shogun-image {
  box-sizing: border-box;
}



.s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f {
  margin: 0 !important;
  overflow: visible;
}

#s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f img.shogun-image {
  /* Add background color handling */
  
}

#s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f .shogun-image-content {
  
    justify-content: center;
  
}

.s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f.shogun-image {
  box-sizing: border-box;
}



.s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f img.shogun-image {
  
}


}@media (max-width: 767px){#s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f {
  margin: 0 !important;
  overflow: visible;
}

#s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f img.shogun-image {
  /* Add background color handling */
  
}

#s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f .shogun-image-content {
  
    justify-content: center;
  
}

.s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f.shogun-image {
  box-sizing: border-box;
}



.s-2c9cee2f-7228-41a3-b84b-50c3047a8e3f img.shogun-image {
  
}


}
#s-3b636d13-d4d0-4904-93b6-13c0211ca2c8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3b636d13-d4d0-4904-93b6-13c0211ca2c8 .shogun-heading-component h2 {
  color: ;
  font-weight:  500 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.4em;
  
  
  
}



#s-72ab1060-ce96-4ccd-9beb-0935618a2623 {
  min-height: 50px;
}








#s-72ab1060-ce96-4ccd-9beb-0935618a2623 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-72ab1060-ce96-4ccd-9beb-0935618a2623.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 {
  margin-bottom: 3%;
max-width: 20%;
aspect-ratio: 1/1;
text-align: center;
}

#s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 {
  margin: 0 !important;
  overflow: visible;
}

#s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  margin-bottom: 3%;
}

.shg-image-content-margin-container-s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 img.shogun-image {
  /* Add background color handling */
  
}

#s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image {
  box-sizing: border-box;
}



.s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image-container {
      position: relative;
    }

    .s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

@media (min-width: 1200px){#s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 {
  margin: 0 !important;
  overflow: visible;
}

#s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 img.shogun-image {
  /* Add background color handling */
  
}

#s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image {
  box-sizing: border-box;
}



.s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image-container {
      position: relative;
    }

    .s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 {
  margin: 0 !important;
  overflow: visible;
}

#s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 img.shogun-image {
  /* Add background color handling */
  
}

#s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image {
  box-sizing: border-box;
}



.s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image-container {
      position: relative;
    }

    .s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 {
  margin: 0 !important;
  overflow: visible;
}

#s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 img.shogun-image {
  /* Add background color handling */
  
}

#s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image {
  box-sizing: border-box;
}



.s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image-container {
      position: relative;
    }

    .s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (max-width: 767px){#s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 {
  margin: 0 !important;
  overflow: visible;
}

#s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 img.shogun-image {
  /* Add background color handling */
  
}

#s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image {
  box-sizing: border-box;
}



.s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image-container {
      position: relative;
    }

    .s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8c877eb5-8c2a-4476-a0b0-c9a0881ddd42 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}
#s-26040afa-aa5b-4045-a847-0281481387c9 {
  max-width: 20%;
aspect-ratio: 2570/470;
text-align: center;
}

#s-26040afa-aa5b-4045-a847-0281481387c9 {
  margin: 0 !important;
  overflow: visible;
}

#s-26040afa-aa5b-4045-a847-0281481387c9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-26040afa-aa5b-4045-a847-0281481387c9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-26040afa-aa5b-4045-a847-0281481387c9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-26040afa-aa5b-4045-a847-0281481387c9 img.shogun-image {
  /* Add background color handling */
  
}

#s-26040afa-aa5b-4045-a847-0281481387c9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-26040afa-aa5b-4045-a847-0281481387c9 .shg-image-content-wrapper {
      aspect-ratio: 2570/470;
      min-width: 100%;
      height: auto;
    }

    #s-26040afa-aa5b-4045-a847-0281481387c9 .shogun-image-link {
      aspect-ratio: 2570/470;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-26040afa-aa5b-4045-a847-0281481387c9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-26040afa-aa5b-4045-a847-0281481387c9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-26040afa-aa5b-4045-a847-0281481387c9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-26040afa-aa5b-4045-a847-0281481387c9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image {
  box-sizing: border-box;
}



.s-26040afa-aa5b-4045-a847-0281481387c9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-26040afa-aa5b-4045-a847-0281481387c9 {
      --shg-aspect-ratio: calc(2570/470); 
    }

    .s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image-container {
      position: relative;
    }

    .s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-26040afa-aa5b-4045-a847-0281481387c9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

@media (min-width: 1200px){#s-26040afa-aa5b-4045-a847-0281481387c9 {
  margin: 0 !important;
  overflow: visible;
}

#s-26040afa-aa5b-4045-a847-0281481387c9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-26040afa-aa5b-4045-a847-0281481387c9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-26040afa-aa5b-4045-a847-0281481387c9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-26040afa-aa5b-4045-a847-0281481387c9 img.shogun-image {
  /* Add background color handling */
  
}

#s-26040afa-aa5b-4045-a847-0281481387c9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-26040afa-aa5b-4045-a847-0281481387c9 .shg-image-content-wrapper {
      aspect-ratio: 2570/470;
      min-width: 100%;
      height: auto;
    }

    #s-26040afa-aa5b-4045-a847-0281481387c9 .shogun-image-link {
      aspect-ratio: 2570/470;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-26040afa-aa5b-4045-a847-0281481387c9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-26040afa-aa5b-4045-a847-0281481387c9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-26040afa-aa5b-4045-a847-0281481387c9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-26040afa-aa5b-4045-a847-0281481387c9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image {
  box-sizing: border-box;
}



.s-26040afa-aa5b-4045-a847-0281481387c9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-26040afa-aa5b-4045-a847-0281481387c9 {
      --shg-aspect-ratio: calc(2570/470); 
    }

    .s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image-container {
      position: relative;
    }

    .s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-26040afa-aa5b-4045-a847-0281481387c9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-26040afa-aa5b-4045-a847-0281481387c9 {
  margin: 0 !important;
  overflow: visible;
}

#s-26040afa-aa5b-4045-a847-0281481387c9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-26040afa-aa5b-4045-a847-0281481387c9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-26040afa-aa5b-4045-a847-0281481387c9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-26040afa-aa5b-4045-a847-0281481387c9 img.shogun-image {
  /* Add background color handling */
  
}

#s-26040afa-aa5b-4045-a847-0281481387c9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-26040afa-aa5b-4045-a847-0281481387c9 .shg-image-content-wrapper {
      aspect-ratio: 2570/470;
      min-width: 100%;
      height: auto;
    }

    #s-26040afa-aa5b-4045-a847-0281481387c9 .shogun-image-link {
      aspect-ratio: 2570/470;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-26040afa-aa5b-4045-a847-0281481387c9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-26040afa-aa5b-4045-a847-0281481387c9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-26040afa-aa5b-4045-a847-0281481387c9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-26040afa-aa5b-4045-a847-0281481387c9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image {
  box-sizing: border-box;
}



.s-26040afa-aa5b-4045-a847-0281481387c9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-26040afa-aa5b-4045-a847-0281481387c9 {
      --shg-aspect-ratio: calc(2570/470); 
    }

    .s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image-container {
      position: relative;
    }

    .s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-26040afa-aa5b-4045-a847-0281481387c9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-26040afa-aa5b-4045-a847-0281481387c9 {
  margin: 0 !important;
  overflow: visible;
}

#s-26040afa-aa5b-4045-a847-0281481387c9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-26040afa-aa5b-4045-a847-0281481387c9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-26040afa-aa5b-4045-a847-0281481387c9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-26040afa-aa5b-4045-a847-0281481387c9 img.shogun-image {
  /* Add background color handling */
  
}

#s-26040afa-aa5b-4045-a847-0281481387c9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-26040afa-aa5b-4045-a847-0281481387c9 .shg-image-content-wrapper {
      aspect-ratio: 2570/470;
      min-width: 100%;
      height: auto;
    }

    #s-26040afa-aa5b-4045-a847-0281481387c9 .shogun-image-link {
      aspect-ratio: 2570/470;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-26040afa-aa5b-4045-a847-0281481387c9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-26040afa-aa5b-4045-a847-0281481387c9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-26040afa-aa5b-4045-a847-0281481387c9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-26040afa-aa5b-4045-a847-0281481387c9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image {
  box-sizing: border-box;
}



.s-26040afa-aa5b-4045-a847-0281481387c9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-26040afa-aa5b-4045-a847-0281481387c9 {
      --shg-aspect-ratio: calc(2570/470); 
    }

    .s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image-container {
      position: relative;
    }

    .s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-26040afa-aa5b-4045-a847-0281481387c9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (max-width: 767px){#s-26040afa-aa5b-4045-a847-0281481387c9 {
  margin: 0 !important;
  overflow: visible;
}

#s-26040afa-aa5b-4045-a847-0281481387c9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-26040afa-aa5b-4045-a847-0281481387c9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-26040afa-aa5b-4045-a847-0281481387c9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-26040afa-aa5b-4045-a847-0281481387c9 img.shogun-image {
  /* Add background color handling */
  
}

#s-26040afa-aa5b-4045-a847-0281481387c9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-26040afa-aa5b-4045-a847-0281481387c9 .shg-image-content-wrapper {
      aspect-ratio: 2570/470;
      min-width: 100%;
      height: auto;
    }

    #s-26040afa-aa5b-4045-a847-0281481387c9 .shogun-image-link {
      aspect-ratio: 2570/470;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-26040afa-aa5b-4045-a847-0281481387c9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-26040afa-aa5b-4045-a847-0281481387c9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-26040afa-aa5b-4045-a847-0281481387c9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-26040afa-aa5b-4045-a847-0281481387c9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image {
  box-sizing: border-box;
}



.s-26040afa-aa5b-4045-a847-0281481387c9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-26040afa-aa5b-4045-a847-0281481387c9 {
      --shg-aspect-ratio: calc(2570/470); 
    }

    .s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image-container {
      position: relative;
    }

    .s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-26040afa-aa5b-4045-a847-0281481387c9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-26040afa-aa5b-4045-a847-0281481387c9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}
#s-89ccce2a-064c-4f9d-b9aa-be72891a84fc {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-89ccce2a-064c-4f9d-b9aa-be72891a84fc .shogun-heading-component h2 {
  color: ;
  font-weight:  500 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.4em;
  line-height: 1.2em;
  
  
}



#s-d2deb887-17e8-4c5c-b1ea-be25553f8aaf {
  min-height: 50px;
}








#s-d2deb887-17e8-4c5c-b1ea-be25553f8aaf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d2deb887-17e8-4c5c-b1ea-be25553f8aaf.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-11cf3e91-2030-426e-b035-18742b6f8221 {
  margin-bottom: 3%;
max-width: 20%;
aspect-ratio: 1/1;
text-align: center;
}

#s-11cf3e91-2030-426e-b035-18742b6f8221 {
  margin: 0 !important;
  overflow: visible;
}

#s-11cf3e91-2030-426e-b035-18742b6f8221-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-11cf3e91-2030-426e-b035-18742b6f8221 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  margin-bottom: 3%;
}

.shg-image-content-margin-container-s-11cf3e91-2030-426e-b035-18742b6f8221 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-11cf3e91-2030-426e-b035-18742b6f8221 img.shogun-image {
  /* Add background color handling */
  
}

#s-11cf3e91-2030-426e-b035-18742b6f8221 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-11cf3e91-2030-426e-b035-18742b6f8221 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-11cf3e91-2030-426e-b035-18742b6f8221 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-11cf3e91-2030-426e-b035-18742b6f8221 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-11cf3e91-2030-426e-b035-18742b6f8221 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-11cf3e91-2030-426e-b035-18742b6f8221 .shogun-image-content {
  
    justify-content: center;
  
}

.s-11cf3e91-2030-426e-b035-18742b6f8221.shg-align-container {
  display: flex;
  justify-content: center
}

.s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image {
  box-sizing: border-box;
}



.s-11cf3e91-2030-426e-b035-18742b6f8221 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-11cf3e91-2030-426e-b035-18742b6f8221 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image-container {
      position: relative;
    }

    .s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-11cf3e91-2030-426e-b035-18742b6f8221 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

@media (min-width: 1200px){#s-11cf3e91-2030-426e-b035-18742b6f8221 {
  margin: 0 !important;
  overflow: visible;
}

#s-11cf3e91-2030-426e-b035-18742b6f8221-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-11cf3e91-2030-426e-b035-18742b6f8221 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-11cf3e91-2030-426e-b035-18742b6f8221 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-11cf3e91-2030-426e-b035-18742b6f8221 img.shogun-image {
  /* Add background color handling */
  
}

#s-11cf3e91-2030-426e-b035-18742b6f8221 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-11cf3e91-2030-426e-b035-18742b6f8221 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-11cf3e91-2030-426e-b035-18742b6f8221 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-11cf3e91-2030-426e-b035-18742b6f8221 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-11cf3e91-2030-426e-b035-18742b6f8221 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-11cf3e91-2030-426e-b035-18742b6f8221 .shogun-image-content {
  
    justify-content: center;
  
}

.s-11cf3e91-2030-426e-b035-18742b6f8221.shg-align-container {
  display: flex;
  justify-content: center
}

.s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image {
  box-sizing: border-box;
}



.s-11cf3e91-2030-426e-b035-18742b6f8221 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-11cf3e91-2030-426e-b035-18742b6f8221 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image-container {
      position: relative;
    }

    .s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-11cf3e91-2030-426e-b035-18742b6f8221 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-11cf3e91-2030-426e-b035-18742b6f8221 {
  margin: 0 !important;
  overflow: visible;
}

#s-11cf3e91-2030-426e-b035-18742b6f8221-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-11cf3e91-2030-426e-b035-18742b6f8221 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-11cf3e91-2030-426e-b035-18742b6f8221 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-11cf3e91-2030-426e-b035-18742b6f8221 img.shogun-image {
  /* Add background color handling */
  
}

#s-11cf3e91-2030-426e-b035-18742b6f8221 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-11cf3e91-2030-426e-b035-18742b6f8221 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-11cf3e91-2030-426e-b035-18742b6f8221 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-11cf3e91-2030-426e-b035-18742b6f8221 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-11cf3e91-2030-426e-b035-18742b6f8221 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-11cf3e91-2030-426e-b035-18742b6f8221 .shogun-image-content {
  
    justify-content: center;
  
}

.s-11cf3e91-2030-426e-b035-18742b6f8221.shg-align-container {
  display: flex;
  justify-content: center
}

.s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image {
  box-sizing: border-box;
}



.s-11cf3e91-2030-426e-b035-18742b6f8221 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-11cf3e91-2030-426e-b035-18742b6f8221 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image-container {
      position: relative;
    }

    .s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-11cf3e91-2030-426e-b035-18742b6f8221 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-11cf3e91-2030-426e-b035-18742b6f8221 {
  margin: 0 !important;
  overflow: visible;
}

#s-11cf3e91-2030-426e-b035-18742b6f8221-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-11cf3e91-2030-426e-b035-18742b6f8221 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-11cf3e91-2030-426e-b035-18742b6f8221 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-11cf3e91-2030-426e-b035-18742b6f8221 img.shogun-image {
  /* Add background color handling */
  
}

#s-11cf3e91-2030-426e-b035-18742b6f8221 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-11cf3e91-2030-426e-b035-18742b6f8221 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-11cf3e91-2030-426e-b035-18742b6f8221 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-11cf3e91-2030-426e-b035-18742b6f8221 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-11cf3e91-2030-426e-b035-18742b6f8221 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-11cf3e91-2030-426e-b035-18742b6f8221 .shogun-image-content {
  
    justify-content: center;
  
}

.s-11cf3e91-2030-426e-b035-18742b6f8221.shg-align-container {
  display: flex;
  justify-content: center
}

.s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image {
  box-sizing: border-box;
}



.s-11cf3e91-2030-426e-b035-18742b6f8221 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-11cf3e91-2030-426e-b035-18742b6f8221 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image-container {
      position: relative;
    }

    .s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-11cf3e91-2030-426e-b035-18742b6f8221 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (max-width: 767px){#s-11cf3e91-2030-426e-b035-18742b6f8221 {
  margin: 0 !important;
  overflow: visible;
}

#s-11cf3e91-2030-426e-b035-18742b6f8221-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-11cf3e91-2030-426e-b035-18742b6f8221 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-11cf3e91-2030-426e-b035-18742b6f8221 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-11cf3e91-2030-426e-b035-18742b6f8221 img.shogun-image {
  /* Add background color handling */
  
}

#s-11cf3e91-2030-426e-b035-18742b6f8221 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-11cf3e91-2030-426e-b035-18742b6f8221 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-11cf3e91-2030-426e-b035-18742b6f8221 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-11cf3e91-2030-426e-b035-18742b6f8221 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-11cf3e91-2030-426e-b035-18742b6f8221 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-11cf3e91-2030-426e-b035-18742b6f8221 .shogun-image-content {
  
    justify-content: center;
  
}

.s-11cf3e91-2030-426e-b035-18742b6f8221.shg-align-container {
  display: flex;
  justify-content: center
}

.s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image {
  box-sizing: border-box;
}



.s-11cf3e91-2030-426e-b035-18742b6f8221 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-11cf3e91-2030-426e-b035-18742b6f8221 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image-container {
      position: relative;
    }

    .s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-11cf3e91-2030-426e-b035-18742b6f8221.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-11cf3e91-2030-426e-b035-18742b6f8221 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}
#s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd {
  max-width: 20%;
aspect-ratio: 2570/470;
text-align: center;
}

#s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd {
  margin: 0 !important;
  overflow: visible;
}

#s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd img.shogun-image {
  /* Add background color handling */
  
}

#s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd .shogun-image-content {
  
    justify-content: center;
  
}

.s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd.shogun-image {
  box-sizing: border-box;
}



.s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd img.shogun-image {
  
}


@media (min-width: 1200px){#s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd {
  margin: 0 !important;
  overflow: visible;
}

#s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd img.shogun-image {
  /* Add background color handling */
  
}

#s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd .shogun-image-content {
  
    justify-content: center;
  
}

.s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd.shogun-image {
  box-sizing: border-box;
}



.s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd {
  margin: 0 !important;
  overflow: visible;
}

#s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd img.shogun-image {
  /* Add background color handling */
  
}

#s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd .shogun-image-content {
  
    justify-content: center;
  
}

.s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd.shogun-image {
  box-sizing: border-box;
}



.s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd {
  margin: 0 !important;
  overflow: visible;
}

#s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd img.shogun-image {
  /* Add background color handling */
  
}

#s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd .shogun-image-content {
  
    justify-content: center;
  
}

.s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd.shogun-image {
  box-sizing: border-box;
}



.s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd img.shogun-image {
  
}


}@media (max-width: 767px){#s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd {
  margin: 0 !important;
  overflow: visible;
}

#s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd img.shogun-image {
  /* Add background color handling */
  
}

#s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd .shogun-image-content {
  
    justify-content: center;
  
}

.s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd.shogun-image {
  box-sizing: border-box;
}



.s-aafc390e-16a3-40b2-b4d7-c716ca0d63dd img.shogun-image {
  
}


}
#s-0066ec98-d183-41ba-a466-c175a78f5e17 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0066ec98-d183-41ba-a466-c175a78f5e17 .shogun-heading-component h2 {
  color: ;
  font-weight:  500 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.4em;
  
  
  
}



#s-f403e14b-7fda-4070-98c2-2cecb1441499 {
  min-height: 50px;
}








#s-f403e14b-7fda-4070-98c2-2cecb1441499 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f403e14b-7fda-4070-98c2-2cecb1441499.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-68830ab9-6ec3-4397-9ec8-6ac69188500b {
  margin-bottom: 4%;
max-width: 20%;
aspect-ratio: 1/1;
text-align: center;
}

#s-68830ab9-6ec3-4397-9ec8-6ac69188500b {
  margin: 0 !important;
  overflow: visible;
}

#s-68830ab9-6ec3-4397-9ec8-6ac69188500b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-68830ab9-6ec3-4397-9ec8-6ac69188500b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  margin-bottom: 4%;
}

.shg-image-content-margin-container-s-68830ab9-6ec3-4397-9ec8-6ac69188500b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-68830ab9-6ec3-4397-9ec8-6ac69188500b img.shogun-image {
  /* Add background color handling */
  
}

#s-68830ab9-6ec3-4397-9ec8-6ac69188500b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-68830ab9-6ec3-4397-9ec8-6ac69188500b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-68830ab9-6ec3-4397-9ec8-6ac69188500b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-68830ab9-6ec3-4397-9ec8-6ac69188500b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-68830ab9-6ec3-4397-9ec8-6ac69188500b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-68830ab9-6ec3-4397-9ec8-6ac69188500b .shogun-image-content {
  
    justify-content: center;
  
}

.s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image {
  box-sizing: border-box;
}



.s-68830ab9-6ec3-4397-9ec8-6ac69188500b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-68830ab9-6ec3-4397-9ec8-6ac69188500b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image-container {
      position: relative;
    }

    .s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-68830ab9-6ec3-4397-9ec8-6ac69188500b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

@media (min-width: 1200px){#s-68830ab9-6ec3-4397-9ec8-6ac69188500b {
  margin: 0 !important;
  overflow: visible;
}

#s-68830ab9-6ec3-4397-9ec8-6ac69188500b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-68830ab9-6ec3-4397-9ec8-6ac69188500b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-68830ab9-6ec3-4397-9ec8-6ac69188500b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-68830ab9-6ec3-4397-9ec8-6ac69188500b img.shogun-image {
  /* Add background color handling */
  
}

#s-68830ab9-6ec3-4397-9ec8-6ac69188500b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-68830ab9-6ec3-4397-9ec8-6ac69188500b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-68830ab9-6ec3-4397-9ec8-6ac69188500b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-68830ab9-6ec3-4397-9ec8-6ac69188500b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-68830ab9-6ec3-4397-9ec8-6ac69188500b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-68830ab9-6ec3-4397-9ec8-6ac69188500b .shogun-image-content {
  
    justify-content: center;
  
}

.s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image {
  box-sizing: border-box;
}



.s-68830ab9-6ec3-4397-9ec8-6ac69188500b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-68830ab9-6ec3-4397-9ec8-6ac69188500b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image-container {
      position: relative;
    }

    .s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-68830ab9-6ec3-4397-9ec8-6ac69188500b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-68830ab9-6ec3-4397-9ec8-6ac69188500b {
  margin: 0 !important;
  overflow: visible;
}

#s-68830ab9-6ec3-4397-9ec8-6ac69188500b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-68830ab9-6ec3-4397-9ec8-6ac69188500b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-68830ab9-6ec3-4397-9ec8-6ac69188500b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-68830ab9-6ec3-4397-9ec8-6ac69188500b img.shogun-image {
  /* Add background color handling */
  
}

#s-68830ab9-6ec3-4397-9ec8-6ac69188500b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-68830ab9-6ec3-4397-9ec8-6ac69188500b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-68830ab9-6ec3-4397-9ec8-6ac69188500b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-68830ab9-6ec3-4397-9ec8-6ac69188500b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-68830ab9-6ec3-4397-9ec8-6ac69188500b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-68830ab9-6ec3-4397-9ec8-6ac69188500b .shogun-image-content {
  
    justify-content: center;
  
}

.s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image {
  box-sizing: border-box;
}



.s-68830ab9-6ec3-4397-9ec8-6ac69188500b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-68830ab9-6ec3-4397-9ec8-6ac69188500b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image-container {
      position: relative;
    }

    .s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-68830ab9-6ec3-4397-9ec8-6ac69188500b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-68830ab9-6ec3-4397-9ec8-6ac69188500b {
  margin: 0 !important;
  overflow: visible;
}

#s-68830ab9-6ec3-4397-9ec8-6ac69188500b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-68830ab9-6ec3-4397-9ec8-6ac69188500b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-68830ab9-6ec3-4397-9ec8-6ac69188500b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-68830ab9-6ec3-4397-9ec8-6ac69188500b img.shogun-image {
  /* Add background color handling */
  
}

#s-68830ab9-6ec3-4397-9ec8-6ac69188500b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-68830ab9-6ec3-4397-9ec8-6ac69188500b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-68830ab9-6ec3-4397-9ec8-6ac69188500b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-68830ab9-6ec3-4397-9ec8-6ac69188500b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-68830ab9-6ec3-4397-9ec8-6ac69188500b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-68830ab9-6ec3-4397-9ec8-6ac69188500b .shogun-image-content {
  
    justify-content: center;
  
}

.s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image {
  box-sizing: border-box;
}



.s-68830ab9-6ec3-4397-9ec8-6ac69188500b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-68830ab9-6ec3-4397-9ec8-6ac69188500b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image-container {
      position: relative;
    }

    .s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-68830ab9-6ec3-4397-9ec8-6ac69188500b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (max-width: 767px){#s-68830ab9-6ec3-4397-9ec8-6ac69188500b {
  margin: 0 !important;
  overflow: visible;
}

#s-68830ab9-6ec3-4397-9ec8-6ac69188500b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-68830ab9-6ec3-4397-9ec8-6ac69188500b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-68830ab9-6ec3-4397-9ec8-6ac69188500b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-68830ab9-6ec3-4397-9ec8-6ac69188500b img.shogun-image {
  /* Add background color handling */
  
}

#s-68830ab9-6ec3-4397-9ec8-6ac69188500b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-68830ab9-6ec3-4397-9ec8-6ac69188500b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-68830ab9-6ec3-4397-9ec8-6ac69188500b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-68830ab9-6ec3-4397-9ec8-6ac69188500b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-68830ab9-6ec3-4397-9ec8-6ac69188500b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-68830ab9-6ec3-4397-9ec8-6ac69188500b .shogun-image-content {
  
    justify-content: center;
  
}

.s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image {
  box-sizing: border-box;
}



.s-68830ab9-6ec3-4397-9ec8-6ac69188500b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-68830ab9-6ec3-4397-9ec8-6ac69188500b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image-container {
      position: relative;
    }

    .s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-68830ab9-6ec3-4397-9ec8-6ac69188500b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-68830ab9-6ec3-4397-9ec8-6ac69188500b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}
#s-fe8af720-c0a6-46b1-a4e0-aade727be331 {
  max-width: 20%;
aspect-ratio: 2570/469;
text-align: center;
}

#s-fe8af720-c0a6-46b1-a4e0-aade727be331 {
  margin: 0 !important;
  overflow: visible;
}

#s-fe8af720-c0a6-46b1-a4e0-aade727be331-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-fe8af720-c0a6-46b1-a4e0-aade727be331 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-fe8af720-c0a6-46b1-a4e0-aade727be331 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-fe8af720-c0a6-46b1-a4e0-aade727be331 img.shogun-image {
  /* Add background color handling */
  
}

#s-fe8af720-c0a6-46b1-a4e0-aade727be331 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fe8af720-c0a6-46b1-a4e0-aade727be331 .shg-image-content-wrapper {
      aspect-ratio: 2570/469;
      min-width: 100%;
      height: auto;
    }

    #s-fe8af720-c0a6-46b1-a4e0-aade727be331 .shogun-image-link {
      aspect-ratio: 2570/469;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fe8af720-c0a6-46b1-a4e0-aade727be331 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fe8af720-c0a6-46b1-a4e0-aade727be331 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-fe8af720-c0a6-46b1-a4e0-aade727be331 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fe8af720-c0a6-46b1-a4e0-aade727be331.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image {
  box-sizing: border-box;
}



.s-fe8af720-c0a6-46b1-a4e0-aade727be331 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-fe8af720-c0a6-46b1-a4e0-aade727be331 {
      --shg-aspect-ratio: calc(2570/469); 
    }

    .s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image-container {
      position: relative;
    }

    .s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fe8af720-c0a6-46b1-a4e0-aade727be331 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

@media (min-width: 1200px){#s-fe8af720-c0a6-46b1-a4e0-aade727be331 {
  margin: 0 !important;
  overflow: visible;
}

#s-fe8af720-c0a6-46b1-a4e0-aade727be331-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-fe8af720-c0a6-46b1-a4e0-aade727be331 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-fe8af720-c0a6-46b1-a4e0-aade727be331 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-fe8af720-c0a6-46b1-a4e0-aade727be331 img.shogun-image {
  /* Add background color handling */
  
}

#s-fe8af720-c0a6-46b1-a4e0-aade727be331 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fe8af720-c0a6-46b1-a4e0-aade727be331 .shg-image-content-wrapper {
      aspect-ratio: 2570/469;
      min-width: 100%;
      height: auto;
    }

    #s-fe8af720-c0a6-46b1-a4e0-aade727be331 .shogun-image-link {
      aspect-ratio: 2570/469;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fe8af720-c0a6-46b1-a4e0-aade727be331 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fe8af720-c0a6-46b1-a4e0-aade727be331 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-fe8af720-c0a6-46b1-a4e0-aade727be331 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fe8af720-c0a6-46b1-a4e0-aade727be331.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image {
  box-sizing: border-box;
}



.s-fe8af720-c0a6-46b1-a4e0-aade727be331 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-fe8af720-c0a6-46b1-a4e0-aade727be331 {
      --shg-aspect-ratio: calc(2570/469); 
    }

    .s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image-container {
      position: relative;
    }

    .s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fe8af720-c0a6-46b1-a4e0-aade727be331 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-fe8af720-c0a6-46b1-a4e0-aade727be331 {
  margin: 0 !important;
  overflow: visible;
}

#s-fe8af720-c0a6-46b1-a4e0-aade727be331-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-fe8af720-c0a6-46b1-a4e0-aade727be331 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-fe8af720-c0a6-46b1-a4e0-aade727be331 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-fe8af720-c0a6-46b1-a4e0-aade727be331 img.shogun-image {
  /* Add background color handling */
  
}

#s-fe8af720-c0a6-46b1-a4e0-aade727be331 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fe8af720-c0a6-46b1-a4e0-aade727be331 .shg-image-content-wrapper {
      aspect-ratio: 2570/469;
      min-width: 100%;
      height: auto;
    }

    #s-fe8af720-c0a6-46b1-a4e0-aade727be331 .shogun-image-link {
      aspect-ratio: 2570/469;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fe8af720-c0a6-46b1-a4e0-aade727be331 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fe8af720-c0a6-46b1-a4e0-aade727be331 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-fe8af720-c0a6-46b1-a4e0-aade727be331 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fe8af720-c0a6-46b1-a4e0-aade727be331.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image {
  box-sizing: border-box;
}



.s-fe8af720-c0a6-46b1-a4e0-aade727be331 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-fe8af720-c0a6-46b1-a4e0-aade727be331 {
      --shg-aspect-ratio: calc(2570/469); 
    }

    .s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image-container {
      position: relative;
    }

    .s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fe8af720-c0a6-46b1-a4e0-aade727be331 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-fe8af720-c0a6-46b1-a4e0-aade727be331 {
  margin: 0 !important;
  overflow: visible;
}

#s-fe8af720-c0a6-46b1-a4e0-aade727be331-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-fe8af720-c0a6-46b1-a4e0-aade727be331 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-fe8af720-c0a6-46b1-a4e0-aade727be331 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-fe8af720-c0a6-46b1-a4e0-aade727be331 img.shogun-image {
  /* Add background color handling */
  
}

#s-fe8af720-c0a6-46b1-a4e0-aade727be331 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fe8af720-c0a6-46b1-a4e0-aade727be331 .shg-image-content-wrapper {
      aspect-ratio: 2570/469;
      min-width: 100%;
      height: auto;
    }

    #s-fe8af720-c0a6-46b1-a4e0-aade727be331 .shogun-image-link {
      aspect-ratio: 2570/469;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fe8af720-c0a6-46b1-a4e0-aade727be331 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fe8af720-c0a6-46b1-a4e0-aade727be331 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-fe8af720-c0a6-46b1-a4e0-aade727be331 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fe8af720-c0a6-46b1-a4e0-aade727be331.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image {
  box-sizing: border-box;
}



.s-fe8af720-c0a6-46b1-a4e0-aade727be331 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-fe8af720-c0a6-46b1-a4e0-aade727be331 {
      --shg-aspect-ratio: calc(2570/469); 
    }

    .s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image-container {
      position: relative;
    }

    .s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fe8af720-c0a6-46b1-a4e0-aade727be331 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (max-width: 767px){#s-fe8af720-c0a6-46b1-a4e0-aade727be331 {
  margin: 0 !important;
  overflow: visible;
}

#s-fe8af720-c0a6-46b1-a4e0-aade727be331-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-fe8af720-c0a6-46b1-a4e0-aade727be331 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-fe8af720-c0a6-46b1-a4e0-aade727be331 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-fe8af720-c0a6-46b1-a4e0-aade727be331 img.shogun-image {
  /* Add background color handling */
  
}

#s-fe8af720-c0a6-46b1-a4e0-aade727be331 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fe8af720-c0a6-46b1-a4e0-aade727be331 .shg-image-content-wrapper {
      aspect-ratio: 2570/469;
      min-width: 100%;
      height: auto;
    }

    #s-fe8af720-c0a6-46b1-a4e0-aade727be331 .shogun-image-link {
      aspect-ratio: 2570/469;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fe8af720-c0a6-46b1-a4e0-aade727be331 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fe8af720-c0a6-46b1-a4e0-aade727be331 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-fe8af720-c0a6-46b1-a4e0-aade727be331 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fe8af720-c0a6-46b1-a4e0-aade727be331.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image {
  box-sizing: border-box;
}



.s-fe8af720-c0a6-46b1-a4e0-aade727be331 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-fe8af720-c0a6-46b1-a4e0-aade727be331 {
      --shg-aspect-ratio: calc(2570/469); 
    }

    .s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image-container {
      position: relative;
    }

    .s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fe8af720-c0a6-46b1-a4e0-aade727be331.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fe8af720-c0a6-46b1-a4e0-aade727be331 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}
#s-0f161897-eaa2-4dec-8d70-1d9c8abc29ac {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0f161897-eaa2-4dec-8d70-1d9c8abc29ac .shogun-heading-component h2 {
  color: ;
  font-weight:  500 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.4em;
  
  
  
}



#s-6c4c2bd5-ed27-4282-8617-a195feb2a847 {
  min-height: 50px;
}








#s-6c4c2bd5-ed27-4282-8617-a195feb2a847 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6c4c2bd5-ed27-4282-8617-a195feb2a847.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 {
  margin-bottom: 3%;
max-width: 20%;
aspect-ratio: 1/1;
text-align: center;
}

#s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 {
  margin: 0 !important;
  overflow: visible;
}

#s-b24a0cc8-7aac-4b6a-8101-9000228e7e42-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  margin-bottom: 3%;
}

.shg-image-content-margin-container-s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 img.shogun-image {
  /* Add background color handling */
  
}

#s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image {
  box-sizing: border-box;
}



.s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image-container {
      position: relative;
    }

    .s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

@media (min-width: 1200px){#s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 {
  margin: 0 !important;
  overflow: visible;
}

#s-b24a0cc8-7aac-4b6a-8101-9000228e7e42-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 img.shogun-image {
  /* Add background color handling */
  
}

#s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image {
  box-sizing: border-box;
}



.s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image-container {
      position: relative;
    }

    .s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 {
  margin: 0 !important;
  overflow: visible;
}

#s-b24a0cc8-7aac-4b6a-8101-9000228e7e42-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 img.shogun-image {
  /* Add background color handling */
  
}

#s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image {
  box-sizing: border-box;
}



.s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image-container {
      position: relative;
    }

    .s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 {
  margin: 0 !important;
  overflow: visible;
}

#s-b24a0cc8-7aac-4b6a-8101-9000228e7e42-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 img.shogun-image {
  /* Add background color handling */
  
}

#s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image {
  box-sizing: border-box;
}



.s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image-container {
      position: relative;
    }

    .s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (max-width: 767px){#s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 {
  margin: 0 !important;
  overflow: visible;
}

#s-b24a0cc8-7aac-4b6a-8101-9000228e7e42-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 img.shogun-image {
  /* Add background color handling */
  
}

#s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image {
  box-sizing: border-box;
}



.s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image-container {
      position: relative;
    }

    .s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b24a0cc8-7aac-4b6a-8101-9000228e7e42.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b24a0cc8-7aac-4b6a-8101-9000228e7e42 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}
#s-d53318be-57dc-4623-8d08-389143ad5913 {
  max-width: 20%;
aspect-ratio: 2570/469;
text-align: center;
}

#s-d53318be-57dc-4623-8d08-389143ad5913 {
  margin: 0 !important;
  overflow: visible;
}

#s-d53318be-57dc-4623-8d08-389143ad5913-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d53318be-57dc-4623-8d08-389143ad5913 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d53318be-57dc-4623-8d08-389143ad5913 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d53318be-57dc-4623-8d08-389143ad5913 img.shogun-image {
  /* Add background color handling */
  
}

#s-d53318be-57dc-4623-8d08-389143ad5913 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-d53318be-57dc-4623-8d08-389143ad5913.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-d53318be-57dc-4623-8d08-389143ad5913 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d53318be-57dc-4623-8d08-389143ad5913.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d53318be-57dc-4623-8d08-389143ad5913.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d53318be-57dc-4623-8d08-389143ad5913.shogun-image {
  box-sizing: border-box;
}



.s-d53318be-57dc-4623-8d08-389143ad5913 img.shogun-image {
  
}


@media (min-width: 1200px){#s-d53318be-57dc-4623-8d08-389143ad5913 {
  margin: 0 !important;
  overflow: visible;
}

#s-d53318be-57dc-4623-8d08-389143ad5913-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d53318be-57dc-4623-8d08-389143ad5913 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d53318be-57dc-4623-8d08-389143ad5913 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d53318be-57dc-4623-8d08-389143ad5913 img.shogun-image {
  /* Add background color handling */
  
}

#s-d53318be-57dc-4623-8d08-389143ad5913 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-d53318be-57dc-4623-8d08-389143ad5913.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-d53318be-57dc-4623-8d08-389143ad5913 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d53318be-57dc-4623-8d08-389143ad5913.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d53318be-57dc-4623-8d08-389143ad5913.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d53318be-57dc-4623-8d08-389143ad5913.shogun-image {
  box-sizing: border-box;
}



.s-d53318be-57dc-4623-8d08-389143ad5913 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-d53318be-57dc-4623-8d08-389143ad5913 {
  margin: 0 !important;
  overflow: visible;
}

#s-d53318be-57dc-4623-8d08-389143ad5913-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d53318be-57dc-4623-8d08-389143ad5913 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d53318be-57dc-4623-8d08-389143ad5913 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d53318be-57dc-4623-8d08-389143ad5913 img.shogun-image {
  /* Add background color handling */
  
}

#s-d53318be-57dc-4623-8d08-389143ad5913 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-d53318be-57dc-4623-8d08-389143ad5913.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-d53318be-57dc-4623-8d08-389143ad5913 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d53318be-57dc-4623-8d08-389143ad5913.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d53318be-57dc-4623-8d08-389143ad5913.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d53318be-57dc-4623-8d08-389143ad5913.shogun-image {
  box-sizing: border-box;
}



.s-d53318be-57dc-4623-8d08-389143ad5913 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-d53318be-57dc-4623-8d08-389143ad5913 {
  margin: 0 !important;
  overflow: visible;
}

#s-d53318be-57dc-4623-8d08-389143ad5913-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d53318be-57dc-4623-8d08-389143ad5913 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d53318be-57dc-4623-8d08-389143ad5913 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d53318be-57dc-4623-8d08-389143ad5913 img.shogun-image {
  /* Add background color handling */
  
}

#s-d53318be-57dc-4623-8d08-389143ad5913 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-d53318be-57dc-4623-8d08-389143ad5913.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-d53318be-57dc-4623-8d08-389143ad5913 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d53318be-57dc-4623-8d08-389143ad5913.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d53318be-57dc-4623-8d08-389143ad5913.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d53318be-57dc-4623-8d08-389143ad5913.shogun-image {
  box-sizing: border-box;
}



.s-d53318be-57dc-4623-8d08-389143ad5913 img.shogun-image {
  
}


}@media (max-width: 767px){#s-d53318be-57dc-4623-8d08-389143ad5913 {
  margin: 0 !important;
  overflow: visible;
}

#s-d53318be-57dc-4623-8d08-389143ad5913-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d53318be-57dc-4623-8d08-389143ad5913 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d53318be-57dc-4623-8d08-389143ad5913 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d53318be-57dc-4623-8d08-389143ad5913 img.shogun-image {
  /* Add background color handling */
  
}

#s-d53318be-57dc-4623-8d08-389143ad5913 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-d53318be-57dc-4623-8d08-389143ad5913.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-d53318be-57dc-4623-8d08-389143ad5913 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d53318be-57dc-4623-8d08-389143ad5913.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d53318be-57dc-4623-8d08-389143ad5913.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d53318be-57dc-4623-8d08-389143ad5913.shogun-image {
  box-sizing: border-box;
}



.s-d53318be-57dc-4623-8d08-389143ad5913 img.shogun-image {
  
}


}
#s-1c6652cc-2a0f-466e-9f17-5239cda26372 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1c6652cc-2a0f-466e-9f17-5239cda26372 .shogun-heading-component h2 {
  color: ;
  font-weight:  500 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.4em;
  
  
  
}



#s-e6b6e0ec-15f5-40cb-a082-74a99ad11232 {
  min-height: 50px;
}








#s-e6b6e0ec-15f5-40cb-a082-74a99ad11232 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e6b6e0ec-15f5-40cb-a082-74a99ad11232.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 {
  margin-bottom: 3%;
max-width: 20%;
aspect-ratio: 1/1;
text-align: center;
}

#s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 {
  margin: 0 !important;
  overflow: visible;
}

#s-04689027-c4de-4ace-aef5-bbd17f3e4ab9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  margin-bottom: 3%;
}

.shg-image-content-margin-container-s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 img.shogun-image {
  /* Add background color handling */
  
}

#s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image {
  box-sizing: border-box;
}



.s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image-container {
      position: relative;
    }

    .s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

@media (min-width: 1200px){#s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 {
  margin: 0 !important;
  overflow: visible;
}

#s-04689027-c4de-4ace-aef5-bbd17f3e4ab9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 img.shogun-image {
  /* Add background color handling */
  
}

#s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image {
  box-sizing: border-box;
}



.s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image-container {
      position: relative;
    }

    .s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 {
  margin: 0 !important;
  overflow: visible;
}

#s-04689027-c4de-4ace-aef5-bbd17f3e4ab9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 img.shogun-image {
  /* Add background color handling */
  
}

#s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image {
  box-sizing: border-box;
}



.s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image-container {
      position: relative;
    }

    .s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 {
  margin: 0 !important;
  overflow: visible;
}

#s-04689027-c4de-4ace-aef5-bbd17f3e4ab9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 img.shogun-image {
  /* Add background color handling */
  
}

#s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image {
  box-sizing: border-box;
}



.s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image-container {
      position: relative;
    }

    .s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (max-width: 767px){#s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 {
  margin: 0 !important;
  overflow: visible;
}

#s-04689027-c4de-4ace-aef5-bbd17f3e4ab9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 img.shogun-image {
  /* Add background color handling */
  
}

#s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image {
  box-sizing: border-box;
}



.s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image-container {
      position: relative;
    }

    .s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-04689027-c4de-4ace-aef5-bbd17f3e4ab9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-04689027-c4de-4ace-aef5-bbd17f3e4ab9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}
#s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 {
  max-width: 20%;
aspect-ratio: 2570/470;
text-align: center;
}

#s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 {
  margin: 0 !important;
  overflow: visible;
}

#s-65ccb28f-e1ec-4f81-8413-9d21b81a5073-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 img.shogun-image {
  /* Add background color handling */
  
}

#s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-65ccb28f-e1ec-4f81-8413-9d21b81a5073.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 .shogun-image-content {
  
    justify-content: center;
  
}

.s-65ccb28f-e1ec-4f81-8413-9d21b81a5073.shg-align-container {
  display: flex;
  justify-content: center
}

.s-65ccb28f-e1ec-4f81-8413-9d21b81a5073.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-65ccb28f-e1ec-4f81-8413-9d21b81a5073.shogun-image {
  box-sizing: border-box;
}



.s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 img.shogun-image {
  
}


@media (min-width: 1200px){#s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 {
  margin: 0 !important;
  overflow: visible;
}

#s-65ccb28f-e1ec-4f81-8413-9d21b81a5073-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 img.shogun-image {
  /* Add background color handling */
  
}

#s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-65ccb28f-e1ec-4f81-8413-9d21b81a5073.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 .shogun-image-content {
  
    justify-content: center;
  
}

.s-65ccb28f-e1ec-4f81-8413-9d21b81a5073.shg-align-container {
  display: flex;
  justify-content: center
}

.s-65ccb28f-e1ec-4f81-8413-9d21b81a5073.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-65ccb28f-e1ec-4f81-8413-9d21b81a5073.shogun-image {
  box-sizing: border-box;
}



.s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 {
  margin: 0 !important;
  overflow: visible;
}

#s-65ccb28f-e1ec-4f81-8413-9d21b81a5073-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 img.shogun-image {
  /* Add background color handling */
  
}

#s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-65ccb28f-e1ec-4f81-8413-9d21b81a5073.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 .shogun-image-content {
  
    justify-content: center;
  
}

.s-65ccb28f-e1ec-4f81-8413-9d21b81a5073.shg-align-container {
  display: flex;
  justify-content: center
}

.s-65ccb28f-e1ec-4f81-8413-9d21b81a5073.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-65ccb28f-e1ec-4f81-8413-9d21b81a5073.shogun-image {
  box-sizing: border-box;
}



.s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 {
  margin: 0 !important;
  overflow: visible;
}

#s-65ccb28f-e1ec-4f81-8413-9d21b81a5073-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 img.shogun-image {
  /* Add background color handling */
  
}

#s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-65ccb28f-e1ec-4f81-8413-9d21b81a5073.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 .shogun-image-content {
  
    justify-content: center;
  
}

.s-65ccb28f-e1ec-4f81-8413-9d21b81a5073.shg-align-container {
  display: flex;
  justify-content: center
}

.s-65ccb28f-e1ec-4f81-8413-9d21b81a5073.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-65ccb28f-e1ec-4f81-8413-9d21b81a5073.shogun-image {
  box-sizing: border-box;
}



.s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 img.shogun-image {
  
}


}@media (max-width: 767px){#s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 {
  margin: 0 !important;
  overflow: visible;
}

#s-65ccb28f-e1ec-4f81-8413-9d21b81a5073-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 img.shogun-image {
  /* Add background color handling */
  
}

#s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-65ccb28f-e1ec-4f81-8413-9d21b81a5073.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 .shogun-image-content {
  
    justify-content: center;
  
}

.s-65ccb28f-e1ec-4f81-8413-9d21b81a5073.shg-align-container {
  display: flex;
  justify-content: center
}

.s-65ccb28f-e1ec-4f81-8413-9d21b81a5073.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-65ccb28f-e1ec-4f81-8413-9d21b81a5073.shogun-image {
  box-sizing: border-box;
}



.s-65ccb28f-e1ec-4f81-8413-9d21b81a5073 img.shogun-image {
  
}


}
#s-9eecba41-bee7-400f-bd3b-183558fc2a73 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9eecba41-bee7-400f-bd3b-183558fc2a73 .shogun-heading-component h2 {
  color: ;
  font-weight:  500 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.4em;
  
  
  
}



#s-9e43dae1-5b45-4f5f-9a42-61cf1c3a41ad {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: right bottom;
}
@media (min-width: 1200px){#s-9e43dae1-5b45-4f5f-9a42-61cf1c3a41ad {
  min-height: 90px;
}
}
#s-9e43dae1-5b45-4f5f-9a42-61cf1c3a41ad {
  background-image: url(https://i.shgcdn.com/fd75c1ee-f604-4ecf-ab3b-ae1c83786f2e/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}

@media (max-width: 480px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-9e43dae1-5b45-4f5f-9a42-61cf1c3a41ad {
  background-image: url(https://i.shgcdn.com/fd75c1ee-f604-4ecf-ab3b-ae1c83786f2e/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/480x/);
}
#s-9e43dae1-5b45-4f5f-9a42-61cf1c3a41ad.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-9e43dae1-5b45-4f5f-9a42-61cf1c3a41ad {
  background-image: url(https://i.shgcdn.com/fd75c1ee-f604-4ecf-ab3b-ae1c83786f2e/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/960x/);
}
#s-9e43dae1-5b45-4f5f-9a42-61cf1c3a41ad.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-9e43dae1-5b45-4f5f-9a42-61cf1c3a41ad {
  background-image: url(https://i.shgcdn.com/fd75c1ee-f604-4ecf-ab3b-ae1c83786f2e/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/768x/);
}
#s-9e43dae1-5b45-4f5f-9a42-61cf1c3a41ad.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-9e43dae1-5b45-4f5f-9a42-61cf1c3a41ad {
  background-image: url(https://i.shgcdn.com/fd75c1ee-f604-4ecf-ab3b-ae1c83786f2e/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1536x/);
}
#s-9e43dae1-5b45-4f5f-9a42-61cf1c3a41ad.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-9e43dae1-5b45-4f5f-9a42-61cf1c3a41ad {
  background-image: url(https://i.shgcdn.com/fd75c1ee-f604-4ecf-ab3b-ae1c83786f2e/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1024x/);
}
#s-9e43dae1-5b45-4f5f-9a42-61cf1c3a41ad.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-9e43dae1-5b45-4f5f-9a42-61cf1c3a41ad {
  background-image: url(https://i.shgcdn.com/fd75c1ee-f604-4ecf-ab3b-ae1c83786f2e/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}
#s-9e43dae1-5b45-4f5f-9a42-61cf1c3a41ad.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-9e43dae1-5b45-4f5f-9a42-61cf1c3a41ad {
  background-image: url(https://i.shgcdn.com/fd75c1ee-f604-4ecf-ab3b-ae1c83786f2e/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1200x/);
}
#s-9e43dae1-5b45-4f5f-9a42-61cf1c3a41ad.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-9e43dae1-5b45-4f5f-9a42-61cf1c3a41ad {
  background-image: url(https://i.shgcdn.com/fd75c1ee-f604-4ecf-ab3b-ae1c83786f2e/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}
#s-9e43dae1-5b45-4f5f-9a42-61cf1c3a41ad.shogun-lazyload-bg-image {
  background-image: none;
}

}







#s-9e43dae1-5b45-4f5f-9a42-61cf1c3a41ad > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9e43dae1-5b45-4f5f-9a42-61cf1c3a41ad.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bc1b9a20-1f19-47ea-af90-8ae6bc237fa5 {
  background-size: cover;
margin-top: auto;
margin-bottom: auto;
padding-top: 6%;
padding-bottom: 6%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
background-position: right center;
}
@media (min-width: 1200px){#s-bc1b9a20-1f19-47ea-af90-8ae6bc237fa5 {
  padding-top: 5%;
padding-bottom: 5%;
display: none;
}
#s-bc1b9a20-1f19-47ea-af90-8ae6bc237fa5, #wrap-s-bc1b9a20-1f19-47ea-af90-8ae6bc237fa5, #wrap-content-s-bc1b9a20-1f19-47ea-af90-8ae6bc237fa5 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-bc1b9a20-1f19-47ea-af90-8ae6bc237fa5 {
  display: none;
}
#s-bc1b9a20-1f19-47ea-af90-8ae6bc237fa5, #wrap-s-bc1b9a20-1f19-47ea-af90-8ae6bc237fa5, #wrap-content-s-bc1b9a20-1f19-47ea-af90-8ae6bc237fa5 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-bc1b9a20-1f19-47ea-af90-8ae6bc237fa5 {
  display: none;
}
#s-bc1b9a20-1f19-47ea-af90-8ae6bc237fa5, #wrap-s-bc1b9a20-1f19-47ea-af90-8ae6bc237fa5, #wrap-content-s-bc1b9a20-1f19-47ea-af90-8ae6bc237fa5 { display: none !important; }}@media (max-width: 767px){#s-bc1b9a20-1f19-47ea-af90-8ae6bc237fa5 {
  display: none;
}
#s-bc1b9a20-1f19-47ea-af90-8ae6bc237fa5, #wrap-s-bc1b9a20-1f19-47ea-af90-8ae6bc237fa5, #wrap-content-s-bc1b9a20-1f19-47ea-af90-8ae6bc237fa5 { display: none !important; }}







#s-bc1b9a20-1f19-47ea-af90-8ae6bc237fa5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bc1b9a20-1f19-47ea-af90-8ae6bc237fa5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6d4472aa-e9f6-4f74-9a35-56b1143e46bf {
  margin-left: auto;
margin-right: auto;
max-width: 80%;
}

@media (min-width: 0px) {
[id="s-6d4472aa-e9f6-4f74-9a35-56b1143e46bf"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6d4472aa-e9f6-4f74-9a35-56b1143e46bf"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6d4472aa-e9f6-4f74-9a35-56b1143e46bf"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6d4472aa-e9f6-4f74-9a35-56b1143e46bf"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-b5ec2de4-9ecf-46d3-8115-8a9b611b2347"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b5ec2de4-9ecf-46d3-8115-8a9b611b2347"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-b5ec2de4-9ecf-46d3-8115-8a9b611b2347"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-b5ec2de4-9ecf-46d3-8115-8a9b611b2347"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-354dc857-a41a-444b-a5f8-832efca9f2b0 {
  margin-left: auto;
margin-right: auto;
padding-left: 0%;
padding-right: 0%;
min-height: 35em;
background-color: rgba(255, 255, 255, 0);
}
@media (min-width: 1200px){#s-354dc857-a41a-444b-a5f8-832efca9f2b0 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-354dc857-a41a-444b-a5f8-832efca9f2b0 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-354dc857-a41a-444b-a5f8-832efca9f2b0 {
  display: none;
}
#s-354dc857-a41a-444b-a5f8-832efca9f2b0, #wrap-s-354dc857-a41a-444b-a5f8-832efca9f2b0, #wrap-content-s-354dc857-a41a-444b-a5f8-832efca9f2b0 { display: none !important; }}@media (max-width: 767px){#s-354dc857-a41a-444b-a5f8-832efca9f2b0 {
  display: none;
}
#s-354dc857-a41a-444b-a5f8-832efca9f2b0, #wrap-s-354dc857-a41a-444b-a5f8-832efca9f2b0, #wrap-content-s-354dc857-a41a-444b-a5f8-832efca9f2b0 { display: none !important; }}







#s-354dc857-a41a-444b-a5f8-832efca9f2b0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-354dc857-a41a-444b-a5f8-832efca9f2b0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-245d5b73-ef25-45a7-9296-2aab61c63c10 {
  margin-left: auto;
margin-right: auto;
max-width: 90%;
}

@media (min-width: 0px) {
[id="s-245d5b73-ef25-45a7-9296-2aab61c63c10"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-245d5b73-ef25-45a7-9296-2aab61c63c10"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-245d5b73-ef25-45a7-9296-2aab61c63c10"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-245d5b73-ef25-45a7-9296-2aab61c63c10"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

#s-07fe034b-7ed3-42d0-bbf6-d87f45beecdd {
  min-height: 0px;
}








#s-07fe034b-7ed3-42d0-bbf6-d87f45beecdd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-07fe034b-7ed3-42d0-bbf6-d87f45beecdd.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 {
  max-width: 420px;
aspect-ratio: 420/537;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 {
  max-width: 80%;
}
}
#s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 {
  margin: 0 !important;
  overflow: visible;
}

#s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 img.shogun-image {
  /* Add background color handling */
  
}

#s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 420px;
  }



  img.s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image {
    
    
    
    max-height: 420px;
  }


.s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image {
  box-sizing: border-box;
}



.s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image-container {
      position: relative;
    }

    .s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 420px;
    }
  }

@media (min-width: 1200px){#s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 {
  margin: 0 !important;
  overflow: visible;
}

#s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 img.shogun-image {
  /* Add background color handling */
  
}

#s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 420px;
  }



  img.s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image {
    
    
    
    max-height: 420px;
  }


.s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image {
  box-sizing: border-box;
}



.s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image-container {
      position: relative;
    }

    .s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 420px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 {
  margin: 0 !important;
  overflow: visible;
}

#s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 img.shogun-image {
  /* Add background color handling */
  
}

#s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 420px;
  }



  img.s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image {
    
    
    
    max-height: 420px;
  }


.s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image {
  box-sizing: border-box;
}



.s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image-container {
      position: relative;
    }

    .s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 420px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 {
  margin: 0 !important;
  overflow: visible;
}

#s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 img.shogun-image {
  /* Add background color handling */
  
}

#s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 420px;
  }



  img.s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image {
    
    
    
    max-height: 420px;
  }


.s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image {
  box-sizing: border-box;
}



.s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image-container {
      position: relative;
    }

    .s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 420px;
    }
  }

}@media (max-width: 767px){#s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 {
  margin: 0 !important;
  overflow: visible;
}

#s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 img.shogun-image {
  /* Add background color handling */
  
}

#s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 420px;
  }



  img.s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image {
    
    
    
    max-height: 420px;
  }


.s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image {
  box-sizing: border-box;
}



.s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image-container {
      position: relative;
    }

    .s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f74c9c74-91f7-4b25-8e2b-8e6109dfc041 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 420px;
    }
  }

}
#s-c65aaf81-ff19-42db-8217-5cef7fb3187f {
  text-align: center;
}

#s-c65aaf81-ff19-42db-8217-5cef7fb3187f .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.5em;
  
  
  text-align: center;
}



#s-fd643307-2eb3-4b68-b84b-2b7594a32588 {
  margin-bottom: 4%;
}

#s-b87dd86f-bba5-44e9-8b65-6abd73a7427c {
  min-height: 0px;
}








#s-b87dd86f-bba5-44e9-8b65-6abd73a7427c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b87dd86f-bba5-44e9-8b65-6abd73a7427c.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-6d31bb6a-a326-4b6a-9915-e015859a70b6 {
  max-width: 420px;
aspect-ratio: 420/537;
text-align: center;
}
@media (min-width: 1200px){#s-6d31bb6a-a326-4b6a-9915-e015859a70b6 {
  max-width: 70%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-6d31bb6a-a326-4b6a-9915-e015859a70b6 {
  max-width: 80%;
}
}
#s-6d31bb6a-a326-4b6a-9915-e015859a70b6 {
  margin: 0 !important;
  overflow: visible;
}

#s-6d31bb6a-a326-4b6a-9915-e015859a70b6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6d31bb6a-a326-4b6a-9915-e015859a70b6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6d31bb6a-a326-4b6a-9915-e015859a70b6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6d31bb6a-a326-4b6a-9915-e015859a70b6 img.shogun-image {
  /* Add background color handling */
  
}

#s-6d31bb6a-a326-4b6a-9915-e015859a70b6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6d31bb6a-a326-4b6a-9915-e015859a70b6 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-6d31bb6a-a326-4b6a-9915-e015859a70b6 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6d31bb6a-a326-4b6a-9915-e015859a70b6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6d31bb6a-a326-4b6a-9915-e015859a70b6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 420px;
  }



  img.s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image {
    
    
    
    max-height: 420px;
  }


.s-6d31bb6a-a326-4b6a-9915-e015859a70b6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image {
  box-sizing: border-box;
}



.s-6d31bb6a-a326-4b6a-9915-e015859a70b6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6d31bb6a-a326-4b6a-9915-e015859a70b6 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image-container {
      position: relative;
    }

    .s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6d31bb6a-a326-4b6a-9915-e015859a70b6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 420px;
    }
  }

@media (min-width: 1200px){#s-6d31bb6a-a326-4b6a-9915-e015859a70b6 {
  margin: 0 !important;
  overflow: visible;
}

#s-6d31bb6a-a326-4b6a-9915-e015859a70b6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6d31bb6a-a326-4b6a-9915-e015859a70b6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6d31bb6a-a326-4b6a-9915-e015859a70b6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6d31bb6a-a326-4b6a-9915-e015859a70b6 img.shogun-image {
  /* Add background color handling */
  
}

#s-6d31bb6a-a326-4b6a-9915-e015859a70b6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6d31bb6a-a326-4b6a-9915-e015859a70b6 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-6d31bb6a-a326-4b6a-9915-e015859a70b6 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6d31bb6a-a326-4b6a-9915-e015859a70b6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6d31bb6a-a326-4b6a-9915-e015859a70b6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 420px;
  }



  img.s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image {
    
    
    
    max-height: 420px;
  }


.s-6d31bb6a-a326-4b6a-9915-e015859a70b6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image {
  box-sizing: border-box;
}



.s-6d31bb6a-a326-4b6a-9915-e015859a70b6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6d31bb6a-a326-4b6a-9915-e015859a70b6 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image-container {
      position: relative;
    }

    .s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6d31bb6a-a326-4b6a-9915-e015859a70b6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 420px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-6d31bb6a-a326-4b6a-9915-e015859a70b6 {
  margin: 0 !important;
  overflow: visible;
}

#s-6d31bb6a-a326-4b6a-9915-e015859a70b6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6d31bb6a-a326-4b6a-9915-e015859a70b6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6d31bb6a-a326-4b6a-9915-e015859a70b6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6d31bb6a-a326-4b6a-9915-e015859a70b6 img.shogun-image {
  /* Add background color handling */
  
}

#s-6d31bb6a-a326-4b6a-9915-e015859a70b6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6d31bb6a-a326-4b6a-9915-e015859a70b6 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-6d31bb6a-a326-4b6a-9915-e015859a70b6 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6d31bb6a-a326-4b6a-9915-e015859a70b6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6d31bb6a-a326-4b6a-9915-e015859a70b6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 420px;
  }



  img.s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image {
    
    
    
    max-height: 420px;
  }


.s-6d31bb6a-a326-4b6a-9915-e015859a70b6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image {
  box-sizing: border-box;
}



.s-6d31bb6a-a326-4b6a-9915-e015859a70b6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6d31bb6a-a326-4b6a-9915-e015859a70b6 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image-container {
      position: relative;
    }

    .s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6d31bb6a-a326-4b6a-9915-e015859a70b6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 420px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-6d31bb6a-a326-4b6a-9915-e015859a70b6 {
  margin: 0 !important;
  overflow: visible;
}

#s-6d31bb6a-a326-4b6a-9915-e015859a70b6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6d31bb6a-a326-4b6a-9915-e015859a70b6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6d31bb6a-a326-4b6a-9915-e015859a70b6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6d31bb6a-a326-4b6a-9915-e015859a70b6 img.shogun-image {
  /* Add background color handling */
  
}

#s-6d31bb6a-a326-4b6a-9915-e015859a70b6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6d31bb6a-a326-4b6a-9915-e015859a70b6 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-6d31bb6a-a326-4b6a-9915-e015859a70b6 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6d31bb6a-a326-4b6a-9915-e015859a70b6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6d31bb6a-a326-4b6a-9915-e015859a70b6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 420px;
  }



  img.s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image {
    
    
    
    max-height: 420px;
  }


.s-6d31bb6a-a326-4b6a-9915-e015859a70b6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image {
  box-sizing: border-box;
}



.s-6d31bb6a-a326-4b6a-9915-e015859a70b6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6d31bb6a-a326-4b6a-9915-e015859a70b6 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image-container {
      position: relative;
    }

    .s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6d31bb6a-a326-4b6a-9915-e015859a70b6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 420px;
    }
  }

}@media (max-width: 767px){#s-6d31bb6a-a326-4b6a-9915-e015859a70b6 {
  margin: 0 !important;
  overflow: visible;
}

#s-6d31bb6a-a326-4b6a-9915-e015859a70b6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6d31bb6a-a326-4b6a-9915-e015859a70b6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6d31bb6a-a326-4b6a-9915-e015859a70b6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6d31bb6a-a326-4b6a-9915-e015859a70b6 img.shogun-image {
  /* Add background color handling */
  
}

#s-6d31bb6a-a326-4b6a-9915-e015859a70b6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6d31bb6a-a326-4b6a-9915-e015859a70b6 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-6d31bb6a-a326-4b6a-9915-e015859a70b6 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6d31bb6a-a326-4b6a-9915-e015859a70b6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6d31bb6a-a326-4b6a-9915-e015859a70b6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 420px;
  }



  img.s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image {
    
    
    
    max-height: 420px;
  }


.s-6d31bb6a-a326-4b6a-9915-e015859a70b6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image {
  box-sizing: border-box;
}



.s-6d31bb6a-a326-4b6a-9915-e015859a70b6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6d31bb6a-a326-4b6a-9915-e015859a70b6 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image-container {
      position: relative;
    }

    .s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6d31bb6a-a326-4b6a-9915-e015859a70b6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6d31bb6a-a326-4b6a-9915-e015859a70b6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 420px;
    }
  }

}
#s-2eea2e16-8e66-40c8-902c-ba3e888e1af8 {
  text-align: center;
}

#s-2eea2e16-8e66-40c8-902c-ba3e888e1af8 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.5em;
  
  
  text-align: center;
}



#s-6e16109e-732c-4131-bc56-ef76312f49bf {
  margin-bottom: 4%;
padding-left: 0px;
padding-right: 0px;
}








#s-1760b3bd-e63c-47b3-be5e-cd149f9abb96 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1760b3bd-e63c-47b3-be5e-cd149f9abb96.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-2f43dd1c-8948-42c9-945a-4884907b4d6a {
  max-width: 210px;
aspect-ratio: 210/269;
text-align: center;
}
@media (min-width: 1200px){#s-2f43dd1c-8948-42c9-945a-4884907b4d6a {
  max-width: 70%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2f43dd1c-8948-42c9-945a-4884907b4d6a {
  max-width: 80%;
}
}
#s-2f43dd1c-8948-42c9-945a-4884907b4d6a {
  margin: 0 !important;
  overflow: visible;
}

#s-2f43dd1c-8948-42c9-945a-4884907b4d6a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2f43dd1c-8948-42c9-945a-4884907b4d6a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2f43dd1c-8948-42c9-945a-4884907b4d6a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2f43dd1c-8948-42c9-945a-4884907b4d6a img.shogun-image {
  /* Add background color handling */
  
}

#s-2f43dd1c-8948-42c9-945a-4884907b4d6a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2f43dd1c-8948-42c9-945a-4884907b4d6a .shg-image-content-wrapper {
      aspect-ratio: 210/269;
      min-width: 100%;
      height: auto;
    }

    #s-2f43dd1c-8948-42c9-945a-4884907b4d6a .shogun-image-link {
      aspect-ratio: 210/269;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2f43dd1c-8948-42c9-945a-4884907b4d6a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2f43dd1c-8948-42c9-945a-4884907b4d6a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 210px;
  }



  img.s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image {
    
    
    
    max-height: 210px;
  }


.s-2f43dd1c-8948-42c9-945a-4884907b4d6a .shogun-image-content {
  
    justify-content: center;
  
}

.s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image {
  box-sizing: border-box;
}



.s-2f43dd1c-8948-42c9-945a-4884907b4d6a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2f43dd1c-8948-42c9-945a-4884907b4d6a {
      --shg-aspect-ratio: calc(210/269); 
    }

    .s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image-container {
      position: relative;
    }

    .s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2f43dd1c-8948-42c9-945a-4884907b4d6a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 210px;
    }
  }

@media (min-width: 1200px){#s-2f43dd1c-8948-42c9-945a-4884907b4d6a {
  margin: 0 !important;
  overflow: visible;
}

#s-2f43dd1c-8948-42c9-945a-4884907b4d6a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2f43dd1c-8948-42c9-945a-4884907b4d6a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2f43dd1c-8948-42c9-945a-4884907b4d6a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2f43dd1c-8948-42c9-945a-4884907b4d6a img.shogun-image {
  /* Add background color handling */
  
}

#s-2f43dd1c-8948-42c9-945a-4884907b4d6a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2f43dd1c-8948-42c9-945a-4884907b4d6a .shg-image-content-wrapper {
      aspect-ratio: 210/269;
      min-width: 100%;
      height: auto;
    }

    #s-2f43dd1c-8948-42c9-945a-4884907b4d6a .shogun-image-link {
      aspect-ratio: 210/269;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2f43dd1c-8948-42c9-945a-4884907b4d6a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2f43dd1c-8948-42c9-945a-4884907b4d6a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 210px;
  }



  img.s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image {
    
    
    
    max-height: 210px;
  }


.s-2f43dd1c-8948-42c9-945a-4884907b4d6a .shogun-image-content {
  
    justify-content: center;
  
}

.s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image {
  box-sizing: border-box;
}



.s-2f43dd1c-8948-42c9-945a-4884907b4d6a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2f43dd1c-8948-42c9-945a-4884907b4d6a {
      --shg-aspect-ratio: calc(210/269); 
    }

    .s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image-container {
      position: relative;
    }

    .s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2f43dd1c-8948-42c9-945a-4884907b4d6a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 210px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-2f43dd1c-8948-42c9-945a-4884907b4d6a {
  margin: 0 !important;
  overflow: visible;
}

#s-2f43dd1c-8948-42c9-945a-4884907b4d6a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2f43dd1c-8948-42c9-945a-4884907b4d6a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2f43dd1c-8948-42c9-945a-4884907b4d6a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2f43dd1c-8948-42c9-945a-4884907b4d6a img.shogun-image {
  /* Add background color handling */
  
}

#s-2f43dd1c-8948-42c9-945a-4884907b4d6a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2f43dd1c-8948-42c9-945a-4884907b4d6a .shg-image-content-wrapper {
      aspect-ratio: 210/269;
      min-width: 100%;
      height: auto;
    }

    #s-2f43dd1c-8948-42c9-945a-4884907b4d6a .shogun-image-link {
      aspect-ratio: 210/269;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2f43dd1c-8948-42c9-945a-4884907b4d6a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2f43dd1c-8948-42c9-945a-4884907b4d6a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 210px;
  }



  img.s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image {
    
    
    
    max-height: 210px;
  }


.s-2f43dd1c-8948-42c9-945a-4884907b4d6a .shogun-image-content {
  
    justify-content: center;
  
}

.s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image {
  box-sizing: border-box;
}



.s-2f43dd1c-8948-42c9-945a-4884907b4d6a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2f43dd1c-8948-42c9-945a-4884907b4d6a {
      --shg-aspect-ratio: calc(210/269); 
    }

    .s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image-container {
      position: relative;
    }

    .s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2f43dd1c-8948-42c9-945a-4884907b4d6a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 210px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-2f43dd1c-8948-42c9-945a-4884907b4d6a {
  margin: 0 !important;
  overflow: visible;
}

#s-2f43dd1c-8948-42c9-945a-4884907b4d6a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2f43dd1c-8948-42c9-945a-4884907b4d6a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2f43dd1c-8948-42c9-945a-4884907b4d6a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2f43dd1c-8948-42c9-945a-4884907b4d6a img.shogun-image {
  /* Add background color handling */
  
}

#s-2f43dd1c-8948-42c9-945a-4884907b4d6a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2f43dd1c-8948-42c9-945a-4884907b4d6a .shg-image-content-wrapper {
      aspect-ratio: 210/269;
      min-width: 100%;
      height: auto;
    }

    #s-2f43dd1c-8948-42c9-945a-4884907b4d6a .shogun-image-link {
      aspect-ratio: 210/269;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2f43dd1c-8948-42c9-945a-4884907b4d6a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2f43dd1c-8948-42c9-945a-4884907b4d6a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 210px;
  }



  img.s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image {
    
    
    
    max-height: 210px;
  }


.s-2f43dd1c-8948-42c9-945a-4884907b4d6a .shogun-image-content {
  
    justify-content: center;
  
}

.s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image {
  box-sizing: border-box;
}



.s-2f43dd1c-8948-42c9-945a-4884907b4d6a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2f43dd1c-8948-42c9-945a-4884907b4d6a {
      --shg-aspect-ratio: calc(210/269); 
    }

    .s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image-container {
      position: relative;
    }

    .s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2f43dd1c-8948-42c9-945a-4884907b4d6a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 210px;
    }
  }

}@media (max-width: 767px){#s-2f43dd1c-8948-42c9-945a-4884907b4d6a {
  margin: 0 !important;
  overflow: visible;
}

#s-2f43dd1c-8948-42c9-945a-4884907b4d6a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2f43dd1c-8948-42c9-945a-4884907b4d6a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2f43dd1c-8948-42c9-945a-4884907b4d6a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2f43dd1c-8948-42c9-945a-4884907b4d6a img.shogun-image {
  /* Add background color handling */
  
}

#s-2f43dd1c-8948-42c9-945a-4884907b4d6a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2f43dd1c-8948-42c9-945a-4884907b4d6a .shg-image-content-wrapper {
      aspect-ratio: 210/269;
      min-width: 100%;
      height: auto;
    }

    #s-2f43dd1c-8948-42c9-945a-4884907b4d6a .shogun-image-link {
      aspect-ratio: 210/269;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2f43dd1c-8948-42c9-945a-4884907b4d6a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2f43dd1c-8948-42c9-945a-4884907b4d6a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 210px;
  }



  img.s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image {
    
    
    
    max-height: 210px;
  }


.s-2f43dd1c-8948-42c9-945a-4884907b4d6a .shogun-image-content {
  
    justify-content: center;
  
}

.s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image {
  box-sizing: border-box;
}



.s-2f43dd1c-8948-42c9-945a-4884907b4d6a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2f43dd1c-8948-42c9-945a-4884907b4d6a {
      --shg-aspect-ratio: calc(210/269); 
    }

    .s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image-container {
      position: relative;
    }

    .s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2f43dd1c-8948-42c9-945a-4884907b4d6a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2f43dd1c-8948-42c9-945a-4884907b4d6a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 210px;
    }
  }

}
#s-64c396e6-cb79-4945-9546-4d2ce73cce72 {
  text-align: center;
}

#s-64c396e6-cb79-4945-9546-4d2ce73cce72 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.5em;
  
  
  text-align: center;
}



#s-f0ca1eda-b6b1-4aed-9bc0-56aad760f315 {
  margin-bottom: 4%;
padding-left: 0px;
padding-right: 0px;
}

#s-4626e560-67bf-4109-809d-ed2e13d2ec57 {
  min-height: 50px;
}








#s-4626e560-67bf-4109-809d-ed2e13d2ec57 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4626e560-67bf-4109-809d-ed2e13d2ec57.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-bd1b4773-fb82-4ea7-b576-faabc7e62041 {
  max-width: 210px;
aspect-ratio: 210/269;
text-align: center;
}
@media (min-width: 1200px){#s-bd1b4773-fb82-4ea7-b576-faabc7e62041 {
  max-width: 70%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-bd1b4773-fb82-4ea7-b576-faabc7e62041 {
  max-width: 80%;
}
}
#s-bd1b4773-fb82-4ea7-b576-faabc7e62041 {
  margin: 0 !important;
  overflow: visible;
}

#s-bd1b4773-fb82-4ea7-b576-faabc7e62041-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bd1b4773-fb82-4ea7-b576-faabc7e62041 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bd1b4773-fb82-4ea7-b576-faabc7e62041 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bd1b4773-fb82-4ea7-b576-faabc7e62041 img.shogun-image {
  /* Add background color handling */
  
}

#s-bd1b4773-fb82-4ea7-b576-faabc7e62041 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bd1b4773-fb82-4ea7-b576-faabc7e62041 .shg-image-content-wrapper {
      aspect-ratio: 210/269;
      min-width: 100%;
      height: auto;
    }

    #s-bd1b4773-fb82-4ea7-b576-faabc7e62041 .shogun-image-link {
      aspect-ratio: 210/269;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bd1b4773-fb82-4ea7-b576-faabc7e62041 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bd1b4773-fb82-4ea7-b576-faabc7e62041 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 210px;
  }



  img.s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image {
    
    
    
    max-height: 210px;
  }


.s-bd1b4773-fb82-4ea7-b576-faabc7e62041 .shogun-image-content {
  
    justify-content: center;
  
}

.s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image {
  box-sizing: border-box;
}



.s-bd1b4773-fb82-4ea7-b576-faabc7e62041 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bd1b4773-fb82-4ea7-b576-faabc7e62041 {
      --shg-aspect-ratio: calc(210/269); 
    }

    .s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image-container {
      position: relative;
    }

    .s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bd1b4773-fb82-4ea7-b576-faabc7e62041 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 210px;
    }
  }

@media (min-width: 1200px){#s-bd1b4773-fb82-4ea7-b576-faabc7e62041 {
  margin: 0 !important;
  overflow: visible;
}

#s-bd1b4773-fb82-4ea7-b576-faabc7e62041-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bd1b4773-fb82-4ea7-b576-faabc7e62041 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bd1b4773-fb82-4ea7-b576-faabc7e62041 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bd1b4773-fb82-4ea7-b576-faabc7e62041 img.shogun-image {
  /* Add background color handling */
  
}

#s-bd1b4773-fb82-4ea7-b576-faabc7e62041 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bd1b4773-fb82-4ea7-b576-faabc7e62041 .shg-image-content-wrapper {
      aspect-ratio: 210/269;
      min-width: 100%;
      height: auto;
    }

    #s-bd1b4773-fb82-4ea7-b576-faabc7e62041 .shogun-image-link {
      aspect-ratio: 210/269;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bd1b4773-fb82-4ea7-b576-faabc7e62041 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bd1b4773-fb82-4ea7-b576-faabc7e62041 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 210px;
  }



  img.s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image {
    
    
    
    max-height: 210px;
  }


.s-bd1b4773-fb82-4ea7-b576-faabc7e62041 .shogun-image-content {
  
    justify-content: center;
  
}

.s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image {
  box-sizing: border-box;
}



.s-bd1b4773-fb82-4ea7-b576-faabc7e62041 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bd1b4773-fb82-4ea7-b576-faabc7e62041 {
      --shg-aspect-ratio: calc(210/269); 
    }

    .s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image-container {
      position: relative;
    }

    .s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bd1b4773-fb82-4ea7-b576-faabc7e62041 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 210px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-bd1b4773-fb82-4ea7-b576-faabc7e62041 {
  margin: 0 !important;
  overflow: visible;
}

#s-bd1b4773-fb82-4ea7-b576-faabc7e62041-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bd1b4773-fb82-4ea7-b576-faabc7e62041 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bd1b4773-fb82-4ea7-b576-faabc7e62041 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bd1b4773-fb82-4ea7-b576-faabc7e62041 img.shogun-image {
  /* Add background color handling */
  
}

#s-bd1b4773-fb82-4ea7-b576-faabc7e62041 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bd1b4773-fb82-4ea7-b576-faabc7e62041 .shg-image-content-wrapper {
      aspect-ratio: 210/269;
      min-width: 100%;
      height: auto;
    }

    #s-bd1b4773-fb82-4ea7-b576-faabc7e62041 .shogun-image-link {
      aspect-ratio: 210/269;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bd1b4773-fb82-4ea7-b576-faabc7e62041 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bd1b4773-fb82-4ea7-b576-faabc7e62041 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 210px;
  }



  img.s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image {
    
    
    
    max-height: 210px;
  }


.s-bd1b4773-fb82-4ea7-b576-faabc7e62041 .shogun-image-content {
  
    justify-content: center;
  
}

.s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image {
  box-sizing: border-box;
}



.s-bd1b4773-fb82-4ea7-b576-faabc7e62041 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bd1b4773-fb82-4ea7-b576-faabc7e62041 {
      --shg-aspect-ratio: calc(210/269); 
    }

    .s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image-container {
      position: relative;
    }

    .s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bd1b4773-fb82-4ea7-b576-faabc7e62041 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 210px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-bd1b4773-fb82-4ea7-b576-faabc7e62041 {
  margin: 0 !important;
  overflow: visible;
}

#s-bd1b4773-fb82-4ea7-b576-faabc7e62041-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bd1b4773-fb82-4ea7-b576-faabc7e62041 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bd1b4773-fb82-4ea7-b576-faabc7e62041 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bd1b4773-fb82-4ea7-b576-faabc7e62041 img.shogun-image {
  /* Add background color handling */
  
}

#s-bd1b4773-fb82-4ea7-b576-faabc7e62041 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bd1b4773-fb82-4ea7-b576-faabc7e62041 .shg-image-content-wrapper {
      aspect-ratio: 210/269;
      min-width: 100%;
      height: auto;
    }

    #s-bd1b4773-fb82-4ea7-b576-faabc7e62041 .shogun-image-link {
      aspect-ratio: 210/269;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bd1b4773-fb82-4ea7-b576-faabc7e62041 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bd1b4773-fb82-4ea7-b576-faabc7e62041 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 210px;
  }



  img.s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image {
    
    
    
    max-height: 210px;
  }


.s-bd1b4773-fb82-4ea7-b576-faabc7e62041 .shogun-image-content {
  
    justify-content: center;
  
}

.s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image {
  box-sizing: border-box;
}



.s-bd1b4773-fb82-4ea7-b576-faabc7e62041 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bd1b4773-fb82-4ea7-b576-faabc7e62041 {
      --shg-aspect-ratio: calc(210/269); 
    }

    .s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image-container {
      position: relative;
    }

    .s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bd1b4773-fb82-4ea7-b576-faabc7e62041 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 210px;
    }
  }

}@media (max-width: 767px){#s-bd1b4773-fb82-4ea7-b576-faabc7e62041 {
  margin: 0 !important;
  overflow: visible;
}

#s-bd1b4773-fb82-4ea7-b576-faabc7e62041-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bd1b4773-fb82-4ea7-b576-faabc7e62041 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bd1b4773-fb82-4ea7-b576-faabc7e62041 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bd1b4773-fb82-4ea7-b576-faabc7e62041 img.shogun-image {
  /* Add background color handling */
  
}

#s-bd1b4773-fb82-4ea7-b576-faabc7e62041 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bd1b4773-fb82-4ea7-b576-faabc7e62041 .shg-image-content-wrapper {
      aspect-ratio: 210/269;
      min-width: 100%;
      height: auto;
    }

    #s-bd1b4773-fb82-4ea7-b576-faabc7e62041 .shogun-image-link {
      aspect-ratio: 210/269;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bd1b4773-fb82-4ea7-b576-faabc7e62041 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bd1b4773-fb82-4ea7-b576-faabc7e62041 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 210px;
  }



  img.s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image {
    
    
    
    max-height: 210px;
  }


.s-bd1b4773-fb82-4ea7-b576-faabc7e62041 .shogun-image-content {
  
    justify-content: center;
  
}

.s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image {
  box-sizing: border-box;
}



.s-bd1b4773-fb82-4ea7-b576-faabc7e62041 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bd1b4773-fb82-4ea7-b576-faabc7e62041 {
      --shg-aspect-ratio: calc(210/269); 
    }

    .s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image-container {
      position: relative;
    }

    .s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bd1b4773-fb82-4ea7-b576-faabc7e62041.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bd1b4773-fb82-4ea7-b576-faabc7e62041 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 210px;
    }
  }

}
#s-a6007442-897d-4a54-95ff-32fa7b9af173 {
  text-align: center;
}

#s-a6007442-897d-4a54-95ff-32fa7b9af173 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.5em;
  line-height: 1.5em;
  
  text-align: center;
}



#s-99295e6e-9895-4b8d-a187-eaa916d1c2e5 {
  margin-bottom: 4%;
padding-left: 0px;
padding-right: 0px;
}








#s-5a3b6281-c9d9-4f0b-aff3-e2702bbc6812 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5a3b6281-c9d9-4f0b-aff3-e2702bbc6812.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-ceb79233-8155-4fed-979a-bce8e9d142f5 {
  min-height: 4px;
max-width: 420px;
aspect-ratio: 420/537;
text-align: center;
}
@media (min-width: 1200px){#s-ceb79233-8155-4fed-979a-bce8e9d142f5 {
  max-width: 70%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ceb79233-8155-4fed-979a-bce8e9d142f5 {
  max-width: 80%;
}
}
#s-ceb79233-8155-4fed-979a-bce8e9d142f5 {
  margin: 0 !important;
  overflow: visible;
}

#s-ceb79233-8155-4fed-979a-bce8e9d142f5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ceb79233-8155-4fed-979a-bce8e9d142f5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ceb79233-8155-4fed-979a-bce8e9d142f5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ceb79233-8155-4fed-979a-bce8e9d142f5 img.shogun-image {
  /* Add background color handling */
  
}

#s-ceb79233-8155-4fed-979a-bce8e9d142f5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ceb79233-8155-4fed-979a-bce8e9d142f5 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-ceb79233-8155-4fed-979a-bce8e9d142f5 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ceb79233-8155-4fed-979a-bce8e9d142f5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ceb79233-8155-4fed-979a-bce8e9d142f5 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 4px;
    max-height: 420px;
  }



  img.s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image {
    
    
    min-height: 4px;
    max-height: 420px;
  }


.s-ceb79233-8155-4fed-979a-bce8e9d142f5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ceb79233-8155-4fed-979a-bce8e9d142f5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image {
  box-sizing: border-box;
}



.s-ceb79233-8155-4fed-979a-bce8e9d142f5 img.shogun-image {
  min-height: 4px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-ceb79233-8155-4fed-979a-bce8e9d142f5 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image-container {
      position: relative;
    }

    .s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ceb79233-8155-4fed-979a-bce8e9d142f5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 4px;
      max-width: 420px;
    }
  }

@media (min-width: 1200px){#s-ceb79233-8155-4fed-979a-bce8e9d142f5 {
  margin: 0 !important;
  overflow: visible;
}

#s-ceb79233-8155-4fed-979a-bce8e9d142f5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ceb79233-8155-4fed-979a-bce8e9d142f5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ceb79233-8155-4fed-979a-bce8e9d142f5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ceb79233-8155-4fed-979a-bce8e9d142f5 img.shogun-image {
  /* Add background color handling */
  
}

#s-ceb79233-8155-4fed-979a-bce8e9d142f5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ceb79233-8155-4fed-979a-bce8e9d142f5 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-ceb79233-8155-4fed-979a-bce8e9d142f5 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ceb79233-8155-4fed-979a-bce8e9d142f5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ceb79233-8155-4fed-979a-bce8e9d142f5 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 4px;
    max-height: 420px;
  }



  img.s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image {
    
    
    min-height: 4px;
    max-height: 420px;
  }


.s-ceb79233-8155-4fed-979a-bce8e9d142f5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ceb79233-8155-4fed-979a-bce8e9d142f5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image {
  box-sizing: border-box;
}



.s-ceb79233-8155-4fed-979a-bce8e9d142f5 img.shogun-image {
  min-height: 4px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-ceb79233-8155-4fed-979a-bce8e9d142f5 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image-container {
      position: relative;
    }

    .s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ceb79233-8155-4fed-979a-bce8e9d142f5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 4px;
      max-width: 420px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-ceb79233-8155-4fed-979a-bce8e9d142f5 {
  margin: 0 !important;
  overflow: visible;
}

#s-ceb79233-8155-4fed-979a-bce8e9d142f5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ceb79233-8155-4fed-979a-bce8e9d142f5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ceb79233-8155-4fed-979a-bce8e9d142f5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ceb79233-8155-4fed-979a-bce8e9d142f5 img.shogun-image {
  /* Add background color handling */
  
}

#s-ceb79233-8155-4fed-979a-bce8e9d142f5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ceb79233-8155-4fed-979a-bce8e9d142f5 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-ceb79233-8155-4fed-979a-bce8e9d142f5 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ceb79233-8155-4fed-979a-bce8e9d142f5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ceb79233-8155-4fed-979a-bce8e9d142f5 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 4px;
    max-height: 420px;
  }



  img.s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image {
    
    
    min-height: 4px;
    max-height: 420px;
  }


.s-ceb79233-8155-4fed-979a-bce8e9d142f5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ceb79233-8155-4fed-979a-bce8e9d142f5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image {
  box-sizing: border-box;
}



.s-ceb79233-8155-4fed-979a-bce8e9d142f5 img.shogun-image {
  min-height: 4px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-ceb79233-8155-4fed-979a-bce8e9d142f5 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image-container {
      position: relative;
    }

    .s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ceb79233-8155-4fed-979a-bce8e9d142f5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 4px;
      max-width: 420px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-ceb79233-8155-4fed-979a-bce8e9d142f5 {
  margin: 0 !important;
  overflow: visible;
}

#s-ceb79233-8155-4fed-979a-bce8e9d142f5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ceb79233-8155-4fed-979a-bce8e9d142f5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ceb79233-8155-4fed-979a-bce8e9d142f5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ceb79233-8155-4fed-979a-bce8e9d142f5 img.shogun-image {
  /* Add background color handling */
  
}

#s-ceb79233-8155-4fed-979a-bce8e9d142f5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ceb79233-8155-4fed-979a-bce8e9d142f5 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-ceb79233-8155-4fed-979a-bce8e9d142f5 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ceb79233-8155-4fed-979a-bce8e9d142f5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ceb79233-8155-4fed-979a-bce8e9d142f5 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 4px;
    max-height: 420px;
  }



  img.s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image {
    
    
    min-height: 4px;
    max-height: 420px;
  }


.s-ceb79233-8155-4fed-979a-bce8e9d142f5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ceb79233-8155-4fed-979a-bce8e9d142f5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image {
  box-sizing: border-box;
}



.s-ceb79233-8155-4fed-979a-bce8e9d142f5 img.shogun-image {
  min-height: 4px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-ceb79233-8155-4fed-979a-bce8e9d142f5 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image-container {
      position: relative;
    }

    .s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ceb79233-8155-4fed-979a-bce8e9d142f5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 4px;
      max-width: 420px;
    }
  }

}@media (max-width: 767px){#s-ceb79233-8155-4fed-979a-bce8e9d142f5 {
  margin: 0 !important;
  overflow: visible;
}

#s-ceb79233-8155-4fed-979a-bce8e9d142f5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ceb79233-8155-4fed-979a-bce8e9d142f5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ceb79233-8155-4fed-979a-bce8e9d142f5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ceb79233-8155-4fed-979a-bce8e9d142f5 img.shogun-image {
  /* Add background color handling */
  
}

#s-ceb79233-8155-4fed-979a-bce8e9d142f5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ceb79233-8155-4fed-979a-bce8e9d142f5 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-ceb79233-8155-4fed-979a-bce8e9d142f5 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ceb79233-8155-4fed-979a-bce8e9d142f5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ceb79233-8155-4fed-979a-bce8e9d142f5 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 4px;
    max-height: 420px;
  }



  img.s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image {
    
    
    min-height: 4px;
    max-height: 420px;
  }


.s-ceb79233-8155-4fed-979a-bce8e9d142f5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ceb79233-8155-4fed-979a-bce8e9d142f5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image {
  box-sizing: border-box;
}



.s-ceb79233-8155-4fed-979a-bce8e9d142f5 img.shogun-image {
  min-height: 4px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-ceb79233-8155-4fed-979a-bce8e9d142f5 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image-container {
      position: relative;
    }

    .s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ceb79233-8155-4fed-979a-bce8e9d142f5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ceb79233-8155-4fed-979a-bce8e9d142f5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 4px;
      max-width: 420px;
    }
  }

}
#s-f6f0e1cd-0f24-4ea2-a9f1-20d17177e234 {
  text-align: center;
}

#s-f6f0e1cd-0f24-4ea2-a9f1-20d17177e234 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.5em;
  
  
  text-align: center;
}



#s-b9d84e2b-f065-444e-b135-c6ee5ac34de2 {
  margin-bottom: 4%;
padding-left: 0px;
padding-right: 0px;
}








#s-162678f2-8eb0-4dae-88e3-842b9fc2210f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-162678f2-8eb0-4dae-88e3-842b9fc2210f.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-a1b6d365-17b4-4037-bef5-343d49b22275 {
  max-width: 420px;
aspect-ratio: 420/537;
text-align: center;
}
@media (min-width: 1200px){#s-a1b6d365-17b4-4037-bef5-343d49b22275 {
  max-width: 70%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a1b6d365-17b4-4037-bef5-343d49b22275 {
  max-width: 80%;
}
}
#s-a1b6d365-17b4-4037-bef5-343d49b22275 {
  margin: 0 !important;
  overflow: visible;
}

#s-a1b6d365-17b4-4037-bef5-343d49b22275-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a1b6d365-17b4-4037-bef5-343d49b22275 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a1b6d365-17b4-4037-bef5-343d49b22275 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a1b6d365-17b4-4037-bef5-343d49b22275 img.shogun-image {
  /* Add background color handling */
  
}

#s-a1b6d365-17b4-4037-bef5-343d49b22275 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a1b6d365-17b4-4037-bef5-343d49b22275 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-a1b6d365-17b4-4037-bef5-343d49b22275 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a1b6d365-17b4-4037-bef5-343d49b22275 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a1b6d365-17b4-4037-bef5-343d49b22275 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 420px;
  }



  img.s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image {
    
    
    
    max-height: 420px;
  }


.s-a1b6d365-17b4-4037-bef5-343d49b22275 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a1b6d365-17b4-4037-bef5-343d49b22275.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image {
  box-sizing: border-box;
}



.s-a1b6d365-17b4-4037-bef5-343d49b22275 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a1b6d365-17b4-4037-bef5-343d49b22275 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image-container {
      position: relative;
    }

    .s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a1b6d365-17b4-4037-bef5-343d49b22275 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 420px;
    }
  }

@media (min-width: 1200px){#s-a1b6d365-17b4-4037-bef5-343d49b22275 {
  margin: 0 !important;
  overflow: visible;
}

#s-a1b6d365-17b4-4037-bef5-343d49b22275-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a1b6d365-17b4-4037-bef5-343d49b22275 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a1b6d365-17b4-4037-bef5-343d49b22275 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a1b6d365-17b4-4037-bef5-343d49b22275 img.shogun-image {
  /* Add background color handling */
  
}

#s-a1b6d365-17b4-4037-bef5-343d49b22275 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a1b6d365-17b4-4037-bef5-343d49b22275 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-a1b6d365-17b4-4037-bef5-343d49b22275 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a1b6d365-17b4-4037-bef5-343d49b22275 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a1b6d365-17b4-4037-bef5-343d49b22275 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 420px;
  }



  img.s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image {
    
    
    
    max-height: 420px;
  }


.s-a1b6d365-17b4-4037-bef5-343d49b22275 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a1b6d365-17b4-4037-bef5-343d49b22275.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image {
  box-sizing: border-box;
}



.s-a1b6d365-17b4-4037-bef5-343d49b22275 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a1b6d365-17b4-4037-bef5-343d49b22275 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image-container {
      position: relative;
    }

    .s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a1b6d365-17b4-4037-bef5-343d49b22275 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 420px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-a1b6d365-17b4-4037-bef5-343d49b22275 {
  margin: 0 !important;
  overflow: visible;
}

#s-a1b6d365-17b4-4037-bef5-343d49b22275-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a1b6d365-17b4-4037-bef5-343d49b22275 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a1b6d365-17b4-4037-bef5-343d49b22275 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a1b6d365-17b4-4037-bef5-343d49b22275 img.shogun-image {
  /* Add background color handling */
  
}

#s-a1b6d365-17b4-4037-bef5-343d49b22275 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a1b6d365-17b4-4037-bef5-343d49b22275 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-a1b6d365-17b4-4037-bef5-343d49b22275 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a1b6d365-17b4-4037-bef5-343d49b22275 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a1b6d365-17b4-4037-bef5-343d49b22275 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 420px;
  }



  img.s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image {
    
    
    
    max-height: 420px;
  }


.s-a1b6d365-17b4-4037-bef5-343d49b22275 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a1b6d365-17b4-4037-bef5-343d49b22275.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image {
  box-sizing: border-box;
}



.s-a1b6d365-17b4-4037-bef5-343d49b22275 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a1b6d365-17b4-4037-bef5-343d49b22275 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image-container {
      position: relative;
    }

    .s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a1b6d365-17b4-4037-bef5-343d49b22275 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 420px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-a1b6d365-17b4-4037-bef5-343d49b22275 {
  margin: 0 !important;
  overflow: visible;
}

#s-a1b6d365-17b4-4037-bef5-343d49b22275-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a1b6d365-17b4-4037-bef5-343d49b22275 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a1b6d365-17b4-4037-bef5-343d49b22275 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a1b6d365-17b4-4037-bef5-343d49b22275 img.shogun-image {
  /* Add background color handling */
  
}

#s-a1b6d365-17b4-4037-bef5-343d49b22275 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a1b6d365-17b4-4037-bef5-343d49b22275 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-a1b6d365-17b4-4037-bef5-343d49b22275 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a1b6d365-17b4-4037-bef5-343d49b22275 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a1b6d365-17b4-4037-bef5-343d49b22275 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 420px;
  }



  img.s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image {
    
    
    
    max-height: 420px;
  }


.s-a1b6d365-17b4-4037-bef5-343d49b22275 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a1b6d365-17b4-4037-bef5-343d49b22275.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image {
  box-sizing: border-box;
}



.s-a1b6d365-17b4-4037-bef5-343d49b22275 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a1b6d365-17b4-4037-bef5-343d49b22275 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image-container {
      position: relative;
    }

    .s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a1b6d365-17b4-4037-bef5-343d49b22275 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 420px;
    }
  }

}@media (max-width: 767px){#s-a1b6d365-17b4-4037-bef5-343d49b22275 {
  margin: 0 !important;
  overflow: visible;
}

#s-a1b6d365-17b4-4037-bef5-343d49b22275-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a1b6d365-17b4-4037-bef5-343d49b22275 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a1b6d365-17b4-4037-bef5-343d49b22275 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a1b6d365-17b4-4037-bef5-343d49b22275 img.shogun-image {
  /* Add background color handling */
  
}

#s-a1b6d365-17b4-4037-bef5-343d49b22275 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a1b6d365-17b4-4037-bef5-343d49b22275 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-a1b6d365-17b4-4037-bef5-343d49b22275 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a1b6d365-17b4-4037-bef5-343d49b22275 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a1b6d365-17b4-4037-bef5-343d49b22275 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 420px;
  }



  img.s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image {
    
    
    
    max-height: 420px;
  }


.s-a1b6d365-17b4-4037-bef5-343d49b22275 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a1b6d365-17b4-4037-bef5-343d49b22275.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image {
  box-sizing: border-box;
}



.s-a1b6d365-17b4-4037-bef5-343d49b22275 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a1b6d365-17b4-4037-bef5-343d49b22275 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image-container {
      position: relative;
    }

    .s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a1b6d365-17b4-4037-bef5-343d49b22275.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a1b6d365-17b4-4037-bef5-343d49b22275 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 420px;
    }
  }

}
#s-76c5ae14-a0c9-4e27-8e6e-a940274b3125 {
  text-align: center;
}

#s-76c5ae14-a0c9-4e27-8e6e-a940274b3125 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.5em;
  line-height: 1.5em;
  
  text-align: center;
}



#s-c22ef4bb-1208-44a5-ae72-20ea1b1a32e0 {
  margin-bottom: 4%;
}

#s-d603874c-3246-4d86-9970-627e1a467aec {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 2%;
padding-right: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-d603874c-3246-4d86-9970-627e1a467aec {
  display: none;
}
#s-d603874c-3246-4d86-9970-627e1a467aec, #wrap-s-d603874c-3246-4d86-9970-627e1a467aec, #wrap-content-s-d603874c-3246-4d86-9970-627e1a467aec { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d603874c-3246-4d86-9970-627e1a467aec {
  display: none;
}
#s-d603874c-3246-4d86-9970-627e1a467aec, #wrap-s-d603874c-3246-4d86-9970-627e1a467aec, #wrap-content-s-d603874c-3246-4d86-9970-627e1a467aec { display: none !important; }}
#s-d603874c-3246-4d86-9970-627e1a467aec .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 2em;
  line-height: 1em;
  
  text-align: center;
}



#s-78ade8c0-494b-4b4c-bad0-7038af4d6ad7 {
  padding-left: 30px;
padding-right: 30px;
}
@media (min-width: 1200px){#s-78ade8c0-494b-4b4c-bad0-7038af4d6ad7 {
  display: none;
}
#s-78ade8c0-494b-4b4c-bad0-7038af4d6ad7, #wrap-s-78ade8c0-494b-4b4c-bad0-7038af4d6ad7, #wrap-content-s-78ade8c0-494b-4b4c-bad0-7038af4d6ad7 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-78ade8c0-494b-4b4c-bad0-7038af4d6ad7 {
  display: none;
}
#s-78ade8c0-494b-4b4c-bad0-7038af4d6ad7, #wrap-s-78ade8c0-494b-4b4c-bad0-7038af4d6ad7, #wrap-content-s-78ade8c0-494b-4b4c-bad0-7038af4d6ad7 { display: none !important; }}
#s-c971d7d2-95c8-4eec-95a9-e49fd51dfa56 {
  min-height: 35em;
}








#s-c971d7d2-95c8-4eec-95a9-e49fd51dfa56 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c971d7d2-95c8-4eec-95a9-e49fd51dfa56.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0f836ef5-7529-4ccb-b91b-124290f2b12d {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 1%;
padding-right: 0px;
text-align: left;
}

#s-0f836ef5-7529-4ccb-b91b-124290f2b12d .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 2em;
  line-height: 1em;
  
  text-align: left;
}



#s-608686a7-2d66-4461-aeb7-d7913f9ba431 {
  margin-left: auto;
margin-bottom: 2%;
margin-right: auto;
}

#s-b237f307-9b34-4b25-853e-d0cb36d3fd17 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
max-width: 100%;
}

#s-b237f307-9b34-4b25-853e-d0cb36d3fd17 .shogun-form-box label.shogun-form-label {
  display: flex;
  font-weight:  normal;
  color: #000;
  
  
  
  
  
  
  padding-top: 5px;
  padding-bottom: 5px;
  
  
}

#s-b237f307-9b34-4b25-853e-d0cb36d3fd17 .shogun-form-success-msg {
  visibility: hidden;
  display: flex;
  align-items: center;
  
  
  color: #008000;
  
  
  
  
  
}

#s-b237f307-9b34-4b25-853e-d0cb36d3fd17 .shogun-form-success-msg > svg {
  margin-right: 4px;
  stroke: #008000;
}

#s-b237f307-9b34-4b25-853e-d0cb36d3fd17 .shogun-form-error-msg-container, #s-b237f307-9b34-4b25-853e-d0cb36d3fd17 .shogun-form-field-error-msg-container {
  display: none;
}

#s-b237f307-9b34-4b25-853e-d0cb36d3fd17 .shogun-form-error-msg {
  
  
  color: #ff0000;
  
  
  
  
  
}

#s-b237f307-9b34-4b25-853e-d0cb36d3fd17 .shogun-form-field-error-msg > svg {
  margin-right: 4px;
  stroke: #ff0000;
}

.shogun-form-text-input-field {
  width: 100%;
}

.shogun-form-text-input-field:focus {
  outline: none;
}

textarea.shogun-form-text-input-field {
  resize: none;
  overflow: hidden;
  min-height: 70px !important;
}

#s-a84ae6fd-b76d-4350-a6dc-82f09b3fdbdb {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 2%;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
}

#s-a84ae6fd-b76d-4350-a6dc-82f09b3fdbdb  .shogun-form-text-input-field {
  border-width: 0px;
  border-color: rgba(0, 0, 0, 1);
  border-radius: 16px;
  background-color: rgba(245, 245, 245, 1);
  box-shadow: 3px 3px 6px 1px rgba(0, 0, 0, 0.1);
  font-size: 1em;
  font-style: ;
  color: rgba(0, 0, 0, 0.5);
  font-family: Outfit;
  font-weight: 200;
  line-height: 3em;
  
}

#s-a84ae6fd-b76d-4350-a6dc-82f09b3fdbdb  .shogun-form-text-input-field::placeholder {
  
  font-style: ;
  color: rgba(0, 0, 0, 0.5);
  font-family: Outfit;
  font-weight: 300;
  line-height: 0.5em;
  letter-spacing: 2px;
}


#s-a84ae6fd-b76d-4350-a6dc-82f09b3fdbdb .shogun-form-text-input-field:hover {
  border-width: 0px;
  border-color: rgba(255, 255, 255, 1);
  
  
  color: #000;
}



#s-a84ae6fd-b76d-4350-a6dc-82f09b3fdbdb .shogun-form-text-input-field:focus {
  border-width: 0px;
  border-color: #000;
  
  
  color: #000;
}


#s-fad234eb-2847-43cc-a9c6-8ed1c04e4408 {
  margin-top: 1%;
margin-left: 0%;
margin-bottom: 1%;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
}

#s-fad234eb-2847-43cc-a9c6-8ed1c04e4408  .shogun-form-text-input-field {
  border-width: 0px;
  border-color: rgba(0, 0, 0, 1);
  border-radius: 16px;
  background-color: rgba(245, 245, 245, 1);
  box-shadow: 3px 3px 6px 1px rgba(0, 0, 0, 0.1);
  font-size: 1em;
  font-style: ;
  color: rgba(0, 0, 0, 0.5);
  font-family: Outfit;
  font-weight: 200;
  line-height: 3em;
  
}

#s-fad234eb-2847-43cc-a9c6-8ed1c04e4408  .shogun-form-text-input-field::placeholder {
  
  font-style: ;
  color: rgba(0, 0, 0, 0.5);
  font-family: Outfit;
  font-weight: 300;
  line-height: 0.5em;
  letter-spacing: 2px;
}


#s-fad234eb-2847-43cc-a9c6-8ed1c04e4408 .shogun-form-text-input-field:hover {
  border-width: 0px;
  border-color: rgba(255, 255, 255, 1);
  
  
  color: #000;
}



#s-fad234eb-2847-43cc-a9c6-8ed1c04e4408 .shogun-form-text-input-field:focus {
  border-width: 0px;
  border-color: #000;
  
  
  color: #000;
}


#s-4db8dd4a-b771-424e-a75c-f9e2e4cac4d4 {
  margin-top: 2%;
margin-left: 0%;
margin-bottom: 2%;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
}

#s-4db8dd4a-b771-424e-a75c-f9e2e4cac4d4  .shogun-form-text-input-field {
  border-width: 0px;
  border-color: rgba(0, 0, 0, 1);
  border-radius: 16px;
  background-color: rgba(245, 245, 245, 1);
  box-shadow: 3px 3px 6px 1px rgba(0, 0, 0, 0.1);
  font-size: 1em;
  font-style: ;
  color: rgba(0, 0, 0, 0.5);
  font-family: Outfit;
  font-weight: 200;
  line-height: 3em;
  
}

#s-4db8dd4a-b771-424e-a75c-f9e2e4cac4d4  .shogun-form-text-input-field::placeholder {
  
  font-style: ;
  color: rgba(0, 0, 0, 0.5);
  font-family: Outfit;
  font-weight: 300;
  line-height: 0.5em;
  letter-spacing: 2px;
}


#s-4db8dd4a-b771-424e-a75c-f9e2e4cac4d4 .shogun-form-text-input-field:hover {
  border-width: 0px;
  border-color: rgba(255, 255, 255, 1);
  
  
  color: #000;
}



#s-4db8dd4a-b771-424e-a75c-f9e2e4cac4d4 .shogun-form-text-input-field:focus {
  border-width: 0px;
  border-color: #000;
  
  
  color: #000;
}


#s-6c74ebdd-6081-4fb5-8095-707bee7c5d5c {
  margin-top: 2%;
margin-left: 0%;
margin-bottom: 2%;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
}

#s-6c74ebdd-6081-4fb5-8095-707bee7c5d5c  .shogun-form-text-input-field {
  border-width: 0px;
  border-color: rgba(0, 0, 0, 1);
  border-radius: 16px;
  background-color: rgba(245, 245, 245, 1);
  box-shadow: 3px 3px 6px 1px rgba(0, 0, 0, 0.1);
  font-size: 1em;
  font-style: ;
  color: rgba(0, 0, 0, 0.5);
  font-family: Outfit;
  font-weight: 200;
  line-height: 2em;
  
}

#s-6c74ebdd-6081-4fb5-8095-707bee7c5d5c  .shogun-form-text-input-field::placeholder {
  
  font-style: ;
  color: rgba(0, 0, 0, 0.5);
  font-family: Outfit;
  font-weight: 300;
  line-height: 2em;
  letter-spacing: 2px;
}


#s-6c74ebdd-6081-4fb5-8095-707bee7c5d5c .shogun-form-text-input-field:hover {
  border-width: 0px;
  border-color: rgba(255, 255, 255, 1);
  
  
  color: #000;
}



#s-6c74ebdd-6081-4fb5-8095-707bee7c5d5c .shogun-form-text-input-field:focus {
  border-width: 0px;
  border-color: #000;
  
  
  color: #000;
}


.shogun-form-box-submit {
  border: 0;
  font-size: 1em;
  line-height: 1.8;
}

.shogun-form-box-submit:focus {
  outline: none;
}

.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-857a2819-73e6-4627-b526-197ed4569f16 {
  margin-top: 2%;
margin-left: auto;
margin-bottom: 2%;
margin-right: 0px;
padding-top: 10px;
padding-left: 25px;
padding-bottom: 10px;
padding-right: 25px;
border-radius: 50px;
color: #FFFFFF;
background-color: rgba(11, 75, 152, 1);
text-align: right;
cursor: pointer;
font-family: Outfit;
font-weight: 500;
font-size: 1em;
background-image: none;
hover-type: color;
line-height: 1em;
}
#s-857a2819-73e6-4627-b526-197ed4569f16:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(8, 128, 166, 1) !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(8, 128, 166, 1) !important;}#s-857a2819-73e6-4627-b526-197ed4569f16:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(8, 128, 166, 1) !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(8, 128, 166, 1) !important;}
#s-857a2819-73e6-4627-b526-197ed4569f16[disabled],
#s-857a2819-73e6-4627-b526-197ed4569f16[disabled]:hover,
#s-857a2819-73e6-4627-b526-197ed4569f16[disabled]:focus {
  background-color: #D7D5E2 !important;
}

#s-857a2819-73e6-4627-b526-197ed4569f16 {
  display:  inline-block ;
  width:  auto ;
}


.shg-social-alignable {
  display: inline-block;
}

.shg-social-container {
  display: flex;
}

.shg-social-element {
  display: inline-block;
  border: none !important;
  padding: 0px !important;
}

#s-7e529b98-3bb4-491d-bccb-286a286945d8 {
  text-align: center;
}
@media (min-width: 1200px){#s-7e529b98-3bb4-491d-bccb-286a286945d8 {
  display: none;
}
#s-7e529b98-3bb4-491d-bccb-286a286945d8, #wrap-s-7e529b98-3bb4-491d-bccb-286a286945d8, #wrap-content-s-7e529b98-3bb4-491d-bccb-286a286945d8 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7e529b98-3bb4-491d-bccb-286a286945d8 {
  display: none;
}
#s-7e529b98-3bb4-491d-bccb-286a286945d8, #wrap-s-7e529b98-3bb4-491d-bccb-286a286945d8, #wrap-content-s-7e529b98-3bb4-491d-bccb-286a286945d8 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7e529b98-3bb4-491d-bccb-286a286945d8 {
  display: none;
}
#s-7e529b98-3bb4-491d-bccb-286a286945d8, #wrap-s-7e529b98-3bb4-491d-bccb-286a286945d8, #wrap-content-s-7e529b98-3bb4-491d-bccb-286a286945d8 { display: none !important; }}@media (max-width: 767px){#s-7e529b98-3bb4-491d-bccb-286a286945d8 {
  display: none;
}
#s-7e529b98-3bb4-491d-bccb-286a286945d8, #wrap-s-7e529b98-3bb4-491d-bccb-286a286945d8, #wrap-content-s-7e529b98-3bb4-491d-bccb-286a286945d8 { display: none !important; }}
#s-ff8801a6-5a71-4a40-971b-5ed0666b03ee {
  margin-top: 0%;
margin-bottom: 0%;
padding-top: 5px;
padding-bottom: 0%;
min-height: 50px;
background-color: rgba(11, 75, 152, 1);
}
@media (min-width: 1200px){#s-ff8801a6-5a71-4a40-971b-5ed0666b03ee {
  padding-top: 5%;
display: none;
}
#s-ff8801a6-5a71-4a40-971b-5ed0666b03ee, #wrap-s-ff8801a6-5a71-4a40-971b-5ed0666b03ee, #wrap-content-s-ff8801a6-5a71-4a40-971b-5ed0666b03ee { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ff8801a6-5a71-4a40-971b-5ed0666b03ee {
  padding-top: 6%;
display: none;
}
#s-ff8801a6-5a71-4a40-971b-5ed0666b03ee, #wrap-s-ff8801a6-5a71-4a40-971b-5ed0666b03ee, #wrap-content-s-ff8801a6-5a71-4a40-971b-5ed0666b03ee { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ff8801a6-5a71-4a40-971b-5ed0666b03ee {
  margin-top: 0%;
margin-bottom: 0%;
padding-top: 6%;
display: none;
}
#s-ff8801a6-5a71-4a40-971b-5ed0666b03ee, #wrap-s-ff8801a6-5a71-4a40-971b-5ed0666b03ee, #wrap-content-s-ff8801a6-5a71-4a40-971b-5ed0666b03ee { display: none !important; }}@media (max-width: 767px){#s-ff8801a6-5a71-4a40-971b-5ed0666b03ee {
  padding-top: 10%;
display: none;
}
#s-ff8801a6-5a71-4a40-971b-5ed0666b03ee, #wrap-s-ff8801a6-5a71-4a40-971b-5ed0666b03ee, #wrap-content-s-ff8801a6-5a71-4a40-971b-5ed0666b03ee { display: none !important; }}







#s-ff8801a6-5a71-4a40-971b-5ed0666b03ee > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ff8801a6-5a71-4a40-971b-5ed0666b03ee.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6c6032b7-6581-48e6-a570-6ec6839aa374 {
  margin-left: auto;
margin-right: auto;
padding-bottom: 2%;
max-width: 80%;
}
@media (min-width: 1200px){#s-6c6032b7-6581-48e6-a570-6ec6839aa374 {
  max-width: 60%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-6c6032b7-6581-48e6-a570-6ec6839aa374 {
  display: none;
}
#s-6c6032b7-6581-48e6-a570-6ec6839aa374, #wrap-s-6c6032b7-6581-48e6-a570-6ec6839aa374, #wrap-content-s-6c6032b7-6581-48e6-a570-6ec6839aa374 { display: none !important; }}@media (max-width: 767px){#s-6c6032b7-6581-48e6-a570-6ec6839aa374 {
  display: none;
}
#s-6c6032b7-6581-48e6-a570-6ec6839aa374, #wrap-s-6c6032b7-6581-48e6-a570-6ec6839aa374, #wrap-content-s-6c6032b7-6581-48e6-a570-6ec6839aa374 { display: none !important; }}
@media (min-width: 0px) {
[id="s-6c6032b7-6581-48e6-a570-6ec6839aa374"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-6c6032b7-6581-48e6-a570-6ec6839aa374"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 992px) {
[id="s-6c6032b7-6581-48e6-a570-6ec6839aa374"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 1200px) {
[id="s-6c6032b7-6581-48e6-a570-6ec6839aa374"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 24.0px);
}

}

#s-964306cf-3796-4a99-9ce8-faa9502cbfba {
  margin-top: 0%;
margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 2%;
padding-right: 0px;
max-width: 190px;
text-align: left;
}

#s-964306cf-3796-4a99-9ce8-faa9502cbfba .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.5em;
  line-height: 1em;
  
  text-align: left;
}



#s-e9607a00-fea4-44ce-954b-aa8f723c0f2f {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-e9607a00-fea4-44ce-954b-aa8f723c0f2f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e9607a00-fea4-44ce-954b-aa8f723c0f2f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6daa0a7d-295e-437c-b1c1-9902d3798c59 {
  margin-left: auto;
margin-right: auto;
padding-left: 0px;
padding-right: 0px;
max-width: 190px;
}

#s-8664a59a-1270-401c-b5a5-63385ecfdc25 {
  margin-top: 0%;
margin-left: auto;
margin-bottom: 0%;
margin-right: auto;
padding-top: 0%;
padding-left: 0px;
padding-bottom: 0%;
padding-right: 0px;
text-align: left;
}

#s-8664a59a-1270-401c-b5a5-63385ecfdc25 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.1em;
  line-height: 1em;
  
  text-align: center;
}



#s-2b6bdaf9-5057-4ef9-b4a5-3e151f609359 {
  margin-top: 4%;
margin-bottom: 0%;
text-align: center;
}

#s-b5b90e2e-be31-493d-991c-d4afccc1f44f {
  padding-bottom: 4%;
min-height: 50px;
}








#s-b5b90e2e-be31-493d-991c-d4afccc1f44f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b5b90e2e-be31-493d-991c-d4afccc1f44f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e2e8ba34-a543-4216-bb2b-1fbae3021235 {
  margin-top: 0%;
margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 2%;
padding-right: 0px;
max-width: 120px;
text-align: left;
}

#s-e2e8ba34-a543-4216-bb2b-1fbae3021235 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.5em;
  line-height: 1em;
  
  text-align: left;
}



#s-46acf167-fcfe-4d76-af02-a16d1e424047 {
  margin-left: auto;
margin-right: auto;
padding-left: 0px;
padding-right: 0px;
max-width: 120px;
}

#s-bec49438-70f6-430b-a22c-9f06c847251f {
  margin-top: 0%;
margin-left: auto;
margin-bottom: 0%;
margin-right: auto;
padding-top: 0%;
padding-left: 0px;
padding-bottom: 0%;
padding-right: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-bec49438-70f6-430b-a22c-9f06c847251f {
  display: none;
}
#s-bec49438-70f6-430b-a22c-9f06c847251f, #wrap-s-bec49438-70f6-430b-a22c-9f06c847251f, #wrap-content-s-bec49438-70f6-430b-a22c-9f06c847251f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-bec49438-70f6-430b-a22c-9f06c847251f {
  display: none;
}
#s-bec49438-70f6-430b-a22c-9f06c847251f, #wrap-s-bec49438-70f6-430b-a22c-9f06c847251f, #wrap-content-s-bec49438-70f6-430b-a22c-9f06c847251f { display: none !important; }}
#s-bec49438-70f6-430b-a22c-9f06c847251f .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.1em;
  line-height: 1em;
  
  text-align: center;
}



#s-3d3a7ddd-7cb8-4f1c-9af4-1b2809275ae5 {
  margin-top: 1%;
margin-bottom: 2%;
text-align: center;
}
@media (min-width: 1200px){#s-3d3a7ddd-7cb8-4f1c-9af4-1b2809275ae5 {
  display: none;
}
#s-3d3a7ddd-7cb8-4f1c-9af4-1b2809275ae5, #wrap-s-3d3a7ddd-7cb8-4f1c-9af4-1b2809275ae5, #wrap-content-s-3d3a7ddd-7cb8-4f1c-9af4-1b2809275ae5 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3d3a7ddd-7cb8-4f1c-9af4-1b2809275ae5 {
  display: none;
}
#s-3d3a7ddd-7cb8-4f1c-9af4-1b2809275ae5, #wrap-s-3d3a7ddd-7cb8-4f1c-9af4-1b2809275ae5, #wrap-content-s-3d3a7ddd-7cb8-4f1c-9af4-1b2809275ae5 { display: none !important; }}
#s-bc2d545a-b4b1-48cb-a2ab-1a40e6db358c {
  padding-left: 0%;
padding-bottom: 1%;
}

#s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 {
  min-height: 70%;
max-width: 2004px;
aspect-ratio: 2004/1764;
text-align: center;
}
@media (min-width: 1200px){#s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 {
  display: none;
}
#s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61, #wrap-s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61, #wrap-content-s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 {
  display: none;
}
#s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61, #wrap-s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61, #wrap-content-s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 { display: none !important; }}
#s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 {
  margin: 0 !important;
  overflow: visible;
}

#s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 img.shogun-image {
  /* Add background color handling */
  
}

#s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 .shg-image-content-wrapper {
      aspect-ratio: 2004/1764;
      min-width: 100%;
      height: auto;
    }

    #s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 .shogun-image-link {
      aspect-ratio: 2004/1764;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 70%;
    max-height: 2004px;
  }



  img.s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image {
    
    
    min-height: 70%;
    max-height: 2004px;
  }


.s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 .shogun-image-content {
  
    justify-content: flex-end;
  
}

.s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image {
  box-sizing: border-box;
}



.s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 img.shogun-image {
  min-height: 70%;
}


  @supports not (aspect-ratio: 1/1) {
    .s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 {
      --shg-aspect-ratio: calc(2004/1764); 
    }

    .s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image-container {
      position: relative;
    }

    .s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 70%;
      max-width: 2004px;
    }
  }

@media (min-width: 1200px){#s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 {
  margin: 0 !important;
  overflow: visible;
}

#s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 img.shogun-image {
  /* Add background color handling */
  
}

#s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 .shg-image-content-wrapper {
      aspect-ratio: 2004/1764;
      min-width: 100%;
      height: auto;
    }

    #s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 .shogun-image-link {
      aspect-ratio: 2004/1764;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 70%;
    max-height: 2004px;
  }



  img.s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image {
    
    
    min-height: 70%;
    max-height: 2004px;
  }


.s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 .shogun-image-content {
  
    justify-content: flex-end;
  
}

.s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image {
  box-sizing: border-box;
}



.s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 img.shogun-image {
  min-height: 70%;
}


  @supports not (aspect-ratio: 1/1) {
    .s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 {
      --shg-aspect-ratio: calc(2004/1764); 
    }

    .s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image-container {
      position: relative;
    }

    .s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 70%;
      max-width: 2004px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 {
  margin: 0 !important;
  overflow: visible;
}

#s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 img.shogun-image {
  /* Add background color handling */
  
}

#s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 .shg-image-content-wrapper {
      aspect-ratio: 2004/1764;
      min-width: 100%;
      height: auto;
    }

    #s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 .shogun-image-link {
      aspect-ratio: 2004/1764;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 70%;
    max-height: 2004px;
  }



  img.s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image {
    
    
    min-height: 70%;
    max-height: 2004px;
  }


.s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 .shogun-image-content {
  
    justify-content: flex-end;
  
}

.s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image {
  box-sizing: border-box;
}



.s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 img.shogun-image {
  min-height: 70%;
}


  @supports not (aspect-ratio: 1/1) {
    .s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 {
      --shg-aspect-ratio: calc(2004/1764); 
    }

    .s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image-container {
      position: relative;
    }

    .s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 70%;
      max-width: 2004px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 {
  margin: 0 !important;
  overflow: visible;
}

#s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 img.shogun-image {
  /* Add background color handling */
  
}

#s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 .shg-image-content-wrapper {
      aspect-ratio: 2004/1764;
      min-width: 100%;
      height: auto;
    }

    #s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 .shogun-image-link {
      aspect-ratio: 2004/1764;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 70%;
    max-height: 2004px;
  }



  img.s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image {
    
    
    min-height: 70%;
    max-height: 2004px;
  }


.s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 .shogun-image-content {
  
    justify-content: flex-end;
  
}

.s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image {
  box-sizing: border-box;
}



.s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 img.shogun-image {
  min-height: 70%;
}


  @supports not (aspect-ratio: 1/1) {
    .s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 {
      --shg-aspect-ratio: calc(2004/1764); 
    }

    .s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image-container {
      position: relative;
    }

    .s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 70%;
      max-width: 2004px;
    }
  }

}@media (max-width: 767px){#s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 {
  margin: 0 !important;
  overflow: visible;
}

#s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 img.shogun-image {
  /* Add background color handling */
  
}

#s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 .shg-image-content-wrapper {
      aspect-ratio: 2004/1764;
      min-width: 100%;
      height: auto;
    }

    #s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 .shogun-image-link {
      aspect-ratio: 2004/1764;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 70%;
    max-height: 2004px;
  }



  img.s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image {
    
    
    min-height: 70%;
    max-height: 2004px;
  }


.s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 .shogun-image-content {
  
    justify-content: flex-end;
  
}

.s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image {
  box-sizing: border-box;
}



.s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 img.shogun-image {
  min-height: 70%;
}


  @supports not (aspect-ratio: 1/1) {
    .s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 {
      --shg-aspect-ratio: calc(2004/1764); 
    }

    .s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image-container {
      position: relative;
    }

    .s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1b5ffa15-0ddb-4e76-9d25-ba36ecf3bb61 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 70%;
      max-width: 2004px;
    }
  }

}
#s-48731ec0-3b4d-4644-ad6c-1cfa6634e4c5 {
  padding-top: 1px;
padding-bottom: 1px;
min-height: 50px;
max-width: 100%;
}
@media (min-width: 1200px){#s-48731ec0-3b4d-4644-ad6c-1cfa6634e4c5 {
  display: none;
}
#s-48731ec0-3b4d-4644-ad6c-1cfa6634e4c5, #wrap-s-48731ec0-3b4d-4644-ad6c-1cfa6634e4c5, #wrap-content-s-48731ec0-3b4d-4644-ad6c-1cfa6634e4c5 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-48731ec0-3b4d-4644-ad6c-1cfa6634e4c5 {
  display: none;
}
#s-48731ec0-3b4d-4644-ad6c-1cfa6634e4c5, #wrap-s-48731ec0-3b4d-4644-ad6c-1cfa6634e4c5, #wrap-content-s-48731ec0-3b4d-4644-ad6c-1cfa6634e4c5 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-48731ec0-3b4d-4644-ad6c-1cfa6634e4c5 {
  
}
}@media (max-width: 767px){#s-48731ec0-3b4d-4644-ad6c-1cfa6634e4c5 {
  
}
}







#s-48731ec0-3b4d-4644-ad6c-1cfa6634e4c5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-48731ec0-3b4d-4644-ad6c-1cfa6634e4c5.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-68a3fd16-13af-4378-8b31-7fe822305aee {
  margin-left: auto;
margin-bottom: 5%;
margin-right: auto;
min-height: 50px;
max-width: 90%;
}
@media (min-width: 1200px){#s-68a3fd16-13af-4378-8b31-7fe822305aee {
  display: none;
}
#s-68a3fd16-13af-4378-8b31-7fe822305aee, #wrap-s-68a3fd16-13af-4378-8b31-7fe822305aee, #wrap-content-s-68a3fd16-13af-4378-8b31-7fe822305aee { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-68a3fd16-13af-4378-8b31-7fe822305aee {
  display: none;
}
#s-68a3fd16-13af-4378-8b31-7fe822305aee, #wrap-s-68a3fd16-13af-4378-8b31-7fe822305aee, #wrap-content-s-68a3fd16-13af-4378-8b31-7fe822305aee { display: none !important; }}







#s-68a3fd16-13af-4378-8b31-7fe822305aee > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-68a3fd16-13af-4378-8b31-7fe822305aee.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-464705b3-2f75-40ed-92c0-26831916290c {
  margin-left: auto;
margin-right: auto;
padding-top: 0em;
padding-left: 0px;
padding-bottom: 0.5em;
padding-right: 0px;
text-align: left;
}

#s-464705b3-2f75-40ed-92c0-26831916290c .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.8em;
  line-height: 1em;
  
  text-align: center;
}



#s-f286d1c0-be96-487b-bf8b-3c23c4b9ce1f {
  margin-top: 0%;
padding-left: 0px;
padding-right: 0px;
}

#s-b74343e8-db46-4c1a-9609-8f13900ed4a1 {
  margin-top: 2px;
padding-left: 0%;
padding-right: 0%;
}

#s-edfb5add-2c64-4f14-8198-c5584dc4587b {
  background-repeat: no-repeat;
background-size: cover;
min-height: 100px;
background-position: left top;
}
@media (min-width: 1200px){#s-edfb5add-2c64-4f14-8198-c5584dc4587b {
  display: none;
}
#s-edfb5add-2c64-4f14-8198-c5584dc4587b, #wrap-s-edfb5add-2c64-4f14-8198-c5584dc4587b, #wrap-content-s-edfb5add-2c64-4f14-8198-c5584dc4587b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-edfb5add-2c64-4f14-8198-c5584dc4587b {
  display: none;
}
#s-edfb5add-2c64-4f14-8198-c5584dc4587b, #wrap-s-edfb5add-2c64-4f14-8198-c5584dc4587b, #wrap-content-s-edfb5add-2c64-4f14-8198-c5584dc4587b { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-edfb5add-2c64-4f14-8198-c5584dc4587b {
  
}
}@media (max-width: 767px){#s-edfb5add-2c64-4f14-8198-c5584dc4587b {
  min-height: 80px;
}
}







#s-edfb5add-2c64-4f14-8198-c5584dc4587b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-edfb5add-2c64-4f14-8198-c5584dc4587b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d638421a-9f96-497c-9e7a-e6c0c290e926 {
  margin-left: auto;
margin-bottom: 10%;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
max-width: 90%;
}
@media (min-width: 1200px){#s-d638421a-9f96-497c-9e7a-e6c0c290e926 {
  display: none;
}
#s-d638421a-9f96-497c-9e7a-e6c0c290e926, #wrap-s-d638421a-9f96-497c-9e7a-e6c0c290e926, #wrap-content-s-d638421a-9f96-497c-9e7a-e6c0c290e926 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d638421a-9f96-497c-9e7a-e6c0c290e926 {
  display: none;
}
#s-d638421a-9f96-497c-9e7a-e6c0c290e926, #wrap-s-d638421a-9f96-497c-9e7a-e6c0c290e926, #wrap-content-s-d638421a-9f96-497c-9e7a-e6c0c290e926 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d638421a-9f96-497c-9e7a-e6c0c290e926 {
  display: none;
}
#s-d638421a-9f96-497c-9e7a-e6c0c290e926, #wrap-s-d638421a-9f96-497c-9e7a-e6c0c290e926, #wrap-content-s-d638421a-9f96-497c-9e7a-e6c0c290e926 { display: none !important; }}@media (max-width: 767px){#s-d638421a-9f96-497c-9e7a-e6c0c290e926 {
  display: none;
}
#s-d638421a-9f96-497c-9e7a-e6c0c290e926, #wrap-s-d638421a-9f96-497c-9e7a-e6c0c290e926, #wrap-content-s-d638421a-9f96-497c-9e7a-e6c0c290e926 { display: none !important; }}
#s-d638421a-9f96-497c-9e7a-e6c0c290e926 .shg-sld-dot {
  background-color: rgba(0, 0, 0, 1);
}

#s-d638421a-9f96-497c-9e7a-e6c0c290e926 .shg-sld-nav-button.shg-sld-left,
#s-d638421a-9f96-497c-9e7a-e6c0c290e926 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(0, 0, 0, 1);
}

@media (min-width: 1200px){#s-4dfc5762-d680-4c42-bf0c-ae7f662303c5 {
  display: none;
}
#s-4dfc5762-d680-4c42-bf0c-ae7f662303c5, #wrap-s-4dfc5762-d680-4c42-bf0c-ae7f662303c5, #wrap-content-s-4dfc5762-d680-4c42-bf0c-ae7f662303c5 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4dfc5762-d680-4c42-bf0c-ae7f662303c5 {
  display: none;
}
#s-4dfc5762-d680-4c42-bf0c-ae7f662303c5, #wrap-s-4dfc5762-d680-4c42-bf0c-ae7f662303c5, #wrap-content-s-4dfc5762-d680-4c42-bf0c-ae7f662303c5 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-4dfc5762-d680-4c42-bf0c-ae7f662303c5 {
  display: none;
}
#s-4dfc5762-d680-4c42-bf0c-ae7f662303c5, #wrap-s-4dfc5762-d680-4c42-bf0c-ae7f662303c5, #wrap-content-s-4dfc5762-d680-4c42-bf0c-ae7f662303c5 { display: none !important; }}@media (max-width: 767px){#s-4dfc5762-d680-4c42-bf0c-ae7f662303c5 {
  display: none;
}
#s-4dfc5762-d680-4c42-bf0c-ae7f662303c5, #wrap-s-4dfc5762-d680-4c42-bf0c-ae7f662303c5, #wrap-content-s-4dfc5762-d680-4c42-bf0c-ae7f662303c5 { display: none !important; }}
@media (min-width: 0px) {
[id="s-4dfc5762-d680-4c42-bf0c-ae7f662303c5"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.5px);
}

}

@media (min-width: 768px) {
[id="s-4dfc5762-d680-4c42-bf0c-ae7f662303c5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.5px);
}

}

@media (min-width: 992px) {
[id="s-4dfc5762-d680-4c42-bf0c-ae7f662303c5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.5px);
}

}

@media (min-width: 1200px) {
[id="s-4dfc5762-d680-4c42-bf0c-ae7f662303c5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.5px);
}

}

#s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d {
  max-width: 418px;
aspect-ratio: 1/1;
text-align: center;
}

#s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d {
  margin: 0 !important;
  overflow: visible;
}

#s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d img.shogun-image {
  /* Add background color handling */
  
}

#s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 418px;
  }



  img.s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image {
    
    
    
    max-height: 418px;
  }


.s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d .shogun-image-content {
  
    justify-content: center;
  
}

.s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image {
  box-sizing: border-box;
}



.s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image-container {
      position: relative;
    }

    .s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 418px;
    }
  }

@media (min-width: 1200px){#s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d {
  margin: 0 !important;
  overflow: visible;
}

#s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d img.shogun-image {
  /* Add background color handling */
  
}

#s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 418px;
  }



  img.s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image {
    
    
    
    max-height: 418px;
  }


.s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d .shogun-image-content {
  
    justify-content: center;
  
}

.s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image {
  box-sizing: border-box;
}



.s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image-container {
      position: relative;
    }

    .s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 418px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d {
  margin: 0 !important;
  overflow: visible;
}

#s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d img.shogun-image {
  /* Add background color handling */
  
}

#s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 418px;
  }



  img.s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image {
    
    
    
    max-height: 418px;
  }


.s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d .shogun-image-content {
  
    justify-content: center;
  
}

.s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image {
  box-sizing: border-box;
}



.s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image-container {
      position: relative;
    }

    .s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 418px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d {
  margin: 0 !important;
  overflow: visible;
}

#s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d img.shogun-image {
  /* Add background color handling */
  
}

#s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 418px;
  }



  img.s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image {
    
    
    
    max-height: 418px;
  }


.s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d .shogun-image-content {
  
    justify-content: center;
  
}

.s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image {
  box-sizing: border-box;
}



.s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image-container {
      position: relative;
    }

    .s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 418px;
    }
  }

}@media (max-width: 767px){#s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d {
  margin: 0 !important;
  overflow: visible;
}

#s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d img.shogun-image {
  /* Add background color handling */
  
}

#s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 418px;
  }



  img.s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image {
    
    
    
    max-height: 418px;
  }


.s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d .shogun-image-content {
  
    justify-content: center;
  
}

.s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image {
  box-sizing: border-box;
}



.s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image-container {
      position: relative;
    }

    .s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d7e13f3e-48ab-4de4-ad75-d68b6d61416d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 418px;
    }
  }

}
#s-562f2ec3-e04b-4d83-bcf2-788c8c5e7f42 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-562f2ec3-e04b-4d83-bcf2-788c8c5e7f42 .shogun-heading-component h4 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-6cb271c1-381f-45a1-8827-d13feed0ef1f {
  max-width: 418px;
aspect-ratio: 1/1;
text-align: center;
}

#s-6cb271c1-381f-45a1-8827-d13feed0ef1f {
  margin: 0 !important;
  overflow: visible;
}

#s-6cb271c1-381f-45a1-8827-d13feed0ef1f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6cb271c1-381f-45a1-8827-d13feed0ef1f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6cb271c1-381f-45a1-8827-d13feed0ef1f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6cb271c1-381f-45a1-8827-d13feed0ef1f img.shogun-image {
  /* Add background color handling */
  
}

#s-6cb271c1-381f-45a1-8827-d13feed0ef1f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6cb271c1-381f-45a1-8827-d13feed0ef1f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6cb271c1-381f-45a1-8827-d13feed0ef1f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6cb271c1-381f-45a1-8827-d13feed0ef1f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6cb271c1-381f-45a1-8827-d13feed0ef1f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 418px;
  }



  img.s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image {
    
    
    
    max-height: 418px;
  }


.s-6cb271c1-381f-45a1-8827-d13feed0ef1f .shogun-image-content {
  
    justify-content: center;
  
}

.s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image {
  box-sizing: border-box;
}



.s-6cb271c1-381f-45a1-8827-d13feed0ef1f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6cb271c1-381f-45a1-8827-d13feed0ef1f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image-container {
      position: relative;
    }

    .s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6cb271c1-381f-45a1-8827-d13feed0ef1f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 418px;
    }
  }

@media (min-width: 1200px){#s-6cb271c1-381f-45a1-8827-d13feed0ef1f {
  margin: 0 !important;
  overflow: visible;
}

#s-6cb271c1-381f-45a1-8827-d13feed0ef1f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6cb271c1-381f-45a1-8827-d13feed0ef1f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6cb271c1-381f-45a1-8827-d13feed0ef1f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6cb271c1-381f-45a1-8827-d13feed0ef1f img.shogun-image {
  /* Add background color handling */
  
}

#s-6cb271c1-381f-45a1-8827-d13feed0ef1f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6cb271c1-381f-45a1-8827-d13feed0ef1f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6cb271c1-381f-45a1-8827-d13feed0ef1f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6cb271c1-381f-45a1-8827-d13feed0ef1f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6cb271c1-381f-45a1-8827-d13feed0ef1f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 418px;
  }



  img.s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image {
    
    
    
    max-height: 418px;
  }


.s-6cb271c1-381f-45a1-8827-d13feed0ef1f .shogun-image-content {
  
    justify-content: center;
  
}

.s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image {
  box-sizing: border-box;
}



.s-6cb271c1-381f-45a1-8827-d13feed0ef1f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6cb271c1-381f-45a1-8827-d13feed0ef1f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image-container {
      position: relative;
    }

    .s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6cb271c1-381f-45a1-8827-d13feed0ef1f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 418px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-6cb271c1-381f-45a1-8827-d13feed0ef1f {
  margin: 0 !important;
  overflow: visible;
}

#s-6cb271c1-381f-45a1-8827-d13feed0ef1f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6cb271c1-381f-45a1-8827-d13feed0ef1f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6cb271c1-381f-45a1-8827-d13feed0ef1f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6cb271c1-381f-45a1-8827-d13feed0ef1f img.shogun-image {
  /* Add background color handling */
  
}

#s-6cb271c1-381f-45a1-8827-d13feed0ef1f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6cb271c1-381f-45a1-8827-d13feed0ef1f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6cb271c1-381f-45a1-8827-d13feed0ef1f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6cb271c1-381f-45a1-8827-d13feed0ef1f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6cb271c1-381f-45a1-8827-d13feed0ef1f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 418px;
  }



  img.s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image {
    
    
    
    max-height: 418px;
  }


.s-6cb271c1-381f-45a1-8827-d13feed0ef1f .shogun-image-content {
  
    justify-content: center;
  
}

.s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image {
  box-sizing: border-box;
}



.s-6cb271c1-381f-45a1-8827-d13feed0ef1f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6cb271c1-381f-45a1-8827-d13feed0ef1f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image-container {
      position: relative;
    }

    .s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6cb271c1-381f-45a1-8827-d13feed0ef1f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 418px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-6cb271c1-381f-45a1-8827-d13feed0ef1f {
  margin: 0 !important;
  overflow: visible;
}

#s-6cb271c1-381f-45a1-8827-d13feed0ef1f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6cb271c1-381f-45a1-8827-d13feed0ef1f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6cb271c1-381f-45a1-8827-d13feed0ef1f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6cb271c1-381f-45a1-8827-d13feed0ef1f img.shogun-image {
  /* Add background color handling */
  
}

#s-6cb271c1-381f-45a1-8827-d13feed0ef1f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6cb271c1-381f-45a1-8827-d13feed0ef1f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6cb271c1-381f-45a1-8827-d13feed0ef1f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6cb271c1-381f-45a1-8827-d13feed0ef1f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6cb271c1-381f-45a1-8827-d13feed0ef1f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 418px;
  }



  img.s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image {
    
    
    
    max-height: 418px;
  }


.s-6cb271c1-381f-45a1-8827-d13feed0ef1f .shogun-image-content {
  
    justify-content: center;
  
}

.s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image {
  box-sizing: border-box;
}



.s-6cb271c1-381f-45a1-8827-d13feed0ef1f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6cb271c1-381f-45a1-8827-d13feed0ef1f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image-container {
      position: relative;
    }

    .s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6cb271c1-381f-45a1-8827-d13feed0ef1f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 418px;
    }
  }

}@media (max-width: 767px){#s-6cb271c1-381f-45a1-8827-d13feed0ef1f {
  margin: 0 !important;
  overflow: visible;
}

#s-6cb271c1-381f-45a1-8827-d13feed0ef1f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6cb271c1-381f-45a1-8827-d13feed0ef1f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6cb271c1-381f-45a1-8827-d13feed0ef1f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6cb271c1-381f-45a1-8827-d13feed0ef1f img.shogun-image {
  /* Add background color handling */
  
}

#s-6cb271c1-381f-45a1-8827-d13feed0ef1f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6cb271c1-381f-45a1-8827-d13feed0ef1f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6cb271c1-381f-45a1-8827-d13feed0ef1f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6cb271c1-381f-45a1-8827-d13feed0ef1f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6cb271c1-381f-45a1-8827-d13feed0ef1f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 418px;
  }



  img.s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image {
    
    
    
    max-height: 418px;
  }


.s-6cb271c1-381f-45a1-8827-d13feed0ef1f .shogun-image-content {
  
    justify-content: center;
  
}

.s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image {
  box-sizing: border-box;
}



.s-6cb271c1-381f-45a1-8827-d13feed0ef1f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6cb271c1-381f-45a1-8827-d13feed0ef1f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image-container {
      position: relative;
    }

    .s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6cb271c1-381f-45a1-8827-d13feed0ef1f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6cb271c1-381f-45a1-8827-d13feed0ef1f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 418px;
    }
  }

}
#s-44800bf6-e9a0-4686-a220-0f29829a9f67 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-44800bf6-e9a0-4686-a220-0f29829a9f67 .shogun-heading-component h4 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



@media (min-width: 1200px){#s-de9e2022-1d73-456b-88c2-7b5684a38591 {
  display: none;
}
#s-de9e2022-1d73-456b-88c2-7b5684a38591, #wrap-s-de9e2022-1d73-456b-88c2-7b5684a38591, #wrap-content-s-de9e2022-1d73-456b-88c2-7b5684a38591 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-de9e2022-1d73-456b-88c2-7b5684a38591 {
  display: none;
}
#s-de9e2022-1d73-456b-88c2-7b5684a38591, #wrap-s-de9e2022-1d73-456b-88c2-7b5684a38591, #wrap-content-s-de9e2022-1d73-456b-88c2-7b5684a38591 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-de9e2022-1d73-456b-88c2-7b5684a38591 {
  display: none;
}
#s-de9e2022-1d73-456b-88c2-7b5684a38591, #wrap-s-de9e2022-1d73-456b-88c2-7b5684a38591, #wrap-content-s-de9e2022-1d73-456b-88c2-7b5684a38591 { display: none !important; }}@media (max-width: 767px){#s-de9e2022-1d73-456b-88c2-7b5684a38591 {
  display: none;
}
#s-de9e2022-1d73-456b-88c2-7b5684a38591, #wrap-s-de9e2022-1d73-456b-88c2-7b5684a38591, #wrap-content-s-de9e2022-1d73-456b-88c2-7b5684a38591 { display: none !important; }}
@media (min-width: 0px) {
[id="s-de9e2022-1d73-456b-88c2-7b5684a38591"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-de9e2022-1d73-456b-88c2-7b5684a38591"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-de9e2022-1d73-456b-88c2-7b5684a38591"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-de9e2022-1d73-456b-88c2-7b5684a38591"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-83901e3e-e3ef-424a-93e8-997de7e31409 {
  max-width: 418px;
aspect-ratio: 1/1;
text-align: center;
}

#s-83901e3e-e3ef-424a-93e8-997de7e31409 {
  margin: 0 !important;
  overflow: visible;
}

#s-83901e3e-e3ef-424a-93e8-997de7e31409-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-83901e3e-e3ef-424a-93e8-997de7e31409 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-83901e3e-e3ef-424a-93e8-997de7e31409 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-83901e3e-e3ef-424a-93e8-997de7e31409 img.shogun-image {
  /* Add background color handling */
  
}

#s-83901e3e-e3ef-424a-93e8-997de7e31409 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-83901e3e-e3ef-424a-93e8-997de7e31409 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-83901e3e-e3ef-424a-93e8-997de7e31409 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-83901e3e-e3ef-424a-93e8-997de7e31409 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-83901e3e-e3ef-424a-93e8-997de7e31409 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 418px;
  }



  img.s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image {
    
    
    
    max-height: 418px;
  }


.s-83901e3e-e3ef-424a-93e8-997de7e31409 .shogun-image-content {
  
    justify-content: center;
  
}

.s-83901e3e-e3ef-424a-93e8-997de7e31409.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image {
  box-sizing: border-box;
}



.s-83901e3e-e3ef-424a-93e8-997de7e31409 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-83901e3e-e3ef-424a-93e8-997de7e31409 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image-container {
      position: relative;
    }

    .s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83901e3e-e3ef-424a-93e8-997de7e31409 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 418px;
    }
  }

@media (min-width: 1200px){#s-83901e3e-e3ef-424a-93e8-997de7e31409 {
  margin: 0 !important;
  overflow: visible;
}

#s-83901e3e-e3ef-424a-93e8-997de7e31409-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-83901e3e-e3ef-424a-93e8-997de7e31409 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-83901e3e-e3ef-424a-93e8-997de7e31409 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-83901e3e-e3ef-424a-93e8-997de7e31409 img.shogun-image {
  /* Add background color handling */
  
}

#s-83901e3e-e3ef-424a-93e8-997de7e31409 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-83901e3e-e3ef-424a-93e8-997de7e31409 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-83901e3e-e3ef-424a-93e8-997de7e31409 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-83901e3e-e3ef-424a-93e8-997de7e31409 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-83901e3e-e3ef-424a-93e8-997de7e31409 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 418px;
  }



  img.s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image {
    
    
    
    max-height: 418px;
  }


.s-83901e3e-e3ef-424a-93e8-997de7e31409 .shogun-image-content {
  
    justify-content: center;
  
}

.s-83901e3e-e3ef-424a-93e8-997de7e31409.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image {
  box-sizing: border-box;
}



.s-83901e3e-e3ef-424a-93e8-997de7e31409 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-83901e3e-e3ef-424a-93e8-997de7e31409 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image-container {
      position: relative;
    }

    .s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83901e3e-e3ef-424a-93e8-997de7e31409 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 418px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-83901e3e-e3ef-424a-93e8-997de7e31409 {
  margin: 0 !important;
  overflow: visible;
}

#s-83901e3e-e3ef-424a-93e8-997de7e31409-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-83901e3e-e3ef-424a-93e8-997de7e31409 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-83901e3e-e3ef-424a-93e8-997de7e31409 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-83901e3e-e3ef-424a-93e8-997de7e31409 img.shogun-image {
  /* Add background color handling */
  
}

#s-83901e3e-e3ef-424a-93e8-997de7e31409 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-83901e3e-e3ef-424a-93e8-997de7e31409 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-83901e3e-e3ef-424a-93e8-997de7e31409 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-83901e3e-e3ef-424a-93e8-997de7e31409 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-83901e3e-e3ef-424a-93e8-997de7e31409 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 418px;
  }



  img.s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image {
    
    
    
    max-height: 418px;
  }


.s-83901e3e-e3ef-424a-93e8-997de7e31409 .shogun-image-content {
  
    justify-content: center;
  
}

.s-83901e3e-e3ef-424a-93e8-997de7e31409.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image {
  box-sizing: border-box;
}



.s-83901e3e-e3ef-424a-93e8-997de7e31409 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-83901e3e-e3ef-424a-93e8-997de7e31409 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image-container {
      position: relative;
    }

    .s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83901e3e-e3ef-424a-93e8-997de7e31409 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 418px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-83901e3e-e3ef-424a-93e8-997de7e31409 {
  margin: 0 !important;
  overflow: visible;
}

#s-83901e3e-e3ef-424a-93e8-997de7e31409-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-83901e3e-e3ef-424a-93e8-997de7e31409 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-83901e3e-e3ef-424a-93e8-997de7e31409 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-83901e3e-e3ef-424a-93e8-997de7e31409 img.shogun-image {
  /* Add background color handling */
  
}

#s-83901e3e-e3ef-424a-93e8-997de7e31409 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-83901e3e-e3ef-424a-93e8-997de7e31409 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-83901e3e-e3ef-424a-93e8-997de7e31409 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-83901e3e-e3ef-424a-93e8-997de7e31409 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-83901e3e-e3ef-424a-93e8-997de7e31409 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 418px;
  }



  img.s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image {
    
    
    
    max-height: 418px;
  }


.s-83901e3e-e3ef-424a-93e8-997de7e31409 .shogun-image-content {
  
    justify-content: center;
  
}

.s-83901e3e-e3ef-424a-93e8-997de7e31409.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image {
  box-sizing: border-box;
}



.s-83901e3e-e3ef-424a-93e8-997de7e31409 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-83901e3e-e3ef-424a-93e8-997de7e31409 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image-container {
      position: relative;
    }

    .s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83901e3e-e3ef-424a-93e8-997de7e31409 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 418px;
    }
  }

}@media (max-width: 767px){#s-83901e3e-e3ef-424a-93e8-997de7e31409 {
  margin: 0 !important;
  overflow: visible;
}

#s-83901e3e-e3ef-424a-93e8-997de7e31409-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-83901e3e-e3ef-424a-93e8-997de7e31409 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-83901e3e-e3ef-424a-93e8-997de7e31409 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-83901e3e-e3ef-424a-93e8-997de7e31409 img.shogun-image {
  /* Add background color handling */
  
}

#s-83901e3e-e3ef-424a-93e8-997de7e31409 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-83901e3e-e3ef-424a-93e8-997de7e31409 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-83901e3e-e3ef-424a-93e8-997de7e31409 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-83901e3e-e3ef-424a-93e8-997de7e31409 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-83901e3e-e3ef-424a-93e8-997de7e31409 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 418px;
  }



  img.s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image {
    
    
    
    max-height: 418px;
  }


.s-83901e3e-e3ef-424a-93e8-997de7e31409 .shogun-image-content {
  
    justify-content: center;
  
}

.s-83901e3e-e3ef-424a-93e8-997de7e31409.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image {
  box-sizing: border-box;
}



.s-83901e3e-e3ef-424a-93e8-997de7e31409 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-83901e3e-e3ef-424a-93e8-997de7e31409 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image-container {
      position: relative;
    }

    .s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83901e3e-e3ef-424a-93e8-997de7e31409.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83901e3e-e3ef-424a-93e8-997de7e31409 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 418px;
    }
  }

}
#s-9955d25a-f739-4f8d-9aab-ebdaba0f3de5 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9955d25a-f739-4f8d-9aab-ebdaba0f3de5 .shogun-heading-component h4 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-341f84a4-03a5-4c26-9330-a55145b7876a {
  max-width: 417px;
aspect-ratio: 1/1;
text-align: center;
}

#s-341f84a4-03a5-4c26-9330-a55145b7876a {
  margin: 0 !important;
  overflow: visible;
}

#s-341f84a4-03a5-4c26-9330-a55145b7876a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-341f84a4-03a5-4c26-9330-a55145b7876a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-341f84a4-03a5-4c26-9330-a55145b7876a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-341f84a4-03a5-4c26-9330-a55145b7876a img.shogun-image {
  /* Add background color handling */
  
}

#s-341f84a4-03a5-4c26-9330-a55145b7876a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-341f84a4-03a5-4c26-9330-a55145b7876a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-341f84a4-03a5-4c26-9330-a55145b7876a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-341f84a4-03a5-4c26-9330-a55145b7876a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-341f84a4-03a5-4c26-9330-a55145b7876a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 417px;
  }



  img.s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image {
    
    
    
    max-height: 417px;
  }


.s-341f84a4-03a5-4c26-9330-a55145b7876a .shogun-image-content {
  
    justify-content: center;
  
}

.s-341f84a4-03a5-4c26-9330-a55145b7876a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image {
  box-sizing: border-box;
}



.s-341f84a4-03a5-4c26-9330-a55145b7876a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-341f84a4-03a5-4c26-9330-a55145b7876a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image-container {
      position: relative;
    }

    .s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-341f84a4-03a5-4c26-9330-a55145b7876a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 417px;
    }
  }

@media (min-width: 1200px){#s-341f84a4-03a5-4c26-9330-a55145b7876a {
  margin: 0 !important;
  overflow: visible;
}

#s-341f84a4-03a5-4c26-9330-a55145b7876a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-341f84a4-03a5-4c26-9330-a55145b7876a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-341f84a4-03a5-4c26-9330-a55145b7876a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-341f84a4-03a5-4c26-9330-a55145b7876a img.shogun-image {
  /* Add background color handling */
  
}

#s-341f84a4-03a5-4c26-9330-a55145b7876a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-341f84a4-03a5-4c26-9330-a55145b7876a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-341f84a4-03a5-4c26-9330-a55145b7876a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-341f84a4-03a5-4c26-9330-a55145b7876a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-341f84a4-03a5-4c26-9330-a55145b7876a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 417px;
  }



  img.s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image {
    
    
    
    max-height: 417px;
  }


.s-341f84a4-03a5-4c26-9330-a55145b7876a .shogun-image-content {
  
    justify-content: center;
  
}

.s-341f84a4-03a5-4c26-9330-a55145b7876a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image {
  box-sizing: border-box;
}



.s-341f84a4-03a5-4c26-9330-a55145b7876a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-341f84a4-03a5-4c26-9330-a55145b7876a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image-container {
      position: relative;
    }

    .s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-341f84a4-03a5-4c26-9330-a55145b7876a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 417px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-341f84a4-03a5-4c26-9330-a55145b7876a {
  margin: 0 !important;
  overflow: visible;
}

#s-341f84a4-03a5-4c26-9330-a55145b7876a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-341f84a4-03a5-4c26-9330-a55145b7876a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-341f84a4-03a5-4c26-9330-a55145b7876a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-341f84a4-03a5-4c26-9330-a55145b7876a img.shogun-image {
  /* Add background color handling */
  
}

#s-341f84a4-03a5-4c26-9330-a55145b7876a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-341f84a4-03a5-4c26-9330-a55145b7876a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-341f84a4-03a5-4c26-9330-a55145b7876a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-341f84a4-03a5-4c26-9330-a55145b7876a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-341f84a4-03a5-4c26-9330-a55145b7876a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 417px;
  }



  img.s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image {
    
    
    
    max-height: 417px;
  }


.s-341f84a4-03a5-4c26-9330-a55145b7876a .shogun-image-content {
  
    justify-content: center;
  
}

.s-341f84a4-03a5-4c26-9330-a55145b7876a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image {
  box-sizing: border-box;
}



.s-341f84a4-03a5-4c26-9330-a55145b7876a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-341f84a4-03a5-4c26-9330-a55145b7876a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image-container {
      position: relative;
    }

    .s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-341f84a4-03a5-4c26-9330-a55145b7876a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 417px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-341f84a4-03a5-4c26-9330-a55145b7876a {
  margin: 0 !important;
  overflow: visible;
}

#s-341f84a4-03a5-4c26-9330-a55145b7876a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-341f84a4-03a5-4c26-9330-a55145b7876a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-341f84a4-03a5-4c26-9330-a55145b7876a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-341f84a4-03a5-4c26-9330-a55145b7876a img.shogun-image {
  /* Add background color handling */
  
}

#s-341f84a4-03a5-4c26-9330-a55145b7876a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-341f84a4-03a5-4c26-9330-a55145b7876a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-341f84a4-03a5-4c26-9330-a55145b7876a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-341f84a4-03a5-4c26-9330-a55145b7876a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-341f84a4-03a5-4c26-9330-a55145b7876a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 417px;
  }



  img.s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image {
    
    
    
    max-height: 417px;
  }


.s-341f84a4-03a5-4c26-9330-a55145b7876a .shogun-image-content {
  
    justify-content: center;
  
}

.s-341f84a4-03a5-4c26-9330-a55145b7876a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image {
  box-sizing: border-box;
}



.s-341f84a4-03a5-4c26-9330-a55145b7876a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-341f84a4-03a5-4c26-9330-a55145b7876a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image-container {
      position: relative;
    }

    .s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-341f84a4-03a5-4c26-9330-a55145b7876a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 417px;
    }
  }

}@media (max-width: 767px){#s-341f84a4-03a5-4c26-9330-a55145b7876a {
  margin: 0 !important;
  overflow: visible;
}

#s-341f84a4-03a5-4c26-9330-a55145b7876a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-341f84a4-03a5-4c26-9330-a55145b7876a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-341f84a4-03a5-4c26-9330-a55145b7876a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-341f84a4-03a5-4c26-9330-a55145b7876a img.shogun-image {
  /* Add background color handling */
  
}

#s-341f84a4-03a5-4c26-9330-a55145b7876a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-341f84a4-03a5-4c26-9330-a55145b7876a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-341f84a4-03a5-4c26-9330-a55145b7876a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-341f84a4-03a5-4c26-9330-a55145b7876a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-341f84a4-03a5-4c26-9330-a55145b7876a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 417px;
  }



  img.s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image {
    
    
    
    max-height: 417px;
  }


.s-341f84a4-03a5-4c26-9330-a55145b7876a .shogun-image-content {
  
    justify-content: center;
  
}

.s-341f84a4-03a5-4c26-9330-a55145b7876a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image {
  box-sizing: border-box;
}



.s-341f84a4-03a5-4c26-9330-a55145b7876a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-341f84a4-03a5-4c26-9330-a55145b7876a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image-container {
      position: relative;
    }

    .s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-341f84a4-03a5-4c26-9330-a55145b7876a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-341f84a4-03a5-4c26-9330-a55145b7876a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 417px;
    }
  }

}
#s-9729dba8-90a8-4a81-a0a3-be2d8123ab3c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9729dba8-90a8-4a81-a0a3-be2d8123ab3c .shogun-heading-component h4 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-8b104f01-db22-4344-9133-e194de4028a1 {
  background-size: cover;
margin-top: 0%;
margin-bottom: 0%;
padding-top: 6%;
padding-bottom: 6%;
min-height: 50px;
background-color: rgba(11, 75, 152, 0.1);
background-position: right bottom;
}
@media (min-width: 1200px){#s-8b104f01-db22-4344-9133-e194de4028a1 {
  padding-top: 5%;
padding-bottom: 5%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-8b104f01-db22-4344-9133-e194de4028a1 {
  padding-top: 10%;
padding-bottom: 10%;
}
}@media (max-width: 767px){#s-8b104f01-db22-4344-9133-e194de4028a1 {
  padding-top: 15%;
padding-bottom: 15%;
display: none;
}
#s-8b104f01-db22-4344-9133-e194de4028a1, #wrap-s-8b104f01-db22-4344-9133-e194de4028a1, #wrap-content-s-8b104f01-db22-4344-9133-e194de4028a1 { display: none !important; }}







#s-8b104f01-db22-4344-9133-e194de4028a1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8b104f01-db22-4344-9133-e194de4028a1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7b8d90fc-3f7a-46e9-9c49-e4f12703116a {
  margin-top: 0%;
margin-left: auto;
margin-bottom: 0%;
margin-right: auto;
padding-top: 0%;
padding-left: 0px;
padding-bottom: 0.5em;
padding-right: 0px;
text-align: center;
}

#s-7b8d90fc-3f7a-46e9-9c49-e4f12703116a .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.5em;
  line-height: 1em;
  
  text-align: center;
}



#s-a1626dbc-4e08-41af-8128-08ecac1334a4 {
  margin-left: auto;
margin-bottom: 1%;
margin-right: auto;
padding-left: 0px;
padding-right: 0px;
max-width: 80%;
}

#s-b32006bd-d7d1-4827-b38e-79e71adfe907 {
  margin-top: auto;
margin-left: auto;
margin-right: auto;
max-width: 85%;
}
@media (min-width: 1200px){#s-b32006bd-d7d1-4827-b38e-79e71adfe907 {
  max-width: 60%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b32006bd-d7d1-4827-b38e-79e71adfe907 {
  max-width: 80%;
}
}
@media (min-width: 0px) {
[id="s-b32006bd-d7d1-4827-b38e-79e71adfe907"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-b32006bd-d7d1-4827-b38e-79e71adfe907"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-b32006bd-d7d1-4827-b38e-79e71adfe907"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-b32006bd-d7d1-4827-b38e-79e71adfe907"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-aabc9e03-bca9-4716-9165-2621ca680f88 {
  margin-top: 0%;
margin-left: auto;
margin-bottom: 0%;
min-height: 50px;
background-color: rgba(245, 245, 245, 0);
}








#s-aabc9e03-bca9-4716-9165-2621ca680f88 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-aabc9e03-bca9-4716-9165-2621ca680f88.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c {
  max-width: 90%;
aspect-ratio: 1990/1453;
text-align: center;
}

#s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c {
  margin: 0 !important;
  overflow: visible;
}

#s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c img.shogun-image {
  /* Add background color handling */
  
}

#s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c .shg-image-content-wrapper {
      aspect-ratio: 1990/1453;
      min-width: 100%;
      height: auto;
    }

    #s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c .shogun-image-link {
      aspect-ratio: 1990/1453;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 90%;
  }



  img.s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image {
    
    
    
    max-height: 90%;
  }


.s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c .shogun-image-content {
  
    justify-content: center;
  
}

.s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image {
  box-sizing: border-box;
}



.s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c {
      --shg-aspect-ratio: calc(1990/1453); 
    }

    .s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image-container {
      position: relative;
    }

    .s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 90%;
    }
  }

@media (min-width: 1200px){#s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c {
  margin: 0 !important;
  overflow: visible;
}

#s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c img.shogun-image {
  /* Add background color handling */
  
}

#s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c .shg-image-content-wrapper {
      aspect-ratio: 1990/1453;
      min-width: 100%;
      height: auto;
    }

    #s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c .shogun-image-link {
      aspect-ratio: 1990/1453;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 90%;
  }



  img.s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image {
    
    
    
    max-height: 90%;
  }


.s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c .shogun-image-content {
  
    justify-content: center;
  
}

.s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image {
  box-sizing: border-box;
}



.s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c {
      --shg-aspect-ratio: calc(1990/1453); 
    }

    .s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image-container {
      position: relative;
    }

    .s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 90%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c {
  margin: 0 !important;
  overflow: visible;
}

#s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c img.shogun-image {
  /* Add background color handling */
  
}

#s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c .shg-image-content-wrapper {
      aspect-ratio: 1990/1453;
      min-width: 100%;
      height: auto;
    }

    #s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c .shogun-image-link {
      aspect-ratio: 1990/1453;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 90%;
  }



  img.s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image {
    
    
    
    max-height: 90%;
  }


.s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c .shogun-image-content {
  
    justify-content: center;
  
}

.s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image {
  box-sizing: border-box;
}



.s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c {
      --shg-aspect-ratio: calc(1990/1453); 
    }

    .s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image-container {
      position: relative;
    }

    .s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 90%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c {
  margin: 0 !important;
  overflow: visible;
}

#s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c img.shogun-image {
  /* Add background color handling */
  
}

#s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c .shg-image-content-wrapper {
      aspect-ratio: 1990/1453;
      min-width: 100%;
      height: auto;
    }

    #s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c .shogun-image-link {
      aspect-ratio: 1990/1453;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 90%;
  }



  img.s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image {
    
    
    
    max-height: 90%;
  }


.s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c .shogun-image-content {
  
    justify-content: center;
  
}

.s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image {
  box-sizing: border-box;
}



.s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c {
      --shg-aspect-ratio: calc(1990/1453); 
    }

    .s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image-container {
      position: relative;
    }

    .s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 90%;
    }
  }

}@media (max-width: 767px){#s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c {
  margin: 0 !important;
  overflow: visible;
}

#s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c img.shogun-image {
  /* Add background color handling */
  
}

#s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c .shg-image-content-wrapper {
      aspect-ratio: 1990/1453;
      min-width: 100%;
      height: auto;
    }

    #s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c .shogun-image-link {
      aspect-ratio: 1990/1453;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 90%;
  }



  img.s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image {
    
    
    
    max-height: 90%;
  }


.s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c .shogun-image-content {
  
    justify-content: center;
  
}

.s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image {
  box-sizing: border-box;
}



.s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c {
      --shg-aspect-ratio: calc(1990/1453); 
    }

    .s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image-container {
      position: relative;
    }

    .s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d2f16a3-a294-4a85-8c6b-1089c339ba1c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 90%;
    }
  }

}
#s-1eead63d-0fee-4fd9-8a07-67d07678ea04 {
  margin-top: 5%;
margin-left: auto;
margin-bottom: 0.5em;
margin-right: auto;
max-width: 100%;
text-align: left;
}

#s-1eead63d-0fee-4fd9-8a07-67d07678ea04 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.2em;
  line-height: 1em;
  
  text-align: center;
}



#s-8574dcab-6682-42ca-bd30-ab71b2c245e7 {
  margin-top: 0%;
margin-left: auto;
margin-bottom: 2%;
margin-right: auto;
max-width: 90%;
}

#s-da0d9266-c1b7-4328-8faa-30411e82ce72 {
  border-style: solid;
padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(11, 75, 152, 1);
border-radius: 38px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
line-height: 1.5em;
color: rgba(11, 75, 152, 1);
}
#s-da0d9266-c1b7-4328-8faa-30411e82ce72:hover {background-color: rgba(11, 75, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-da0d9266-c1b7-4328-8faa-30411e82ce72:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-da0d9266-c1b7-4328-8faa-30411e82ce72-root {
    text-align: center;
  }


#s-da0d9266-c1b7-4328-8faa-30411e82ce72.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-da0d9266-c1b7-4328-8faa-30411e82ce72-root {
    text-align: center;
  }


#s-da0d9266-c1b7-4328-8faa-30411e82ce72.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-da0d9266-c1b7-4328-8faa-30411e82ce72-root {
    text-align: center;
  }


#s-da0d9266-c1b7-4328-8faa-30411e82ce72.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-da0d9266-c1b7-4328-8faa-30411e82ce72-root {
    text-align: center;
  }


#s-da0d9266-c1b7-4328-8faa-30411e82ce72.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-da0d9266-c1b7-4328-8faa-30411e82ce72-root {
    text-align: center;
  }


#s-da0d9266-c1b7-4328-8faa-30411e82ce72.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}
#s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 {
  max-width: 90%;
aspect-ratio: 3980/2905;
text-align: center;
}

#s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 {
  margin: 0 !important;
  overflow: visible;
}

#s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 img.shogun-image {
  /* Add background color handling */
  
}

#s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 .shg-image-content-wrapper {
      aspect-ratio: 3980/2905;
      min-width: 100%;
      height: auto;
    }

    #s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 .shogun-image-link {
      aspect-ratio: 3980/2905;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 90%;
  }



  img.s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image {
    
    
    
    max-height: 90%;
  }


.s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image {
  box-sizing: border-box;
}



.s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 {
      --shg-aspect-ratio: calc(3980/2905); 
    }

    .s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image-container {
      position: relative;
    }

    .s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 90%;
    }
  }

@media (min-width: 1200px){#s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 {
  margin: 0 !important;
  overflow: visible;
}

#s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 img.shogun-image {
  /* Add background color handling */
  
}

#s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 .shg-image-content-wrapper {
      aspect-ratio: 3980/2905;
      min-width: 100%;
      height: auto;
    }

    #s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 .shogun-image-link {
      aspect-ratio: 3980/2905;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 90%;
  }



  img.s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image {
    
    
    
    max-height: 90%;
  }


.s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image {
  box-sizing: border-box;
}



.s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 {
      --shg-aspect-ratio: calc(3980/2905); 
    }

    .s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image-container {
      position: relative;
    }

    .s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 90%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 {
  margin: 0 !important;
  overflow: visible;
}

#s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 img.shogun-image {
  /* Add background color handling */
  
}

#s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 .shg-image-content-wrapper {
      aspect-ratio: 3980/2905;
      min-width: 100%;
      height: auto;
    }

    #s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 .shogun-image-link {
      aspect-ratio: 3980/2905;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 90%;
  }



  img.s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image {
    
    
    
    max-height: 90%;
  }


.s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image {
  box-sizing: border-box;
}



.s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 {
      --shg-aspect-ratio: calc(3980/2905); 
    }

    .s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image-container {
      position: relative;
    }

    .s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 90%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 {
  margin: 0 !important;
  overflow: visible;
}

#s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 img.shogun-image {
  /* Add background color handling */
  
}

#s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 .shg-image-content-wrapper {
      aspect-ratio: 3980/2905;
      min-width: 100%;
      height: auto;
    }

    #s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 .shogun-image-link {
      aspect-ratio: 3980/2905;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 90%;
  }



  img.s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image {
    
    
    
    max-height: 90%;
  }


.s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image {
  box-sizing: border-box;
}



.s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 {
      --shg-aspect-ratio: calc(3980/2905); 
    }

    .s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image-container {
      position: relative;
    }

    .s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 90%;
    }
  }

}@media (max-width: 767px){#s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 {
  margin: 0 !important;
  overflow: visible;
}

#s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 img.shogun-image {
  /* Add background color handling */
  
}

#s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 .shg-image-content-wrapper {
      aspect-ratio: 3980/2905;
      min-width: 100%;
      height: auto;
    }

    #s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 .shogun-image-link {
      aspect-ratio: 3980/2905;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 90%;
  }



  img.s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image {
    
    
    
    max-height: 90%;
  }


.s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image {
  box-sizing: border-box;
}



.s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 {
      --shg-aspect-ratio: calc(3980/2905); 
    }

    .s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image-container {
      position: relative;
    }

    .s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5cffc146-fadf-4e39-8639-a5cb4e2ed0d6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 90%;
    }
  }

}
#s-bd747f28-a04d-4769-aeb7-189a9ef76606 {
  margin-top: 0%;
margin-left: auto;
margin-bottom: 0%;
min-height: 50px;
background-color: rgba(245, 245, 245, 0);
}








#s-bd747f28-a04d-4769-aeb7-189a9ef76606 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bd747f28-a04d-4769-aeb7-189a9ef76606.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-d8cb4fed-4f43-4ce1-a009-cc692b2baedd {
  margin-top: 5%;
margin-left: auto;
margin-bottom: 0.5em;
margin-right: auto;
max-width: 100%;
text-align: left;
}

#s-d8cb4fed-4f43-4ce1-a009-cc692b2baedd .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.2em;
  line-height: 1em;
  
  text-align: center;
}



#s-d628c0c8-bd93-4950-8497-dbe36156948f {
  margin-left: auto;
margin-bottom: 2%;
margin-right: auto;
max-width: 90%;
}

#s-79a7a376-7776-4cf0-80c8-817748f1d2ad {
  border-style: solid;
margin-top: 0px;
margin-bottom: auto;
padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(11, 75, 152, 1);
border-radius: 38px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
line-height: 1.5em;
color: rgba(11, 75, 152, 1);
}
#s-79a7a376-7776-4cf0-80c8-817748f1d2ad:hover {background-color: rgba(11, 75, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-79a7a376-7776-4cf0-80c8-817748f1d2ad:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-79a7a376-7776-4cf0-80c8-817748f1d2ad-root {
    text-align: center;
  }


#s-79a7a376-7776-4cf0-80c8-817748f1d2ad.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-79a7a376-7776-4cf0-80c8-817748f1d2ad-root {
    text-align: center;
  }


#s-79a7a376-7776-4cf0-80c8-817748f1d2ad.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-79a7a376-7776-4cf0-80c8-817748f1d2ad-root {
    text-align: center;
  }


#s-79a7a376-7776-4cf0-80c8-817748f1d2ad.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-79a7a376-7776-4cf0-80c8-817748f1d2ad-root {
    text-align: center;
  }


#s-79a7a376-7776-4cf0-80c8-817748f1d2ad.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-79a7a376-7776-4cf0-80c8-817748f1d2ad-root {
    text-align: center;
  }


#s-79a7a376-7776-4cf0-80c8-817748f1d2ad.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}
#s-1399bde4-6aa1-4260-9d2b-99d2b43f40be {
  max-width: 90%;
text-align: center;
}

#s-1399bde4-6aa1-4260-9d2b-99d2b43f40be {
  margin: 0 !important;
  overflow: visible;
}

#s-1399bde4-6aa1-4260-9d2b-99d2b43f40be-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1399bde4-6aa1-4260-9d2b-99d2b43f40be {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1399bde4-6aa1-4260-9d2b-99d2b43f40be {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1399bde4-6aa1-4260-9d2b-99d2b43f40be img.shogun-image {
  /* Add background color handling */
  
}

#s-1399bde4-6aa1-4260-9d2b-99d2b43f40be img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-1399bde4-6aa1-4260-9d2b-99d2b43f40be .shogun-image-content {
  
    justify-content: center;
  
}

.s-1399bde4-6aa1-4260-9d2b-99d2b43f40be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1399bde4-6aa1-4260-9d2b-99d2b43f40be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1399bde4-6aa1-4260-9d2b-99d2b43f40be.shogun-image {
  box-sizing: border-box;
}



.s-1399bde4-6aa1-4260-9d2b-99d2b43f40be img.shogun-image {
  
}


@media (min-width: 1200px){#s-1399bde4-6aa1-4260-9d2b-99d2b43f40be {
  margin: 0 !important;
  overflow: visible;
}

#s-1399bde4-6aa1-4260-9d2b-99d2b43f40be-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1399bde4-6aa1-4260-9d2b-99d2b43f40be {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1399bde4-6aa1-4260-9d2b-99d2b43f40be {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1399bde4-6aa1-4260-9d2b-99d2b43f40be img.shogun-image {
  /* Add background color handling */
  
}

#s-1399bde4-6aa1-4260-9d2b-99d2b43f40be img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-1399bde4-6aa1-4260-9d2b-99d2b43f40be .shogun-image-content {
  
    justify-content: center;
  
}

.s-1399bde4-6aa1-4260-9d2b-99d2b43f40be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1399bde4-6aa1-4260-9d2b-99d2b43f40be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1399bde4-6aa1-4260-9d2b-99d2b43f40be.shogun-image {
  box-sizing: border-box;
}



.s-1399bde4-6aa1-4260-9d2b-99d2b43f40be img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-1399bde4-6aa1-4260-9d2b-99d2b43f40be {
  margin: 0 !important;
  overflow: visible;
}

#s-1399bde4-6aa1-4260-9d2b-99d2b43f40be-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1399bde4-6aa1-4260-9d2b-99d2b43f40be {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1399bde4-6aa1-4260-9d2b-99d2b43f40be {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1399bde4-6aa1-4260-9d2b-99d2b43f40be img.shogun-image {
  /* Add background color handling */
  
}

#s-1399bde4-6aa1-4260-9d2b-99d2b43f40be img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-1399bde4-6aa1-4260-9d2b-99d2b43f40be .shogun-image-content {
  
    justify-content: center;
  
}

.s-1399bde4-6aa1-4260-9d2b-99d2b43f40be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1399bde4-6aa1-4260-9d2b-99d2b43f40be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1399bde4-6aa1-4260-9d2b-99d2b43f40be.shogun-image {
  box-sizing: border-box;
}



.s-1399bde4-6aa1-4260-9d2b-99d2b43f40be img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-1399bde4-6aa1-4260-9d2b-99d2b43f40be {
  margin: 0 !important;
  overflow: visible;
}

#s-1399bde4-6aa1-4260-9d2b-99d2b43f40be-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1399bde4-6aa1-4260-9d2b-99d2b43f40be {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1399bde4-6aa1-4260-9d2b-99d2b43f40be {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1399bde4-6aa1-4260-9d2b-99d2b43f40be img.shogun-image {
  /* Add background color handling */
  
}

#s-1399bde4-6aa1-4260-9d2b-99d2b43f40be img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-1399bde4-6aa1-4260-9d2b-99d2b43f40be .shogun-image-content {
  
    justify-content: center;
  
}

.s-1399bde4-6aa1-4260-9d2b-99d2b43f40be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1399bde4-6aa1-4260-9d2b-99d2b43f40be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1399bde4-6aa1-4260-9d2b-99d2b43f40be.shogun-image {
  box-sizing: border-box;
}



.s-1399bde4-6aa1-4260-9d2b-99d2b43f40be img.shogun-image {
  
}


}@media (max-width: 767px){#s-1399bde4-6aa1-4260-9d2b-99d2b43f40be {
  margin: 0 !important;
  overflow: visible;
}

#s-1399bde4-6aa1-4260-9d2b-99d2b43f40be-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1399bde4-6aa1-4260-9d2b-99d2b43f40be {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1399bde4-6aa1-4260-9d2b-99d2b43f40be {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1399bde4-6aa1-4260-9d2b-99d2b43f40be img.shogun-image {
  /* Add background color handling */
  
}

#s-1399bde4-6aa1-4260-9d2b-99d2b43f40be img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-1399bde4-6aa1-4260-9d2b-99d2b43f40be .shogun-image-content {
  
    justify-content: center;
  
}

.s-1399bde4-6aa1-4260-9d2b-99d2b43f40be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1399bde4-6aa1-4260-9d2b-99d2b43f40be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1399bde4-6aa1-4260-9d2b-99d2b43f40be.shogun-image {
  box-sizing: border-box;
}



.s-1399bde4-6aa1-4260-9d2b-99d2b43f40be img.shogun-image {
  
}


}
#s-d163598d-7e3a-4db7-b066-71dacab9d525 {
  margin-top: 5%;
margin-left: auto;
margin-bottom: 0.5em;
margin-right: auto;
max-width: 100%;
text-align: left;
}

#s-d163598d-7e3a-4db7-b066-71dacab9d525 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.2em;
  line-height: 1em;
  
  text-align: center;
}



#s-d27c7d1f-57f2-47f4-a905-bcd7b54ac101 {
  margin-left: auto;
margin-bottom: 2%;
margin-right: auto;
max-width: 90%;
}

#s-05e4a96d-398c-4afd-9949-26ae1ddd169c {
  border-style: solid;
margin-top: 0px;
margin-bottom: auto;
padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(11, 75, 152, 1);
border-radius: 38px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
line-height: 1.5em;
color: rgba(11, 75, 152, 1);
}
#s-05e4a96d-398c-4afd-9949-26ae1ddd169c:hover {background-color: rgba(11, 75, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-05e4a96d-398c-4afd-9949-26ae1ddd169c:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-05e4a96d-398c-4afd-9949-26ae1ddd169c-root {
    text-align: center;
  }


#s-05e4a96d-398c-4afd-9949-26ae1ddd169c.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-05e4a96d-398c-4afd-9949-26ae1ddd169c-root {
    text-align: center;
  }


#s-05e4a96d-398c-4afd-9949-26ae1ddd169c.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-05e4a96d-398c-4afd-9949-26ae1ddd169c-root {
    text-align: center;
  }


#s-05e4a96d-398c-4afd-9949-26ae1ddd169c.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-05e4a96d-398c-4afd-9949-26ae1ddd169c-root {
    text-align: center;
  }


#s-05e4a96d-398c-4afd-9949-26ae1ddd169c.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-05e4a96d-398c-4afd-9949-26ae1ddd169c-root {
    text-align: center;
  }


#s-05e4a96d-398c-4afd-9949-26ae1ddd169c.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.1em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}
#s-f1f2bad3-11e2-448e-89a5-ddc2a7dedc4e {
  margin-top: 0%;
margin-left: auto;
margin-bottom: 0%;
padding-top: 15%;
padding-bottom: 15%;
min-height: 50px;
background-color: rgba(11, 75, 152, 0.1);
}
@media (min-width: 1200px){#s-f1f2bad3-11e2-448e-89a5-ddc2a7dedc4e {
  display: none;
}
#s-f1f2bad3-11e2-448e-89a5-ddc2a7dedc4e, #wrap-s-f1f2bad3-11e2-448e-89a5-ddc2a7dedc4e, #wrap-content-s-f1f2bad3-11e2-448e-89a5-ddc2a7dedc4e { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f1f2bad3-11e2-448e-89a5-ddc2a7dedc4e {
  display: none;
}
#s-f1f2bad3-11e2-448e-89a5-ddc2a7dedc4e, #wrap-s-f1f2bad3-11e2-448e-89a5-ddc2a7dedc4e, #wrap-content-s-f1f2bad3-11e2-448e-89a5-ddc2a7dedc4e { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f1f2bad3-11e2-448e-89a5-ddc2a7dedc4e {
  display: none;
}
#s-f1f2bad3-11e2-448e-89a5-ddc2a7dedc4e, #wrap-s-f1f2bad3-11e2-448e-89a5-ddc2a7dedc4e, #wrap-content-s-f1f2bad3-11e2-448e-89a5-ddc2a7dedc4e { display: none !important; }}







#s-f1f2bad3-11e2-448e-89a5-ddc2a7dedc4e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f1f2bad3-11e2-448e-89a5-ddc2a7dedc4e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-49fc6f4b-0387-4406-9a59-8db6ab763545 {
  margin-left: auto;
margin-right: auto;
padding-top: 0em;
padding-left: 0%;
padding-bottom: 0.5em;
padding-right: 0%;
max-width: 90%;
text-align: left;
}

#s-49fc6f4b-0387-4406-9a59-8db6ab763545 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.6em;
  line-height: 1em;
  
  text-align: center;
}



#s-9c907b10-a9d8-43e2-a054-f5fa8cfa5b95 {
  margin-top: 0%;
margin-left: auto;
margin-bottom: 0%;
margin-right: auto;
padding-bottom: 4%;
max-width: 90%;
}

#s-8184088c-de19-4cf1-a142-d1c2d78440f1 {
  max-width: 90%;
aspect-ratio: 2250/1623;
text-align: center;
}

#s-8184088c-de19-4cf1-a142-d1c2d78440f1 {
  margin: 0 !important;
  overflow: visible;
}

#s-8184088c-de19-4cf1-a142-d1c2d78440f1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8184088c-de19-4cf1-a142-d1c2d78440f1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8184088c-de19-4cf1-a142-d1c2d78440f1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8184088c-de19-4cf1-a142-d1c2d78440f1 img.shogun-image {
  /* Add background color handling */
  
}

#s-8184088c-de19-4cf1-a142-d1c2d78440f1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8184088c-de19-4cf1-a142-d1c2d78440f1 .shg-image-content-wrapper {
      aspect-ratio: 2250/1623;
      min-width: 100%;
      height: auto;
    }

    #s-8184088c-de19-4cf1-a142-d1c2d78440f1 .shogun-image-link {
      aspect-ratio: 2250/1623;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8184088c-de19-4cf1-a142-d1c2d78440f1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8184088c-de19-4cf1-a142-d1c2d78440f1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 90%;
  }



  img.s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image {
    
    
    
    max-height: 90%;
  }


.s-8184088c-de19-4cf1-a142-d1c2d78440f1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8184088c-de19-4cf1-a142-d1c2d78440f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image {
  box-sizing: border-box;
}



.s-8184088c-de19-4cf1-a142-d1c2d78440f1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8184088c-de19-4cf1-a142-d1c2d78440f1 {
      --shg-aspect-ratio: calc(2250/1623); 
    }

    .s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image-container {
      position: relative;
    }

    .s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8184088c-de19-4cf1-a142-d1c2d78440f1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 90%;
    }
  }

@media (min-width: 1200px){#s-8184088c-de19-4cf1-a142-d1c2d78440f1 {
  margin: 0 !important;
  overflow: visible;
}

#s-8184088c-de19-4cf1-a142-d1c2d78440f1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8184088c-de19-4cf1-a142-d1c2d78440f1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8184088c-de19-4cf1-a142-d1c2d78440f1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8184088c-de19-4cf1-a142-d1c2d78440f1 img.shogun-image {
  /* Add background color handling */
  
}

#s-8184088c-de19-4cf1-a142-d1c2d78440f1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8184088c-de19-4cf1-a142-d1c2d78440f1 .shg-image-content-wrapper {
      aspect-ratio: 2250/1623;
      min-width: 100%;
      height: auto;
    }

    #s-8184088c-de19-4cf1-a142-d1c2d78440f1 .shogun-image-link {
      aspect-ratio: 2250/1623;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8184088c-de19-4cf1-a142-d1c2d78440f1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8184088c-de19-4cf1-a142-d1c2d78440f1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 90%;
  }



  img.s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image {
    
    
    
    max-height: 90%;
  }


.s-8184088c-de19-4cf1-a142-d1c2d78440f1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8184088c-de19-4cf1-a142-d1c2d78440f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image {
  box-sizing: border-box;
}



.s-8184088c-de19-4cf1-a142-d1c2d78440f1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8184088c-de19-4cf1-a142-d1c2d78440f1 {
      --shg-aspect-ratio: calc(2250/1623); 
    }

    .s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image-container {
      position: relative;
    }

    .s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8184088c-de19-4cf1-a142-d1c2d78440f1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 90%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-8184088c-de19-4cf1-a142-d1c2d78440f1 {
  margin: 0 !important;
  overflow: visible;
}

#s-8184088c-de19-4cf1-a142-d1c2d78440f1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8184088c-de19-4cf1-a142-d1c2d78440f1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8184088c-de19-4cf1-a142-d1c2d78440f1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8184088c-de19-4cf1-a142-d1c2d78440f1 img.shogun-image {
  /* Add background color handling */
  
}

#s-8184088c-de19-4cf1-a142-d1c2d78440f1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8184088c-de19-4cf1-a142-d1c2d78440f1 .shg-image-content-wrapper {
      aspect-ratio: 2250/1623;
      min-width: 100%;
      height: auto;
    }

    #s-8184088c-de19-4cf1-a142-d1c2d78440f1 .shogun-image-link {
      aspect-ratio: 2250/1623;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8184088c-de19-4cf1-a142-d1c2d78440f1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8184088c-de19-4cf1-a142-d1c2d78440f1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 90%;
  }



  img.s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image {
    
    
    
    max-height: 90%;
  }


.s-8184088c-de19-4cf1-a142-d1c2d78440f1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8184088c-de19-4cf1-a142-d1c2d78440f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image {
  box-sizing: border-box;
}



.s-8184088c-de19-4cf1-a142-d1c2d78440f1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8184088c-de19-4cf1-a142-d1c2d78440f1 {
      --shg-aspect-ratio: calc(2250/1623); 
    }

    .s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image-container {
      position: relative;
    }

    .s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8184088c-de19-4cf1-a142-d1c2d78440f1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 90%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-8184088c-de19-4cf1-a142-d1c2d78440f1 {
  margin: 0 !important;
  overflow: visible;
}

#s-8184088c-de19-4cf1-a142-d1c2d78440f1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8184088c-de19-4cf1-a142-d1c2d78440f1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8184088c-de19-4cf1-a142-d1c2d78440f1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8184088c-de19-4cf1-a142-d1c2d78440f1 img.shogun-image {
  /* Add background color handling */
  
}

#s-8184088c-de19-4cf1-a142-d1c2d78440f1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8184088c-de19-4cf1-a142-d1c2d78440f1 .shg-image-content-wrapper {
      aspect-ratio: 2250/1623;
      min-width: 100%;
      height: auto;
    }

    #s-8184088c-de19-4cf1-a142-d1c2d78440f1 .shogun-image-link {
      aspect-ratio: 2250/1623;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8184088c-de19-4cf1-a142-d1c2d78440f1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8184088c-de19-4cf1-a142-d1c2d78440f1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 90%;
  }



  img.s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image {
    
    
    
    max-height: 90%;
  }


.s-8184088c-de19-4cf1-a142-d1c2d78440f1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8184088c-de19-4cf1-a142-d1c2d78440f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image {
  box-sizing: border-box;
}



.s-8184088c-de19-4cf1-a142-d1c2d78440f1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8184088c-de19-4cf1-a142-d1c2d78440f1 {
      --shg-aspect-ratio: calc(2250/1623); 
    }

    .s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image-container {
      position: relative;
    }

    .s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8184088c-de19-4cf1-a142-d1c2d78440f1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 90%;
    }
  }

}@media (max-width: 767px){#s-8184088c-de19-4cf1-a142-d1c2d78440f1 {
  margin: 0 !important;
  overflow: visible;
}

#s-8184088c-de19-4cf1-a142-d1c2d78440f1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8184088c-de19-4cf1-a142-d1c2d78440f1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8184088c-de19-4cf1-a142-d1c2d78440f1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8184088c-de19-4cf1-a142-d1c2d78440f1 img.shogun-image {
  /* Add background color handling */
  
}

#s-8184088c-de19-4cf1-a142-d1c2d78440f1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8184088c-de19-4cf1-a142-d1c2d78440f1 .shg-image-content-wrapper {
      aspect-ratio: 2250/1623;
      min-width: 100%;
      height: auto;
    }

    #s-8184088c-de19-4cf1-a142-d1c2d78440f1 .shogun-image-link {
      aspect-ratio: 2250/1623;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8184088c-de19-4cf1-a142-d1c2d78440f1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8184088c-de19-4cf1-a142-d1c2d78440f1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 90%;
  }



  img.s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image {
    
    
    
    max-height: 90%;
  }


.s-8184088c-de19-4cf1-a142-d1c2d78440f1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8184088c-de19-4cf1-a142-d1c2d78440f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image {
  box-sizing: border-box;
}



.s-8184088c-de19-4cf1-a142-d1c2d78440f1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8184088c-de19-4cf1-a142-d1c2d78440f1 {
      --shg-aspect-ratio: calc(2250/1623); 
    }

    .s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image-container {
      position: relative;
    }

    .s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8184088c-de19-4cf1-a142-d1c2d78440f1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8184088c-de19-4cf1-a142-d1c2d78440f1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 90%;
    }
  }

}
#s-25ea495d-05bc-48f8-a2d4-8e406d09b8a2 {
  margin-top: 5%;
margin-left: auto;
margin-bottom: 0.5em;
margin-right: auto;
max-width: 90%;
text-align: left;
}

#s-25ea495d-05bc-48f8-a2d4-8e406d09b8a2 .shogun-heading-component h3 {
  color: ;
  font-weight:  normal ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.5em;
  line-height: 1em;
  
  text-align: center;
}



#s-7c729df1-6257-46a7-a59c-97bf4f1082bc {
  margin-top: 0%;
margin-left: auto;
margin-bottom: 0%;
margin-right: auto;
padding-bottom: 3%;
max-width: 90%;
}

#s-062381d0-a38c-4e6c-bdcb-64cf980cb19b {
  border-style: solid;
padding-top: 10px;
padding-left: 25%;
padding-bottom: 10px;
padding-right: 25%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(11, 75, 152, 1);
border-radius: 38px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
line-height: 1em;
color: rgba(11, 75, 152, 1);
}
#s-062381d0-a38c-4e6c-bdcb-64cf980cb19b:hover {background-color: rgba(11, 75, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-062381d0-a38c-4e6c-bdcb-64cf980cb19b:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-062381d0-a38c-4e6c-bdcb-64cf980cb19b-root {
    text-align: center;
  }


#s-062381d0-a38c-4e6c-bdcb-64cf980cb19b.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.2em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-062381d0-a38c-4e6c-bdcb-64cf980cb19b-root {
    text-align: center;
  }


#s-062381d0-a38c-4e6c-bdcb-64cf980cb19b.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.2em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-062381d0-a38c-4e6c-bdcb-64cf980cb19b-root {
    text-align: center;
  }


#s-062381d0-a38c-4e6c-bdcb-64cf980cb19b.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.2em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-062381d0-a38c-4e6c-bdcb-64cf980cb19b-root {
    text-align: center;
  }


#s-062381d0-a38c-4e6c-bdcb-64cf980cb19b.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.2em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-062381d0-a38c-4e6c-bdcb-64cf980cb19b-root {
    text-align: center;
  }


#s-062381d0-a38c-4e6c-bdcb-64cf980cb19b.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.2em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}
#s-0be61dcc-e832-467c-b872-7044dee0b605 {
  margin-top: 0%;
margin-left: auto;
margin-bottom: 0%;
padding-bottom: 15%;
min-height: 50px;
background-color: rgba(11, 75, 152, 0.1);
}
@media (min-width: 1200px){#s-0be61dcc-e832-467c-b872-7044dee0b605 {
  display: none;
}
#s-0be61dcc-e832-467c-b872-7044dee0b605, #wrap-s-0be61dcc-e832-467c-b872-7044dee0b605, #wrap-content-s-0be61dcc-e832-467c-b872-7044dee0b605 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0be61dcc-e832-467c-b872-7044dee0b605 {
  display: none;
}
#s-0be61dcc-e832-467c-b872-7044dee0b605, #wrap-s-0be61dcc-e832-467c-b872-7044dee0b605, #wrap-content-s-0be61dcc-e832-467c-b872-7044dee0b605 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-0be61dcc-e832-467c-b872-7044dee0b605 {
  display: none;
}
#s-0be61dcc-e832-467c-b872-7044dee0b605, #wrap-s-0be61dcc-e832-467c-b872-7044dee0b605, #wrap-content-s-0be61dcc-e832-467c-b872-7044dee0b605 { display: none !important; }}







#s-0be61dcc-e832-467c-b872-7044dee0b605 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0be61dcc-e832-467c-b872-7044dee0b605.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-397c7acc-44a8-4d7d-8515-ca7600904005 {
  max-width: 90%;
aspect-ratio: 3980/2905;
text-align: center;
}

#s-397c7acc-44a8-4d7d-8515-ca7600904005 {
  margin: 0 !important;
  overflow: visible;
}

#s-397c7acc-44a8-4d7d-8515-ca7600904005-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-397c7acc-44a8-4d7d-8515-ca7600904005 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-397c7acc-44a8-4d7d-8515-ca7600904005 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-397c7acc-44a8-4d7d-8515-ca7600904005 img.shogun-image {
  /* Add background color handling */
  
}

#s-397c7acc-44a8-4d7d-8515-ca7600904005 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-397c7acc-44a8-4d7d-8515-ca7600904005 .shg-image-content-wrapper {
      aspect-ratio: 3980/2905;
      min-width: 100%;
      height: auto;
    }

    #s-397c7acc-44a8-4d7d-8515-ca7600904005 .shogun-image-link {
      aspect-ratio: 3980/2905;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-397c7acc-44a8-4d7d-8515-ca7600904005 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-397c7acc-44a8-4d7d-8515-ca7600904005 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 90%;
  }



  img.s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image {
    
    
    
    max-height: 90%;
  }


.s-397c7acc-44a8-4d7d-8515-ca7600904005 .shogun-image-content {
  
    justify-content: center;
  
}

.s-397c7acc-44a8-4d7d-8515-ca7600904005.shg-align-container {
  display: flex;
  justify-content: center
}

.s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image {
  box-sizing: border-box;
}



.s-397c7acc-44a8-4d7d-8515-ca7600904005 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-397c7acc-44a8-4d7d-8515-ca7600904005 {
      --shg-aspect-ratio: calc(3980/2905); 
    }

    .s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image-container {
      position: relative;
    }

    .s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-397c7acc-44a8-4d7d-8515-ca7600904005 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 90%;
    }
  }

@media (min-width: 1200px){#s-397c7acc-44a8-4d7d-8515-ca7600904005 {
  margin: 0 !important;
  overflow: visible;
}

#s-397c7acc-44a8-4d7d-8515-ca7600904005-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-397c7acc-44a8-4d7d-8515-ca7600904005 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-397c7acc-44a8-4d7d-8515-ca7600904005 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-397c7acc-44a8-4d7d-8515-ca7600904005 img.shogun-image {
  /* Add background color handling */
  
}

#s-397c7acc-44a8-4d7d-8515-ca7600904005 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-397c7acc-44a8-4d7d-8515-ca7600904005 .shg-image-content-wrapper {
      aspect-ratio: 3980/2905;
      min-width: 100%;
      height: auto;
    }

    #s-397c7acc-44a8-4d7d-8515-ca7600904005 .shogun-image-link {
      aspect-ratio: 3980/2905;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-397c7acc-44a8-4d7d-8515-ca7600904005 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-397c7acc-44a8-4d7d-8515-ca7600904005 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 90%;
  }



  img.s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image {
    
    
    
    max-height: 90%;
  }


.s-397c7acc-44a8-4d7d-8515-ca7600904005 .shogun-image-content {
  
    justify-content: center;
  
}

.s-397c7acc-44a8-4d7d-8515-ca7600904005.shg-align-container {
  display: flex;
  justify-content: center
}

.s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image {
  box-sizing: border-box;
}



.s-397c7acc-44a8-4d7d-8515-ca7600904005 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-397c7acc-44a8-4d7d-8515-ca7600904005 {
      --shg-aspect-ratio: calc(3980/2905); 
    }

    .s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image-container {
      position: relative;
    }

    .s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-397c7acc-44a8-4d7d-8515-ca7600904005 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 90%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-397c7acc-44a8-4d7d-8515-ca7600904005 {
  margin: 0 !important;
  overflow: visible;
}

#s-397c7acc-44a8-4d7d-8515-ca7600904005-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-397c7acc-44a8-4d7d-8515-ca7600904005 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-397c7acc-44a8-4d7d-8515-ca7600904005 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-397c7acc-44a8-4d7d-8515-ca7600904005 img.shogun-image {
  /* Add background color handling */
  
}

#s-397c7acc-44a8-4d7d-8515-ca7600904005 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-397c7acc-44a8-4d7d-8515-ca7600904005 .shg-image-content-wrapper {
      aspect-ratio: 3980/2905;
      min-width: 100%;
      height: auto;
    }

    #s-397c7acc-44a8-4d7d-8515-ca7600904005 .shogun-image-link {
      aspect-ratio: 3980/2905;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-397c7acc-44a8-4d7d-8515-ca7600904005 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-397c7acc-44a8-4d7d-8515-ca7600904005 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 90%;
  }



  img.s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image {
    
    
    
    max-height: 90%;
  }


.s-397c7acc-44a8-4d7d-8515-ca7600904005 .shogun-image-content {
  
    justify-content: center;
  
}

.s-397c7acc-44a8-4d7d-8515-ca7600904005.shg-align-container {
  display: flex;
  justify-content: center
}

.s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image {
  box-sizing: border-box;
}



.s-397c7acc-44a8-4d7d-8515-ca7600904005 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-397c7acc-44a8-4d7d-8515-ca7600904005 {
      --shg-aspect-ratio: calc(3980/2905); 
    }

    .s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image-container {
      position: relative;
    }

    .s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-397c7acc-44a8-4d7d-8515-ca7600904005 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 90%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-397c7acc-44a8-4d7d-8515-ca7600904005 {
  margin: 0 !important;
  overflow: visible;
}

#s-397c7acc-44a8-4d7d-8515-ca7600904005-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-397c7acc-44a8-4d7d-8515-ca7600904005 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-397c7acc-44a8-4d7d-8515-ca7600904005 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-397c7acc-44a8-4d7d-8515-ca7600904005 img.shogun-image {
  /* Add background color handling */
  
}

#s-397c7acc-44a8-4d7d-8515-ca7600904005 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-397c7acc-44a8-4d7d-8515-ca7600904005 .shg-image-content-wrapper {
      aspect-ratio: 3980/2905;
      min-width: 100%;
      height: auto;
    }

    #s-397c7acc-44a8-4d7d-8515-ca7600904005 .shogun-image-link {
      aspect-ratio: 3980/2905;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-397c7acc-44a8-4d7d-8515-ca7600904005 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-397c7acc-44a8-4d7d-8515-ca7600904005 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 90%;
  }



  img.s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image {
    
    
    
    max-height: 90%;
  }


.s-397c7acc-44a8-4d7d-8515-ca7600904005 .shogun-image-content {
  
    justify-content: center;
  
}

.s-397c7acc-44a8-4d7d-8515-ca7600904005.shg-align-container {
  display: flex;
  justify-content: center
}

.s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image {
  box-sizing: border-box;
}



.s-397c7acc-44a8-4d7d-8515-ca7600904005 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-397c7acc-44a8-4d7d-8515-ca7600904005 {
      --shg-aspect-ratio: calc(3980/2905); 
    }

    .s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image-container {
      position: relative;
    }

    .s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-397c7acc-44a8-4d7d-8515-ca7600904005 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 90%;
    }
  }

}@media (max-width: 767px){#s-397c7acc-44a8-4d7d-8515-ca7600904005 {
  margin: 0 !important;
  overflow: visible;
}

#s-397c7acc-44a8-4d7d-8515-ca7600904005-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-397c7acc-44a8-4d7d-8515-ca7600904005 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-397c7acc-44a8-4d7d-8515-ca7600904005 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-397c7acc-44a8-4d7d-8515-ca7600904005 img.shogun-image {
  /* Add background color handling */
  
}

#s-397c7acc-44a8-4d7d-8515-ca7600904005 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-397c7acc-44a8-4d7d-8515-ca7600904005 .shg-image-content-wrapper {
      aspect-ratio: 3980/2905;
      min-width: 100%;
      height: auto;
    }

    #s-397c7acc-44a8-4d7d-8515-ca7600904005 .shogun-image-link {
      aspect-ratio: 3980/2905;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-397c7acc-44a8-4d7d-8515-ca7600904005 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-397c7acc-44a8-4d7d-8515-ca7600904005 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 90%;
  }



  img.s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image {
    
    
    
    max-height: 90%;
  }


.s-397c7acc-44a8-4d7d-8515-ca7600904005 .shogun-image-content {
  
    justify-content: center;
  
}

.s-397c7acc-44a8-4d7d-8515-ca7600904005.shg-align-container {
  display: flex;
  justify-content: center
}

.s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image {
  box-sizing: border-box;
}



.s-397c7acc-44a8-4d7d-8515-ca7600904005 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-397c7acc-44a8-4d7d-8515-ca7600904005 {
      --shg-aspect-ratio: calc(3980/2905); 
    }

    .s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image-container {
      position: relative;
    }

    .s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-397c7acc-44a8-4d7d-8515-ca7600904005.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-397c7acc-44a8-4d7d-8515-ca7600904005 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 90%;
    }
  }

}
#s-14cba900-cce6-4dac-bf7b-fd4842386a4c {
  margin-top: 5%;
margin-left: auto;
margin-bottom: 0.5em;
margin-right: auto;
max-width: 90%;
text-align: left;
}

#s-14cba900-cce6-4dac-bf7b-fd4842386a4c .shogun-heading-component h3 {
  color: ;
  font-weight:  normal ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.5em;
  line-height: 1em;
  
  text-align: center;
}



#s-d7910b33-1b90-4ebf-a71c-dc4b4e8c1b42 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 3%;
max-width: 90%;
}

#s-5540f69d-06a4-4bf3-b540-6691ec3b52c0 {
  border-style: solid;
padding-top: 10px;
padding-left: 25%;
padding-bottom: 10px;
padding-right: 25%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(11, 75, 152, 1);
border-radius: 38px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
line-height: 1em;
color: rgba(11, 75, 152, 1);
}
#s-5540f69d-06a4-4bf3-b540-6691ec3b52c0:hover {background-color: rgba(11, 75, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-5540f69d-06a4-4bf3-b540-6691ec3b52c0:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-5540f69d-06a4-4bf3-b540-6691ec3b52c0-root {
    text-align: center;
  }


#s-5540f69d-06a4-4bf3-b540-6691ec3b52c0.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.2em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-5540f69d-06a4-4bf3-b540-6691ec3b52c0-root {
    text-align: center;
  }


#s-5540f69d-06a4-4bf3-b540-6691ec3b52c0.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.2em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5540f69d-06a4-4bf3-b540-6691ec3b52c0-root {
    text-align: center;
  }


#s-5540f69d-06a4-4bf3-b540-6691ec3b52c0.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.2em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5540f69d-06a4-4bf3-b540-6691ec3b52c0-root {
    text-align: center;
  }


#s-5540f69d-06a4-4bf3-b540-6691ec3b52c0.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.2em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-5540f69d-06a4-4bf3-b540-6691ec3b52c0-root {
    text-align: center;
  }


#s-5540f69d-06a4-4bf3-b540-6691ec3b52c0.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.2em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}
#s-5638e767-12cf-4b4c-b650-46a272fe3b6d {
  margin-top: 0%;
margin-left: auto;
margin-bottom: 0%;
padding-bottom: 15%;
min-height: 50px;
background-color: rgba(11, 75, 152, 0.1);
}
@media (min-width: 1200px){#s-5638e767-12cf-4b4c-b650-46a272fe3b6d {
  display: none;
}
#s-5638e767-12cf-4b4c-b650-46a272fe3b6d, #wrap-s-5638e767-12cf-4b4c-b650-46a272fe3b6d, #wrap-content-s-5638e767-12cf-4b4c-b650-46a272fe3b6d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5638e767-12cf-4b4c-b650-46a272fe3b6d {
  display: none;
}
#s-5638e767-12cf-4b4c-b650-46a272fe3b6d, #wrap-s-5638e767-12cf-4b4c-b650-46a272fe3b6d, #wrap-content-s-5638e767-12cf-4b4c-b650-46a272fe3b6d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-5638e767-12cf-4b4c-b650-46a272fe3b6d {
  display: none;
}
#s-5638e767-12cf-4b4c-b650-46a272fe3b6d, #wrap-s-5638e767-12cf-4b4c-b650-46a272fe3b6d, #wrap-content-s-5638e767-12cf-4b4c-b650-46a272fe3b6d { display: none !important; }}







#s-5638e767-12cf-4b4c-b650-46a272fe3b6d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5638e767-12cf-4b4c-b650-46a272fe3b6d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a20c0fbf-292b-45ba-9d30-68575482ed79 {
  max-width: 90%;
text-align: center;
}

#s-a20c0fbf-292b-45ba-9d30-68575482ed79 {
  margin: 0 !important;
  overflow: visible;
}

#s-a20c0fbf-292b-45ba-9d30-68575482ed79-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a20c0fbf-292b-45ba-9d30-68575482ed79 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a20c0fbf-292b-45ba-9d30-68575482ed79 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a20c0fbf-292b-45ba-9d30-68575482ed79 img.shogun-image {
  /* Add background color handling */
  
}

#s-a20c0fbf-292b-45ba-9d30-68575482ed79 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-a20c0fbf-292b-45ba-9d30-68575482ed79 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a20c0fbf-292b-45ba-9d30-68575482ed79.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a20c0fbf-292b-45ba-9d30-68575482ed79.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a20c0fbf-292b-45ba-9d30-68575482ed79.shogun-image {
  box-sizing: border-box;
}



.s-a20c0fbf-292b-45ba-9d30-68575482ed79 img.shogun-image {
  
}


@media (min-width: 1200px){#s-a20c0fbf-292b-45ba-9d30-68575482ed79 {
  margin: 0 !important;
  overflow: visible;
}

#s-a20c0fbf-292b-45ba-9d30-68575482ed79-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a20c0fbf-292b-45ba-9d30-68575482ed79 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a20c0fbf-292b-45ba-9d30-68575482ed79 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a20c0fbf-292b-45ba-9d30-68575482ed79 img.shogun-image {
  /* Add background color handling */
  
}

#s-a20c0fbf-292b-45ba-9d30-68575482ed79 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-a20c0fbf-292b-45ba-9d30-68575482ed79 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a20c0fbf-292b-45ba-9d30-68575482ed79.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a20c0fbf-292b-45ba-9d30-68575482ed79.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a20c0fbf-292b-45ba-9d30-68575482ed79.shogun-image {
  box-sizing: border-box;
}



.s-a20c0fbf-292b-45ba-9d30-68575482ed79 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-a20c0fbf-292b-45ba-9d30-68575482ed79 {
  margin: 0 !important;
  overflow: visible;
}

#s-a20c0fbf-292b-45ba-9d30-68575482ed79-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a20c0fbf-292b-45ba-9d30-68575482ed79 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a20c0fbf-292b-45ba-9d30-68575482ed79 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a20c0fbf-292b-45ba-9d30-68575482ed79 img.shogun-image {
  /* Add background color handling */
  
}

#s-a20c0fbf-292b-45ba-9d30-68575482ed79 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-a20c0fbf-292b-45ba-9d30-68575482ed79 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a20c0fbf-292b-45ba-9d30-68575482ed79.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a20c0fbf-292b-45ba-9d30-68575482ed79.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a20c0fbf-292b-45ba-9d30-68575482ed79.shogun-image {
  box-sizing: border-box;
}



.s-a20c0fbf-292b-45ba-9d30-68575482ed79 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-a20c0fbf-292b-45ba-9d30-68575482ed79 {
  margin: 0 !important;
  overflow: visible;
}

#s-a20c0fbf-292b-45ba-9d30-68575482ed79-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a20c0fbf-292b-45ba-9d30-68575482ed79 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a20c0fbf-292b-45ba-9d30-68575482ed79 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a20c0fbf-292b-45ba-9d30-68575482ed79 img.shogun-image {
  /* Add background color handling */
  
}

#s-a20c0fbf-292b-45ba-9d30-68575482ed79 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-a20c0fbf-292b-45ba-9d30-68575482ed79 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a20c0fbf-292b-45ba-9d30-68575482ed79.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a20c0fbf-292b-45ba-9d30-68575482ed79.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a20c0fbf-292b-45ba-9d30-68575482ed79.shogun-image {
  box-sizing: border-box;
}



.s-a20c0fbf-292b-45ba-9d30-68575482ed79 img.shogun-image {
  
}


}@media (max-width: 767px){#s-a20c0fbf-292b-45ba-9d30-68575482ed79 {
  margin: 0 !important;
  overflow: visible;
}

#s-a20c0fbf-292b-45ba-9d30-68575482ed79-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a20c0fbf-292b-45ba-9d30-68575482ed79 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a20c0fbf-292b-45ba-9d30-68575482ed79 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a20c0fbf-292b-45ba-9d30-68575482ed79 img.shogun-image {
  /* Add background color handling */
  
}

#s-a20c0fbf-292b-45ba-9d30-68575482ed79 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-a20c0fbf-292b-45ba-9d30-68575482ed79 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a20c0fbf-292b-45ba-9d30-68575482ed79.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a20c0fbf-292b-45ba-9d30-68575482ed79.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a20c0fbf-292b-45ba-9d30-68575482ed79.shogun-image {
  box-sizing: border-box;
}



.s-a20c0fbf-292b-45ba-9d30-68575482ed79 img.shogun-image {
  
}


}
#s-46773a1b-651d-413e-9f46-3014f2700923 {
  margin-top: 5%;
margin-left: auto;
margin-bottom: 0.5em;
margin-right: auto;
max-width: 90%;
text-align: left;
}

#s-46773a1b-651d-413e-9f46-3014f2700923 .shogun-heading-component h3 {
  color: ;
  font-weight:  normal ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.5em;
  line-height: 1em;
  
  text-align: center;
}



#s-d27535e0-a734-4bac-87c6-b9923db8d440 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 3%;
max-width: 90%;
}

#s-7e7e23af-515b-403e-88be-29af5a9d9bd1 {
  border-style: solid;
padding-top: 10px;
padding-left: 25%;
padding-bottom: 10px;
padding-right: 25%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(11, 75, 152, 1);
border-radius: 38px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
line-height: 1em;
color: rgba(11, 75, 152, 1);
}
#s-7e7e23af-515b-403e-88be-29af5a9d9bd1:hover {background-color: rgba(11, 75, 152, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-7e7e23af-515b-403e-88be-29af5a9d9bd1:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-7e7e23af-515b-403e-88be-29af5a9d9bd1-root {
    text-align: center;
  }


#s-7e7e23af-515b-403e-88be-29af5a9d9bd1.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.2em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-7e7e23af-515b-403e-88be-29af5a9d9bd1-root {
    text-align: center;
  }


#s-7e7e23af-515b-403e-88be-29af5a9d9bd1.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.2em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7e7e23af-515b-403e-88be-29af5a9d9bd1-root {
    text-align: center;
  }


#s-7e7e23af-515b-403e-88be-29af5a9d9bd1.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.2em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7e7e23af-515b-403e-88be-29af5a9d9bd1-root {
    text-align: center;
  }


#s-7e7e23af-515b-403e-88be-29af5a9d9bd1.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.2em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-7e7e23af-515b-403e-88be-29af5a9d9bd1-root {
    text-align: center;
  }


#s-7e7e23af-515b-403e-88be-29af5a9d9bd1.shg-btn {
  color: rgba(11, 75, 152, 1);
  font-size: 1.2em;
  font-weight: 500;
  
  font-family: Outfit;
  display:  inline-block ;
}
}
#s-4623946f-29f5-41ee-a578-485481baa1a7 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 1200px){#s-4623946f-29f5-41ee-a578-485481baa1a7 {
  display: none;
}
#s-4623946f-29f5-41ee-a578-485481baa1a7, #wrap-s-4623946f-29f5-41ee-a578-485481baa1a7, #wrap-content-s-4623946f-29f5-41ee-a578-485481baa1a7 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4623946f-29f5-41ee-a578-485481baa1a7 {
  display: none;
}
#s-4623946f-29f5-41ee-a578-485481baa1a7, #wrap-s-4623946f-29f5-41ee-a578-485481baa1a7, #wrap-content-s-4623946f-29f5-41ee-a578-485481baa1a7 { display: none !important; }}







#s-4623946f-29f5-41ee-a578-485481baa1a7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4623946f-29f5-41ee-a578-485481baa1a7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9af8fd7c-bf35-401d-839f-c1885a251e09 {
  margin-top: 0%;
margin-left: auto;
margin-bottom: 10%;
margin-right: auto;
max-width: 80%;
aspect-ratio: 2048/2072;
text-align: center;
}
@media (min-width: 1200px){#s-9af8fd7c-bf35-401d-839f-c1885a251e09 {
  display: none;
}
#s-9af8fd7c-bf35-401d-839f-c1885a251e09, #wrap-s-9af8fd7c-bf35-401d-839f-c1885a251e09, #wrap-content-s-9af8fd7c-bf35-401d-839f-c1885a251e09 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9af8fd7c-bf35-401d-839f-c1885a251e09 {
  display: none;
}
#s-9af8fd7c-bf35-401d-839f-c1885a251e09, #wrap-s-9af8fd7c-bf35-401d-839f-c1885a251e09, #wrap-content-s-9af8fd7c-bf35-401d-839f-c1885a251e09 { display: none !important; }}
#s-9af8fd7c-bf35-401d-839f-c1885a251e09 {
  margin: 0 !important;
  overflow: visible;
}

#s-9af8fd7c-bf35-401d-839f-c1885a251e09-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9af8fd7c-bf35-401d-839f-c1885a251e09 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 0%;
  margin-bottom: 10%;
}

.shg-image-content-margin-container-s-9af8fd7c-bf35-401d-839f-c1885a251e09 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9af8fd7c-bf35-401d-839f-c1885a251e09 img.shogun-image {
  /* Add background color handling */
  
}

#s-9af8fd7c-bf35-401d-839f-c1885a251e09 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9af8fd7c-bf35-401d-839f-c1885a251e09 .shg-image-content-wrapper {
      aspect-ratio: 2048/2072;
      min-width: 100%;
      height: auto;
    }

    #s-9af8fd7c-bf35-401d-839f-c1885a251e09 .shogun-image-link {
      aspect-ratio: 2048/2072;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9af8fd7c-bf35-401d-839f-c1885a251e09 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9af8fd7c-bf35-401d-839f-c1885a251e09 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-9af8fd7c-bf35-401d-839f-c1885a251e09 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9af8fd7c-bf35-401d-839f-c1885a251e09.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image {
  box-sizing: border-box;
}



.s-9af8fd7c-bf35-401d-839f-c1885a251e09 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9af8fd7c-bf35-401d-839f-c1885a251e09 {
      --shg-aspect-ratio: calc(2048/2072); 
    }

    .s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image-container {
      position: relative;
    }

    .s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9af8fd7c-bf35-401d-839f-c1885a251e09 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

@media (min-width: 1200px){#s-9af8fd7c-bf35-401d-839f-c1885a251e09 {
  margin: 0 !important;
  overflow: visible;
}

#s-9af8fd7c-bf35-401d-839f-c1885a251e09-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9af8fd7c-bf35-401d-839f-c1885a251e09 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9af8fd7c-bf35-401d-839f-c1885a251e09 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9af8fd7c-bf35-401d-839f-c1885a251e09 img.shogun-image {
  /* Add background color handling */
  
}

#s-9af8fd7c-bf35-401d-839f-c1885a251e09 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9af8fd7c-bf35-401d-839f-c1885a251e09 .shg-image-content-wrapper {
      aspect-ratio: 2048/2072;
      min-width: 100%;
      height: auto;
    }

    #s-9af8fd7c-bf35-401d-839f-c1885a251e09 .shogun-image-link {
      aspect-ratio: 2048/2072;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9af8fd7c-bf35-401d-839f-c1885a251e09 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9af8fd7c-bf35-401d-839f-c1885a251e09 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-9af8fd7c-bf35-401d-839f-c1885a251e09 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9af8fd7c-bf35-401d-839f-c1885a251e09.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image {
  box-sizing: border-box;
}



.s-9af8fd7c-bf35-401d-839f-c1885a251e09 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9af8fd7c-bf35-401d-839f-c1885a251e09 {
      --shg-aspect-ratio: calc(2048/2072); 
    }

    .s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image-container {
      position: relative;
    }

    .s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9af8fd7c-bf35-401d-839f-c1885a251e09 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-9af8fd7c-bf35-401d-839f-c1885a251e09 {
  margin: 0 !important;
  overflow: visible;
}

#s-9af8fd7c-bf35-401d-839f-c1885a251e09-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9af8fd7c-bf35-401d-839f-c1885a251e09 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9af8fd7c-bf35-401d-839f-c1885a251e09 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9af8fd7c-bf35-401d-839f-c1885a251e09 img.shogun-image {
  /* Add background color handling */
  
}

#s-9af8fd7c-bf35-401d-839f-c1885a251e09 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9af8fd7c-bf35-401d-839f-c1885a251e09 .shg-image-content-wrapper {
      aspect-ratio: 2048/2072;
      min-width: 100%;
      height: auto;
    }

    #s-9af8fd7c-bf35-401d-839f-c1885a251e09 .shogun-image-link {
      aspect-ratio: 2048/2072;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9af8fd7c-bf35-401d-839f-c1885a251e09 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9af8fd7c-bf35-401d-839f-c1885a251e09 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-9af8fd7c-bf35-401d-839f-c1885a251e09 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9af8fd7c-bf35-401d-839f-c1885a251e09.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image {
  box-sizing: border-box;
}



.s-9af8fd7c-bf35-401d-839f-c1885a251e09 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9af8fd7c-bf35-401d-839f-c1885a251e09 {
      --shg-aspect-ratio: calc(2048/2072); 
    }

    .s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image-container {
      position: relative;
    }

    .s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9af8fd7c-bf35-401d-839f-c1885a251e09 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-9af8fd7c-bf35-401d-839f-c1885a251e09 {
  margin: 0 !important;
  overflow: visible;
}

#s-9af8fd7c-bf35-401d-839f-c1885a251e09-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9af8fd7c-bf35-401d-839f-c1885a251e09 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9af8fd7c-bf35-401d-839f-c1885a251e09 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9af8fd7c-bf35-401d-839f-c1885a251e09 img.shogun-image {
  /* Add background color handling */
  
}

#s-9af8fd7c-bf35-401d-839f-c1885a251e09 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9af8fd7c-bf35-401d-839f-c1885a251e09 .shg-image-content-wrapper {
      aspect-ratio: 2048/2072;
      min-width: 100%;
      height: auto;
    }

    #s-9af8fd7c-bf35-401d-839f-c1885a251e09 .shogun-image-link {
      aspect-ratio: 2048/2072;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9af8fd7c-bf35-401d-839f-c1885a251e09 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9af8fd7c-bf35-401d-839f-c1885a251e09 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-9af8fd7c-bf35-401d-839f-c1885a251e09 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9af8fd7c-bf35-401d-839f-c1885a251e09.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image {
  box-sizing: border-box;
}



.s-9af8fd7c-bf35-401d-839f-c1885a251e09 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9af8fd7c-bf35-401d-839f-c1885a251e09 {
      --shg-aspect-ratio: calc(2048/2072); 
    }

    .s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image-container {
      position: relative;
    }

    .s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9af8fd7c-bf35-401d-839f-c1885a251e09 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (max-width: 767px){#s-9af8fd7c-bf35-401d-839f-c1885a251e09 {
  margin: 0 !important;
  overflow: visible;
}

#s-9af8fd7c-bf35-401d-839f-c1885a251e09-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9af8fd7c-bf35-401d-839f-c1885a251e09 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9af8fd7c-bf35-401d-839f-c1885a251e09 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9af8fd7c-bf35-401d-839f-c1885a251e09 img.shogun-image {
  /* Add background color handling */
  
}

#s-9af8fd7c-bf35-401d-839f-c1885a251e09 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9af8fd7c-bf35-401d-839f-c1885a251e09 .shg-image-content-wrapper {
      aspect-ratio: 2048/2072;
      min-width: 100%;
      height: auto;
    }

    #s-9af8fd7c-bf35-401d-839f-c1885a251e09 .shogun-image-link {
      aspect-ratio: 2048/2072;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9af8fd7c-bf35-401d-839f-c1885a251e09 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9af8fd7c-bf35-401d-839f-c1885a251e09 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-9af8fd7c-bf35-401d-839f-c1885a251e09 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9af8fd7c-bf35-401d-839f-c1885a251e09.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image {
  box-sizing: border-box;
}



.s-9af8fd7c-bf35-401d-839f-c1885a251e09 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9af8fd7c-bf35-401d-839f-c1885a251e09 {
      --shg-aspect-ratio: calc(2048/2072); 
    }

    .s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image-container {
      position: relative;
    }

    .s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9af8fd7c-bf35-401d-839f-c1885a251e09.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9af8fd7c-bf35-401d-839f-c1885a251e09 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}
#s-e1a0631b-a526-42de-b8ff-8ce6a5e9ce4f {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 15%;
padding-bottom: 10%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
background-position: left top;
}
@media (min-width: 1200px){#s-e1a0631b-a526-42de-b8ff-8ce6a5e9ce4f {
  display: none;
}
#s-e1a0631b-a526-42de-b8ff-8ce6a5e9ce4f, #wrap-s-e1a0631b-a526-42de-b8ff-8ce6a5e9ce4f, #wrap-content-s-e1a0631b-a526-42de-b8ff-8ce6a5e9ce4f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e1a0631b-a526-42de-b8ff-8ce6a5e9ce4f {
  display: none;
}
#s-e1a0631b-a526-42de-b8ff-8ce6a5e9ce4f, #wrap-s-e1a0631b-a526-42de-b8ff-8ce6a5e9ce4f, #wrap-content-s-e1a0631b-a526-42de-b8ff-8ce6a5e9ce4f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e1a0631b-a526-42de-b8ff-8ce6a5e9ce4f {
  padding-top: 10%;
padding-bottom: 5%;
}
}
#s-e1a0631b-a526-42de-b8ff-8ce6a5e9ce4f {
  background-image: url(https://i.shgcdn.com/7197d6b2-484b-49e6-b00d-81188f8ce491/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}

@media (max-width: 480px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-e1a0631b-a526-42de-b8ff-8ce6a5e9ce4f {
  background-image: url(https://i.shgcdn.com/7197d6b2-484b-49e6-b00d-81188f8ce491/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/480x/);
}
#s-e1a0631b-a526-42de-b8ff-8ce6a5e9ce4f.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-e1a0631b-a526-42de-b8ff-8ce6a5e9ce4f {
  background-image: url(https://i.shgcdn.com/7197d6b2-484b-49e6-b00d-81188f8ce491/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/960x/);
}
#s-e1a0631b-a526-42de-b8ff-8ce6a5e9ce4f.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-e1a0631b-a526-42de-b8ff-8ce6a5e9ce4f {
  background-image: url(https://i.shgcdn.com/7197d6b2-484b-49e6-b00d-81188f8ce491/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/768x/);
}
#s-e1a0631b-a526-42de-b8ff-8ce6a5e9ce4f.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-e1a0631b-a526-42de-b8ff-8ce6a5e9ce4f {
  background-image: url(https://i.shgcdn.com/7197d6b2-484b-49e6-b00d-81188f8ce491/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1536x/);
}
#s-e1a0631b-a526-42de-b8ff-8ce6a5e9ce4f.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-e1a0631b-a526-42de-b8ff-8ce6a5e9ce4f {
  background-image: url(https://i.shgcdn.com/7197d6b2-484b-49e6-b00d-81188f8ce491/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1024x/);
}
#s-e1a0631b-a526-42de-b8ff-8ce6a5e9ce4f.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-e1a0631b-a526-42de-b8ff-8ce6a5e9ce4f {
  background-image: url(https://i.shgcdn.com/7197d6b2-484b-49e6-b00d-81188f8ce491/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}
#s-e1a0631b-a526-42de-b8ff-8ce6a5e9ce4f.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-e1a0631b-a526-42de-b8ff-8ce6a5e9ce4f {
  background-image: url(https://i.shgcdn.com/7197d6b2-484b-49e6-b00d-81188f8ce491/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1200x/);
}
#s-e1a0631b-a526-42de-b8ff-8ce6a5e9ce4f.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-e1a0631b-a526-42de-b8ff-8ce6a5e9ce4f {
  background-image: url(https://i.shgcdn.com/7197d6b2-484b-49e6-b00d-81188f8ce491/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}
#s-e1a0631b-a526-42de-b8ff-8ce6a5e9ce4f.shogun-lazyload-bg-image {
  background-image: none;
}

}







#s-e1a0631b-a526-42de-b8ff-8ce6a5e9ce4f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e1a0631b-a526-42de-b8ff-8ce6a5e9ce4f.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-eff89606-a774-426f-8605-13d3fea307e9 {
  margin-top: 0%;
margin-left: auto;
margin-bottom: 0%;
margin-right: auto;
padding-left: 0%;
padding-bottom: 0.5em;
padding-right: 0%;
max-width: 90%;
text-align: left;
}

#s-eff89606-a774-426f-8605-13d3fea307e9 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.6em;
  line-height: 1em;
  
  text-align: center;
}



#s-0e8f16e2-5053-4c8b-b9de-4ee0bb4d37a5 {
  margin-left: auto;
margin-right: auto;
max-width: 80%;
}

#s-64c02529-7e10-47b3-b0c5-f4453d504a89 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 5%;
padding-bottom: 1px;
max-width: 100%;
}

#s-64c02529-7e10-47b3-b0c5-f4453d504a89 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-64c02529-7e10-47b3-b0c5-f4453d504a89 .shg-sld-nav-button.shg-sld-left,
#s-64c02529-7e10-47b3-b0c5-f4453d504a89 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-e8553952-78c3-4440-90ed-7fc1eaefe031 {
  min-height: 50px;
}








#s-e8553952-78c3-4440-90ed-7fc1eaefe031 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e8553952-78c3-4440-90ed-7fc1eaefe031.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d15bfcec-ea31-4d29-8262-30ed2a412232 {
  margin-bottom: 3%;
max-width: 20%;
aspect-ratio: 1/1;
text-align: center;
}

#s-d15bfcec-ea31-4d29-8262-30ed2a412232 {
  margin: 0 !important;
  overflow: visible;
}

#s-d15bfcec-ea31-4d29-8262-30ed2a412232-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d15bfcec-ea31-4d29-8262-30ed2a412232 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  margin-bottom: 3%;
}

.shg-image-content-margin-container-s-d15bfcec-ea31-4d29-8262-30ed2a412232 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d15bfcec-ea31-4d29-8262-30ed2a412232 img.shogun-image {
  /* Add background color handling */
  
}

#s-d15bfcec-ea31-4d29-8262-30ed2a412232 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d15bfcec-ea31-4d29-8262-30ed2a412232 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d15bfcec-ea31-4d29-8262-30ed2a412232 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d15bfcec-ea31-4d29-8262-30ed2a412232 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d15bfcec-ea31-4d29-8262-30ed2a412232 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-d15bfcec-ea31-4d29-8262-30ed2a412232 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d15bfcec-ea31-4d29-8262-30ed2a412232.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image {
  box-sizing: border-box;
}



.s-d15bfcec-ea31-4d29-8262-30ed2a412232 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d15bfcec-ea31-4d29-8262-30ed2a412232 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image-container {
      position: relative;
    }

    .s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d15bfcec-ea31-4d29-8262-30ed2a412232 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

@media (min-width: 1200px){#s-d15bfcec-ea31-4d29-8262-30ed2a412232 {
  margin: 0 !important;
  overflow: visible;
}

#s-d15bfcec-ea31-4d29-8262-30ed2a412232-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d15bfcec-ea31-4d29-8262-30ed2a412232 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d15bfcec-ea31-4d29-8262-30ed2a412232 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d15bfcec-ea31-4d29-8262-30ed2a412232 img.shogun-image {
  /* Add background color handling */
  
}

#s-d15bfcec-ea31-4d29-8262-30ed2a412232 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d15bfcec-ea31-4d29-8262-30ed2a412232 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d15bfcec-ea31-4d29-8262-30ed2a412232 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d15bfcec-ea31-4d29-8262-30ed2a412232 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d15bfcec-ea31-4d29-8262-30ed2a412232 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-d15bfcec-ea31-4d29-8262-30ed2a412232 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d15bfcec-ea31-4d29-8262-30ed2a412232.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image {
  box-sizing: border-box;
}



.s-d15bfcec-ea31-4d29-8262-30ed2a412232 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d15bfcec-ea31-4d29-8262-30ed2a412232 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image-container {
      position: relative;
    }

    .s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d15bfcec-ea31-4d29-8262-30ed2a412232 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-d15bfcec-ea31-4d29-8262-30ed2a412232 {
  margin: 0 !important;
  overflow: visible;
}

#s-d15bfcec-ea31-4d29-8262-30ed2a412232-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d15bfcec-ea31-4d29-8262-30ed2a412232 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d15bfcec-ea31-4d29-8262-30ed2a412232 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d15bfcec-ea31-4d29-8262-30ed2a412232 img.shogun-image {
  /* Add background color handling */
  
}

#s-d15bfcec-ea31-4d29-8262-30ed2a412232 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d15bfcec-ea31-4d29-8262-30ed2a412232 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d15bfcec-ea31-4d29-8262-30ed2a412232 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d15bfcec-ea31-4d29-8262-30ed2a412232 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d15bfcec-ea31-4d29-8262-30ed2a412232 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-d15bfcec-ea31-4d29-8262-30ed2a412232 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d15bfcec-ea31-4d29-8262-30ed2a412232.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image {
  box-sizing: border-box;
}



.s-d15bfcec-ea31-4d29-8262-30ed2a412232 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d15bfcec-ea31-4d29-8262-30ed2a412232 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image-container {
      position: relative;
    }

    .s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d15bfcec-ea31-4d29-8262-30ed2a412232 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-d15bfcec-ea31-4d29-8262-30ed2a412232 {
  margin: 0 !important;
  overflow: visible;
}

#s-d15bfcec-ea31-4d29-8262-30ed2a412232-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d15bfcec-ea31-4d29-8262-30ed2a412232 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d15bfcec-ea31-4d29-8262-30ed2a412232 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d15bfcec-ea31-4d29-8262-30ed2a412232 img.shogun-image {
  /* Add background color handling */
  
}

#s-d15bfcec-ea31-4d29-8262-30ed2a412232 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d15bfcec-ea31-4d29-8262-30ed2a412232 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d15bfcec-ea31-4d29-8262-30ed2a412232 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d15bfcec-ea31-4d29-8262-30ed2a412232 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d15bfcec-ea31-4d29-8262-30ed2a412232 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-d15bfcec-ea31-4d29-8262-30ed2a412232 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d15bfcec-ea31-4d29-8262-30ed2a412232.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image {
  box-sizing: border-box;
}



.s-d15bfcec-ea31-4d29-8262-30ed2a412232 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d15bfcec-ea31-4d29-8262-30ed2a412232 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image-container {
      position: relative;
    }

    .s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d15bfcec-ea31-4d29-8262-30ed2a412232 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (max-width: 767px){#s-d15bfcec-ea31-4d29-8262-30ed2a412232 {
  margin: 0 !important;
  overflow: visible;
}

#s-d15bfcec-ea31-4d29-8262-30ed2a412232-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d15bfcec-ea31-4d29-8262-30ed2a412232 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d15bfcec-ea31-4d29-8262-30ed2a412232 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d15bfcec-ea31-4d29-8262-30ed2a412232 img.shogun-image {
  /* Add background color handling */
  
}

#s-d15bfcec-ea31-4d29-8262-30ed2a412232 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d15bfcec-ea31-4d29-8262-30ed2a412232 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d15bfcec-ea31-4d29-8262-30ed2a412232 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d15bfcec-ea31-4d29-8262-30ed2a412232 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d15bfcec-ea31-4d29-8262-30ed2a412232 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-d15bfcec-ea31-4d29-8262-30ed2a412232 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d15bfcec-ea31-4d29-8262-30ed2a412232.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image {
  box-sizing: border-box;
}



.s-d15bfcec-ea31-4d29-8262-30ed2a412232 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d15bfcec-ea31-4d29-8262-30ed2a412232 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image-container {
      position: relative;
    }

    .s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d15bfcec-ea31-4d29-8262-30ed2a412232.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d15bfcec-ea31-4d29-8262-30ed2a412232 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}
#s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff {
  max-width: 20%;
aspect-ratio: 2570/470;
text-align: center;
}

#s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff {
  margin: 0 !important;
  overflow: visible;
}

#s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff img.shogun-image {
  /* Add background color handling */
  
}

#s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff .shogun-image-content {
  
    justify-content: center;
  
}

.s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff.shogun-image {
  box-sizing: border-box;
}



.s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff img.shogun-image {
  
}


@media (min-width: 1200px){#s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff {
  margin: 0 !important;
  overflow: visible;
}

#s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff img.shogun-image {
  /* Add background color handling */
  
}

#s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff .shogun-image-content {
  
    justify-content: center;
  
}

.s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff.shogun-image {
  box-sizing: border-box;
}



.s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff {
  margin: 0 !important;
  overflow: visible;
}

#s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff img.shogun-image {
  /* Add background color handling */
  
}

#s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff .shogun-image-content {
  
    justify-content: center;
  
}

.s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff.shogun-image {
  box-sizing: border-box;
}



.s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff {
  margin: 0 !important;
  overflow: visible;
}

#s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff img.shogun-image {
  /* Add background color handling */
  
}

#s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff .shogun-image-content {
  
    justify-content: center;
  
}

.s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff.shogun-image {
  box-sizing: border-box;
}



.s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff img.shogun-image {
  
}


}@media (max-width: 767px){#s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff {
  margin: 0 !important;
  overflow: visible;
}

#s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff img.shogun-image {
  /* Add background color handling */
  
}

#s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff .shogun-image-content {
  
    justify-content: center;
  
}

.s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff.shogun-image {
  box-sizing: border-box;
}



.s-5f524e0d-8e2b-42f4-bda8-fc2abf3bf8ff img.shogun-image {
  
}


}
#s-7cc91ce6-4864-4119-a360-bcd4aedd9fa6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7cc91ce6-4864-4119-a360-bcd4aedd9fa6 .shogun-heading-component h2 {
  color: ;
  font-weight:  500 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.4em;
  
  
  
}



#s-0ed39e85-d38c-4726-bbdd-0e5a415bdef0 {
  min-height: 50px;
}








#s-0ed39e85-d38c-4726-bbdd-0e5a415bdef0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0ed39e85-d38c-4726-bbdd-0e5a415bdef0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-13ff8698-6701-4917-a113-ff88a0b03f27 {
  margin-bottom: 3%;
max-width: 20%;
aspect-ratio: 1/1;
text-align: center;
}

#s-13ff8698-6701-4917-a113-ff88a0b03f27 {
  margin: 0 !important;
  overflow: visible;
}

#s-13ff8698-6701-4917-a113-ff88a0b03f27-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-13ff8698-6701-4917-a113-ff88a0b03f27 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  margin-bottom: 3%;
}

.shg-image-content-margin-container-s-13ff8698-6701-4917-a113-ff88a0b03f27 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-13ff8698-6701-4917-a113-ff88a0b03f27 img.shogun-image {
  /* Add background color handling */
  
}

#s-13ff8698-6701-4917-a113-ff88a0b03f27 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-13ff8698-6701-4917-a113-ff88a0b03f27 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-13ff8698-6701-4917-a113-ff88a0b03f27 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-13ff8698-6701-4917-a113-ff88a0b03f27 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-13ff8698-6701-4917-a113-ff88a0b03f27 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-13ff8698-6701-4917-a113-ff88a0b03f27 .shogun-image-content {
  
    justify-content: center;
  
}

.s-13ff8698-6701-4917-a113-ff88a0b03f27.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image {
  box-sizing: border-box;
}



.s-13ff8698-6701-4917-a113-ff88a0b03f27 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-13ff8698-6701-4917-a113-ff88a0b03f27 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image-container {
      position: relative;
    }

    .s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13ff8698-6701-4917-a113-ff88a0b03f27 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

@media (min-width: 1200px){#s-13ff8698-6701-4917-a113-ff88a0b03f27 {
  margin: 0 !important;
  overflow: visible;
}

#s-13ff8698-6701-4917-a113-ff88a0b03f27-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-13ff8698-6701-4917-a113-ff88a0b03f27 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-13ff8698-6701-4917-a113-ff88a0b03f27 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-13ff8698-6701-4917-a113-ff88a0b03f27 img.shogun-image {
  /* Add background color handling */
  
}

#s-13ff8698-6701-4917-a113-ff88a0b03f27 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-13ff8698-6701-4917-a113-ff88a0b03f27 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-13ff8698-6701-4917-a113-ff88a0b03f27 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-13ff8698-6701-4917-a113-ff88a0b03f27 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-13ff8698-6701-4917-a113-ff88a0b03f27 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-13ff8698-6701-4917-a113-ff88a0b03f27 .shogun-image-content {
  
    justify-content: center;
  
}

.s-13ff8698-6701-4917-a113-ff88a0b03f27.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image {
  box-sizing: border-box;
}



.s-13ff8698-6701-4917-a113-ff88a0b03f27 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-13ff8698-6701-4917-a113-ff88a0b03f27 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image-container {
      position: relative;
    }

    .s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13ff8698-6701-4917-a113-ff88a0b03f27 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-13ff8698-6701-4917-a113-ff88a0b03f27 {
  margin: 0 !important;
  overflow: visible;
}

#s-13ff8698-6701-4917-a113-ff88a0b03f27-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-13ff8698-6701-4917-a113-ff88a0b03f27 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-13ff8698-6701-4917-a113-ff88a0b03f27 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-13ff8698-6701-4917-a113-ff88a0b03f27 img.shogun-image {
  /* Add background color handling */
  
}

#s-13ff8698-6701-4917-a113-ff88a0b03f27 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-13ff8698-6701-4917-a113-ff88a0b03f27 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-13ff8698-6701-4917-a113-ff88a0b03f27 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-13ff8698-6701-4917-a113-ff88a0b03f27 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-13ff8698-6701-4917-a113-ff88a0b03f27 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-13ff8698-6701-4917-a113-ff88a0b03f27 .shogun-image-content {
  
    justify-content: center;
  
}

.s-13ff8698-6701-4917-a113-ff88a0b03f27.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image {
  box-sizing: border-box;
}



.s-13ff8698-6701-4917-a113-ff88a0b03f27 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-13ff8698-6701-4917-a113-ff88a0b03f27 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image-container {
      position: relative;
    }

    .s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13ff8698-6701-4917-a113-ff88a0b03f27 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-13ff8698-6701-4917-a113-ff88a0b03f27 {
  margin: 0 !important;
  overflow: visible;
}

#s-13ff8698-6701-4917-a113-ff88a0b03f27-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-13ff8698-6701-4917-a113-ff88a0b03f27 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-13ff8698-6701-4917-a113-ff88a0b03f27 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-13ff8698-6701-4917-a113-ff88a0b03f27 img.shogun-image {
  /* Add background color handling */
  
}

#s-13ff8698-6701-4917-a113-ff88a0b03f27 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-13ff8698-6701-4917-a113-ff88a0b03f27 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-13ff8698-6701-4917-a113-ff88a0b03f27 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-13ff8698-6701-4917-a113-ff88a0b03f27 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-13ff8698-6701-4917-a113-ff88a0b03f27 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-13ff8698-6701-4917-a113-ff88a0b03f27 .shogun-image-content {
  
    justify-content: center;
  
}

.s-13ff8698-6701-4917-a113-ff88a0b03f27.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image {
  box-sizing: border-box;
}



.s-13ff8698-6701-4917-a113-ff88a0b03f27 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-13ff8698-6701-4917-a113-ff88a0b03f27 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image-container {
      position: relative;
    }

    .s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13ff8698-6701-4917-a113-ff88a0b03f27 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (max-width: 767px){#s-13ff8698-6701-4917-a113-ff88a0b03f27 {
  margin: 0 !important;
  overflow: visible;
}

#s-13ff8698-6701-4917-a113-ff88a0b03f27-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-13ff8698-6701-4917-a113-ff88a0b03f27 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-13ff8698-6701-4917-a113-ff88a0b03f27 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-13ff8698-6701-4917-a113-ff88a0b03f27 img.shogun-image {
  /* Add background color handling */
  
}

#s-13ff8698-6701-4917-a113-ff88a0b03f27 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-13ff8698-6701-4917-a113-ff88a0b03f27 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-13ff8698-6701-4917-a113-ff88a0b03f27 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-13ff8698-6701-4917-a113-ff88a0b03f27 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-13ff8698-6701-4917-a113-ff88a0b03f27 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-13ff8698-6701-4917-a113-ff88a0b03f27 .shogun-image-content {
  
    justify-content: center;
  
}

.s-13ff8698-6701-4917-a113-ff88a0b03f27.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image {
  box-sizing: border-box;
}



.s-13ff8698-6701-4917-a113-ff88a0b03f27 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-13ff8698-6701-4917-a113-ff88a0b03f27 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image-container {
      position: relative;
    }

    .s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13ff8698-6701-4917-a113-ff88a0b03f27.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13ff8698-6701-4917-a113-ff88a0b03f27 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}
#s-a54256b9-7556-432d-90a7-576423629cc7 {
  max-width: 20%;
aspect-ratio: 2570/469;
text-align: center;
}

#s-a54256b9-7556-432d-90a7-576423629cc7 {
  margin: 0 !important;
  overflow: visible;
}

#s-a54256b9-7556-432d-90a7-576423629cc7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a54256b9-7556-432d-90a7-576423629cc7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a54256b9-7556-432d-90a7-576423629cc7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a54256b9-7556-432d-90a7-576423629cc7 img.shogun-image {
  /* Add background color handling */
  
}

#s-a54256b9-7556-432d-90a7-576423629cc7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-a54256b9-7556-432d-90a7-576423629cc7.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-a54256b9-7556-432d-90a7-576423629cc7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a54256b9-7556-432d-90a7-576423629cc7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a54256b9-7556-432d-90a7-576423629cc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a54256b9-7556-432d-90a7-576423629cc7.shogun-image {
  box-sizing: border-box;
}



.s-a54256b9-7556-432d-90a7-576423629cc7 img.shogun-image {
  
}


@media (min-width: 1200px){#s-a54256b9-7556-432d-90a7-576423629cc7 {
  margin: 0 !important;
  overflow: visible;
}

#s-a54256b9-7556-432d-90a7-576423629cc7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a54256b9-7556-432d-90a7-576423629cc7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a54256b9-7556-432d-90a7-576423629cc7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a54256b9-7556-432d-90a7-576423629cc7 img.shogun-image {
  /* Add background color handling */
  
}

#s-a54256b9-7556-432d-90a7-576423629cc7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-a54256b9-7556-432d-90a7-576423629cc7.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-a54256b9-7556-432d-90a7-576423629cc7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a54256b9-7556-432d-90a7-576423629cc7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a54256b9-7556-432d-90a7-576423629cc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a54256b9-7556-432d-90a7-576423629cc7.shogun-image {
  box-sizing: border-box;
}



.s-a54256b9-7556-432d-90a7-576423629cc7 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-a54256b9-7556-432d-90a7-576423629cc7 {
  margin: 0 !important;
  overflow: visible;
}

#s-a54256b9-7556-432d-90a7-576423629cc7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a54256b9-7556-432d-90a7-576423629cc7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a54256b9-7556-432d-90a7-576423629cc7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a54256b9-7556-432d-90a7-576423629cc7 img.shogun-image {
  /* Add background color handling */
  
}

#s-a54256b9-7556-432d-90a7-576423629cc7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-a54256b9-7556-432d-90a7-576423629cc7.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-a54256b9-7556-432d-90a7-576423629cc7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a54256b9-7556-432d-90a7-576423629cc7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a54256b9-7556-432d-90a7-576423629cc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a54256b9-7556-432d-90a7-576423629cc7.shogun-image {
  box-sizing: border-box;
}



.s-a54256b9-7556-432d-90a7-576423629cc7 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-a54256b9-7556-432d-90a7-576423629cc7 {
  margin: 0 !important;
  overflow: visible;
}

#s-a54256b9-7556-432d-90a7-576423629cc7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a54256b9-7556-432d-90a7-576423629cc7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a54256b9-7556-432d-90a7-576423629cc7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a54256b9-7556-432d-90a7-576423629cc7 img.shogun-image {
  /* Add background color handling */
  
}

#s-a54256b9-7556-432d-90a7-576423629cc7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-a54256b9-7556-432d-90a7-576423629cc7.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-a54256b9-7556-432d-90a7-576423629cc7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a54256b9-7556-432d-90a7-576423629cc7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a54256b9-7556-432d-90a7-576423629cc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a54256b9-7556-432d-90a7-576423629cc7.shogun-image {
  box-sizing: border-box;
}



.s-a54256b9-7556-432d-90a7-576423629cc7 img.shogun-image {
  
}


}@media (max-width: 767px){#s-a54256b9-7556-432d-90a7-576423629cc7 {
  margin: 0 !important;
  overflow: visible;
}

#s-a54256b9-7556-432d-90a7-576423629cc7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a54256b9-7556-432d-90a7-576423629cc7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a54256b9-7556-432d-90a7-576423629cc7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a54256b9-7556-432d-90a7-576423629cc7 img.shogun-image {
  /* Add background color handling */
  
}

#s-a54256b9-7556-432d-90a7-576423629cc7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-a54256b9-7556-432d-90a7-576423629cc7.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-a54256b9-7556-432d-90a7-576423629cc7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a54256b9-7556-432d-90a7-576423629cc7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a54256b9-7556-432d-90a7-576423629cc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a54256b9-7556-432d-90a7-576423629cc7.shogun-image {
  box-sizing: border-box;
}



.s-a54256b9-7556-432d-90a7-576423629cc7 img.shogun-image {
  
}


}
#s-20ee21e9-101b-4337-b44c-84c8bc516735 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-20ee21e9-101b-4337-b44c-84c8bc516735 .shogun-heading-component h2 {
  color: ;
  font-weight:  500 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.4em;
  
  
  
}



#s-df95115b-046f-4658-a6fe-38264f90c049 {
  min-height: 50px;
}








#s-df95115b-046f-4658-a6fe-38264f90c049 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-df95115b-046f-4658-a6fe-38264f90c049.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b9e80e09-7126-46d8-bf91-d6a5135cca8f {
  margin-bottom: 3%;
max-width: 20%;
aspect-ratio: 1/1;
text-align: center;
}

#s-b9e80e09-7126-46d8-bf91-d6a5135cca8f {
  margin: 0 !important;
  overflow: visible;
}

#s-b9e80e09-7126-46d8-bf91-d6a5135cca8f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b9e80e09-7126-46d8-bf91-d6a5135cca8f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  margin-bottom: 3%;
}

.shg-image-content-margin-container-s-b9e80e09-7126-46d8-bf91-d6a5135cca8f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b9e80e09-7126-46d8-bf91-d6a5135cca8f img.shogun-image {
  /* Add background color handling */
  
}

#s-b9e80e09-7126-46d8-bf91-d6a5135cca8f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b9e80e09-7126-46d8-bf91-d6a5135cca8f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b9e80e09-7126-46d8-bf91-d6a5135cca8f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b9e80e09-7126-46d8-bf91-d6a5135cca8f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b9e80e09-7126-46d8-bf91-d6a5135cca8f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-b9e80e09-7126-46d8-bf91-d6a5135cca8f .shogun-image-content {
  
    justify-content: center;
  
}

.s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image {
  box-sizing: border-box;
}



.s-b9e80e09-7126-46d8-bf91-d6a5135cca8f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b9e80e09-7126-46d8-bf91-d6a5135cca8f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image-container {
      position: relative;
    }

    .s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b9e80e09-7126-46d8-bf91-d6a5135cca8f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

@media (min-width: 1200px){#s-b9e80e09-7126-46d8-bf91-d6a5135cca8f {
  margin: 0 !important;
  overflow: visible;
}

#s-b9e80e09-7126-46d8-bf91-d6a5135cca8f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b9e80e09-7126-46d8-bf91-d6a5135cca8f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b9e80e09-7126-46d8-bf91-d6a5135cca8f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b9e80e09-7126-46d8-bf91-d6a5135cca8f img.shogun-image {
  /* Add background color handling */
  
}

#s-b9e80e09-7126-46d8-bf91-d6a5135cca8f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b9e80e09-7126-46d8-bf91-d6a5135cca8f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b9e80e09-7126-46d8-bf91-d6a5135cca8f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b9e80e09-7126-46d8-bf91-d6a5135cca8f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b9e80e09-7126-46d8-bf91-d6a5135cca8f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-b9e80e09-7126-46d8-bf91-d6a5135cca8f .shogun-image-content {
  
    justify-content: center;
  
}

.s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image {
  box-sizing: border-box;
}



.s-b9e80e09-7126-46d8-bf91-d6a5135cca8f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b9e80e09-7126-46d8-bf91-d6a5135cca8f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image-container {
      position: relative;
    }

    .s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b9e80e09-7126-46d8-bf91-d6a5135cca8f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-b9e80e09-7126-46d8-bf91-d6a5135cca8f {
  margin: 0 !important;
  overflow: visible;
}

#s-b9e80e09-7126-46d8-bf91-d6a5135cca8f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b9e80e09-7126-46d8-bf91-d6a5135cca8f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b9e80e09-7126-46d8-bf91-d6a5135cca8f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b9e80e09-7126-46d8-bf91-d6a5135cca8f img.shogun-image {
  /* Add background color handling */
  
}

#s-b9e80e09-7126-46d8-bf91-d6a5135cca8f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b9e80e09-7126-46d8-bf91-d6a5135cca8f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b9e80e09-7126-46d8-bf91-d6a5135cca8f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b9e80e09-7126-46d8-bf91-d6a5135cca8f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b9e80e09-7126-46d8-bf91-d6a5135cca8f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-b9e80e09-7126-46d8-bf91-d6a5135cca8f .shogun-image-content {
  
    justify-content: center;
  
}

.s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image {
  box-sizing: border-box;
}



.s-b9e80e09-7126-46d8-bf91-d6a5135cca8f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b9e80e09-7126-46d8-bf91-d6a5135cca8f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image-container {
      position: relative;
    }

    .s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b9e80e09-7126-46d8-bf91-d6a5135cca8f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-b9e80e09-7126-46d8-bf91-d6a5135cca8f {
  margin: 0 !important;
  overflow: visible;
}

#s-b9e80e09-7126-46d8-bf91-d6a5135cca8f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b9e80e09-7126-46d8-bf91-d6a5135cca8f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b9e80e09-7126-46d8-bf91-d6a5135cca8f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b9e80e09-7126-46d8-bf91-d6a5135cca8f img.shogun-image {
  /* Add background color handling */
  
}

#s-b9e80e09-7126-46d8-bf91-d6a5135cca8f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b9e80e09-7126-46d8-bf91-d6a5135cca8f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b9e80e09-7126-46d8-bf91-d6a5135cca8f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b9e80e09-7126-46d8-bf91-d6a5135cca8f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b9e80e09-7126-46d8-bf91-d6a5135cca8f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-b9e80e09-7126-46d8-bf91-d6a5135cca8f .shogun-image-content {
  
    justify-content: center;
  
}

.s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image {
  box-sizing: border-box;
}



.s-b9e80e09-7126-46d8-bf91-d6a5135cca8f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b9e80e09-7126-46d8-bf91-d6a5135cca8f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image-container {
      position: relative;
    }

    .s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b9e80e09-7126-46d8-bf91-d6a5135cca8f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (max-width: 767px){#s-b9e80e09-7126-46d8-bf91-d6a5135cca8f {
  margin: 0 !important;
  overflow: visible;
}

#s-b9e80e09-7126-46d8-bf91-d6a5135cca8f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b9e80e09-7126-46d8-bf91-d6a5135cca8f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b9e80e09-7126-46d8-bf91-d6a5135cca8f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b9e80e09-7126-46d8-bf91-d6a5135cca8f img.shogun-image {
  /* Add background color handling */
  
}

#s-b9e80e09-7126-46d8-bf91-d6a5135cca8f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b9e80e09-7126-46d8-bf91-d6a5135cca8f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b9e80e09-7126-46d8-bf91-d6a5135cca8f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b9e80e09-7126-46d8-bf91-d6a5135cca8f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b9e80e09-7126-46d8-bf91-d6a5135cca8f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-b9e80e09-7126-46d8-bf91-d6a5135cca8f .shogun-image-content {
  
    justify-content: center;
  
}

.s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image {
  box-sizing: border-box;
}



.s-b9e80e09-7126-46d8-bf91-d6a5135cca8f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b9e80e09-7126-46d8-bf91-d6a5135cca8f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image-container {
      position: relative;
    }

    .s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b9e80e09-7126-46d8-bf91-d6a5135cca8f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b9e80e09-7126-46d8-bf91-d6a5135cca8f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}
#s-99ac9266-1335-4c67-87be-70e14f0ef381 {
  max-width: 20%;
aspect-ratio: 2570/470;
text-align: center;
}

#s-99ac9266-1335-4c67-87be-70e14f0ef381 {
  margin: 0 !important;
  overflow: visible;
}

#s-99ac9266-1335-4c67-87be-70e14f0ef381-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-99ac9266-1335-4c67-87be-70e14f0ef381 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-99ac9266-1335-4c67-87be-70e14f0ef381 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-99ac9266-1335-4c67-87be-70e14f0ef381 img.shogun-image {
  /* Add background color handling */
  
}

#s-99ac9266-1335-4c67-87be-70e14f0ef381 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-99ac9266-1335-4c67-87be-70e14f0ef381.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-99ac9266-1335-4c67-87be-70e14f0ef381 .shogun-image-content {
  
    justify-content: center;
  
}

.s-99ac9266-1335-4c67-87be-70e14f0ef381.shg-align-container {
  display: flex;
  justify-content: center
}

.s-99ac9266-1335-4c67-87be-70e14f0ef381.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99ac9266-1335-4c67-87be-70e14f0ef381.shogun-image {
  box-sizing: border-box;
}



.s-99ac9266-1335-4c67-87be-70e14f0ef381 img.shogun-image {
  
}


@media (min-width: 1200px){#s-99ac9266-1335-4c67-87be-70e14f0ef381 {
  margin: 0 !important;
  overflow: visible;
}

#s-99ac9266-1335-4c67-87be-70e14f0ef381-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-99ac9266-1335-4c67-87be-70e14f0ef381 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-99ac9266-1335-4c67-87be-70e14f0ef381 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-99ac9266-1335-4c67-87be-70e14f0ef381 img.shogun-image {
  /* Add background color handling */
  
}

#s-99ac9266-1335-4c67-87be-70e14f0ef381 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-99ac9266-1335-4c67-87be-70e14f0ef381.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-99ac9266-1335-4c67-87be-70e14f0ef381 .shogun-image-content {
  
    justify-content: center;
  
}

.s-99ac9266-1335-4c67-87be-70e14f0ef381.shg-align-container {
  display: flex;
  justify-content: center
}

.s-99ac9266-1335-4c67-87be-70e14f0ef381.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99ac9266-1335-4c67-87be-70e14f0ef381.shogun-image {
  box-sizing: border-box;
}



.s-99ac9266-1335-4c67-87be-70e14f0ef381 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-99ac9266-1335-4c67-87be-70e14f0ef381 {
  margin: 0 !important;
  overflow: visible;
}

#s-99ac9266-1335-4c67-87be-70e14f0ef381-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-99ac9266-1335-4c67-87be-70e14f0ef381 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-99ac9266-1335-4c67-87be-70e14f0ef381 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-99ac9266-1335-4c67-87be-70e14f0ef381 img.shogun-image {
  /* Add background color handling */
  
}

#s-99ac9266-1335-4c67-87be-70e14f0ef381 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-99ac9266-1335-4c67-87be-70e14f0ef381.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-99ac9266-1335-4c67-87be-70e14f0ef381 .shogun-image-content {
  
    justify-content: center;
  
}

.s-99ac9266-1335-4c67-87be-70e14f0ef381.shg-align-container {
  display: flex;
  justify-content: center
}

.s-99ac9266-1335-4c67-87be-70e14f0ef381.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99ac9266-1335-4c67-87be-70e14f0ef381.shogun-image {
  box-sizing: border-box;
}



.s-99ac9266-1335-4c67-87be-70e14f0ef381 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-99ac9266-1335-4c67-87be-70e14f0ef381 {
  margin: 0 !important;
  overflow: visible;
}

#s-99ac9266-1335-4c67-87be-70e14f0ef381-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-99ac9266-1335-4c67-87be-70e14f0ef381 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-99ac9266-1335-4c67-87be-70e14f0ef381 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-99ac9266-1335-4c67-87be-70e14f0ef381 img.shogun-image {
  /* Add background color handling */
  
}

#s-99ac9266-1335-4c67-87be-70e14f0ef381 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-99ac9266-1335-4c67-87be-70e14f0ef381.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-99ac9266-1335-4c67-87be-70e14f0ef381 .shogun-image-content {
  
    justify-content: center;
  
}

.s-99ac9266-1335-4c67-87be-70e14f0ef381.shg-align-container {
  display: flex;
  justify-content: center
}

.s-99ac9266-1335-4c67-87be-70e14f0ef381.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99ac9266-1335-4c67-87be-70e14f0ef381.shogun-image {
  box-sizing: border-box;
}



.s-99ac9266-1335-4c67-87be-70e14f0ef381 img.shogun-image {
  
}


}@media (max-width: 767px){#s-99ac9266-1335-4c67-87be-70e14f0ef381 {
  margin: 0 !important;
  overflow: visible;
}

#s-99ac9266-1335-4c67-87be-70e14f0ef381-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-99ac9266-1335-4c67-87be-70e14f0ef381 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-99ac9266-1335-4c67-87be-70e14f0ef381 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-99ac9266-1335-4c67-87be-70e14f0ef381 img.shogun-image {
  /* Add background color handling */
  
}

#s-99ac9266-1335-4c67-87be-70e14f0ef381 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-99ac9266-1335-4c67-87be-70e14f0ef381.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-99ac9266-1335-4c67-87be-70e14f0ef381 .shogun-image-content {
  
    justify-content: center;
  
}

.s-99ac9266-1335-4c67-87be-70e14f0ef381.shg-align-container {
  display: flex;
  justify-content: center
}

.s-99ac9266-1335-4c67-87be-70e14f0ef381.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99ac9266-1335-4c67-87be-70e14f0ef381.shogun-image {
  box-sizing: border-box;
}



.s-99ac9266-1335-4c67-87be-70e14f0ef381 img.shogun-image {
  
}


}
#s-b91c19c8-2490-476c-9f92-0edfa6d25078 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b91c19c8-2490-476c-9f92-0edfa6d25078 .shogun-heading-component h2 {
  color: ;
  font-weight:  500 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.4em;
  
  
  
}



#s-d40951a8-f76e-4014-930f-6553d3932071 {
  min-height: 50px;
}








#s-d40951a8-f76e-4014-930f-6553d3932071 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d40951a8-f76e-4014-930f-6553d3932071.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7d934cda-41df-4c8d-9135-aae7bb654c1d {
  margin-bottom: 3%;
max-width: 20%;
aspect-ratio: 1/1;
text-align: center;
}

#s-7d934cda-41df-4c8d-9135-aae7bb654c1d {
  margin: 0 !important;
  overflow: visible;
}

#s-7d934cda-41df-4c8d-9135-aae7bb654c1d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7d934cda-41df-4c8d-9135-aae7bb654c1d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  margin-bottom: 3%;
}

.shg-image-content-margin-container-s-7d934cda-41df-4c8d-9135-aae7bb654c1d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7d934cda-41df-4c8d-9135-aae7bb654c1d img.shogun-image {
  /* Add background color handling */
  
}

#s-7d934cda-41df-4c8d-9135-aae7bb654c1d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7d934cda-41df-4c8d-9135-aae7bb654c1d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-7d934cda-41df-4c8d-9135-aae7bb654c1d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7d934cda-41df-4c8d-9135-aae7bb654c1d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7d934cda-41df-4c8d-9135-aae7bb654c1d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-7d934cda-41df-4c8d-9135-aae7bb654c1d .shogun-image-content {
  
    justify-content: center;
  
}

.s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image {
  box-sizing: border-box;
}



.s-7d934cda-41df-4c8d-9135-aae7bb654c1d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7d934cda-41df-4c8d-9135-aae7bb654c1d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image-container {
      position: relative;
    }

    .s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d934cda-41df-4c8d-9135-aae7bb654c1d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

@media (min-width: 1200px){#s-7d934cda-41df-4c8d-9135-aae7bb654c1d {
  margin: 0 !important;
  overflow: visible;
}

#s-7d934cda-41df-4c8d-9135-aae7bb654c1d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7d934cda-41df-4c8d-9135-aae7bb654c1d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7d934cda-41df-4c8d-9135-aae7bb654c1d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7d934cda-41df-4c8d-9135-aae7bb654c1d img.shogun-image {
  /* Add background color handling */
  
}

#s-7d934cda-41df-4c8d-9135-aae7bb654c1d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7d934cda-41df-4c8d-9135-aae7bb654c1d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-7d934cda-41df-4c8d-9135-aae7bb654c1d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7d934cda-41df-4c8d-9135-aae7bb654c1d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7d934cda-41df-4c8d-9135-aae7bb654c1d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-7d934cda-41df-4c8d-9135-aae7bb654c1d .shogun-image-content {
  
    justify-content: center;
  
}

.s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image {
  box-sizing: border-box;
}



.s-7d934cda-41df-4c8d-9135-aae7bb654c1d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7d934cda-41df-4c8d-9135-aae7bb654c1d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image-container {
      position: relative;
    }

    .s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d934cda-41df-4c8d-9135-aae7bb654c1d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-7d934cda-41df-4c8d-9135-aae7bb654c1d {
  margin: 0 !important;
  overflow: visible;
}

#s-7d934cda-41df-4c8d-9135-aae7bb654c1d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7d934cda-41df-4c8d-9135-aae7bb654c1d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7d934cda-41df-4c8d-9135-aae7bb654c1d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7d934cda-41df-4c8d-9135-aae7bb654c1d img.shogun-image {
  /* Add background color handling */
  
}

#s-7d934cda-41df-4c8d-9135-aae7bb654c1d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7d934cda-41df-4c8d-9135-aae7bb654c1d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-7d934cda-41df-4c8d-9135-aae7bb654c1d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7d934cda-41df-4c8d-9135-aae7bb654c1d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7d934cda-41df-4c8d-9135-aae7bb654c1d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-7d934cda-41df-4c8d-9135-aae7bb654c1d .shogun-image-content {
  
    justify-content: center;
  
}

.s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image {
  box-sizing: border-box;
}



.s-7d934cda-41df-4c8d-9135-aae7bb654c1d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7d934cda-41df-4c8d-9135-aae7bb654c1d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image-container {
      position: relative;
    }

    .s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d934cda-41df-4c8d-9135-aae7bb654c1d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-7d934cda-41df-4c8d-9135-aae7bb654c1d {
  margin: 0 !important;
  overflow: visible;
}

#s-7d934cda-41df-4c8d-9135-aae7bb654c1d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7d934cda-41df-4c8d-9135-aae7bb654c1d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7d934cda-41df-4c8d-9135-aae7bb654c1d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7d934cda-41df-4c8d-9135-aae7bb654c1d img.shogun-image {
  /* Add background color handling */
  
}

#s-7d934cda-41df-4c8d-9135-aae7bb654c1d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7d934cda-41df-4c8d-9135-aae7bb654c1d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-7d934cda-41df-4c8d-9135-aae7bb654c1d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7d934cda-41df-4c8d-9135-aae7bb654c1d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7d934cda-41df-4c8d-9135-aae7bb654c1d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-7d934cda-41df-4c8d-9135-aae7bb654c1d .shogun-image-content {
  
    justify-content: center;
  
}

.s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image {
  box-sizing: border-box;
}



.s-7d934cda-41df-4c8d-9135-aae7bb654c1d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7d934cda-41df-4c8d-9135-aae7bb654c1d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image-container {
      position: relative;
    }

    .s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d934cda-41df-4c8d-9135-aae7bb654c1d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (max-width: 767px){#s-7d934cda-41df-4c8d-9135-aae7bb654c1d {
  margin: 0 !important;
  overflow: visible;
}

#s-7d934cda-41df-4c8d-9135-aae7bb654c1d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7d934cda-41df-4c8d-9135-aae7bb654c1d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7d934cda-41df-4c8d-9135-aae7bb654c1d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7d934cda-41df-4c8d-9135-aae7bb654c1d img.shogun-image {
  /* Add background color handling */
  
}

#s-7d934cda-41df-4c8d-9135-aae7bb654c1d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7d934cda-41df-4c8d-9135-aae7bb654c1d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-7d934cda-41df-4c8d-9135-aae7bb654c1d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7d934cda-41df-4c8d-9135-aae7bb654c1d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7d934cda-41df-4c8d-9135-aae7bb654c1d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-7d934cda-41df-4c8d-9135-aae7bb654c1d .shogun-image-content {
  
    justify-content: center;
  
}

.s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image {
  box-sizing: border-box;
}



.s-7d934cda-41df-4c8d-9135-aae7bb654c1d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7d934cda-41df-4c8d-9135-aae7bb654c1d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image-container {
      position: relative;
    }

    .s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d934cda-41df-4c8d-9135-aae7bb654c1d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d934cda-41df-4c8d-9135-aae7bb654c1d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}
#s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 {
  max-width: 20%;
aspect-ratio: 2570/470;
text-align: center;
}

#s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 {
  margin: 0 !important;
  overflow: visible;
}

#s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 img.shogun-image {
  /* Add background color handling */
  
}

#s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 .shg-image-content-wrapper {
      aspect-ratio: 2570/470;
      min-width: 100%;
      height: auto;
    }

    #s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 .shogun-image-link {
      aspect-ratio: 2570/470;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image {
  box-sizing: border-box;
}



.s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 {
      --shg-aspect-ratio: calc(2570/470); 
    }

    .s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image-container {
      position: relative;
    }

    .s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

@media (min-width: 1200px){#s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 {
  margin: 0 !important;
  overflow: visible;
}

#s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 img.shogun-image {
  /* Add background color handling */
  
}

#s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 .shg-image-content-wrapper {
      aspect-ratio: 2570/470;
      min-width: 100%;
      height: auto;
    }

    #s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 .shogun-image-link {
      aspect-ratio: 2570/470;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image {
  box-sizing: border-box;
}



.s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 {
      --shg-aspect-ratio: calc(2570/470); 
    }

    .s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image-container {
      position: relative;
    }

    .s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 {
  margin: 0 !important;
  overflow: visible;
}

#s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 img.shogun-image {
  /* Add background color handling */
  
}

#s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 .shg-image-content-wrapper {
      aspect-ratio: 2570/470;
      min-width: 100%;
      height: auto;
    }

    #s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 .shogun-image-link {
      aspect-ratio: 2570/470;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image {
  box-sizing: border-box;
}



.s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 {
      --shg-aspect-ratio: calc(2570/470); 
    }

    .s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image-container {
      position: relative;
    }

    .s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 {
  margin: 0 !important;
  overflow: visible;
}

#s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 img.shogun-image {
  /* Add background color handling */
  
}

#s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 .shg-image-content-wrapper {
      aspect-ratio: 2570/470;
      min-width: 100%;
      height: auto;
    }

    #s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 .shogun-image-link {
      aspect-ratio: 2570/470;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image {
  box-sizing: border-box;
}



.s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 {
      --shg-aspect-ratio: calc(2570/470); 
    }

    .s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image-container {
      position: relative;
    }

    .s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (max-width: 767px){#s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 {
  margin: 0 !important;
  overflow: visible;
}

#s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 img.shogun-image {
  /* Add background color handling */
  
}

#s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 .shg-image-content-wrapper {
      aspect-ratio: 2570/470;
      min-width: 100%;
      height: auto;
    }

    #s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 .shogun-image-link {
      aspect-ratio: 2570/470;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image {
  box-sizing: border-box;
}



.s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 {
      --shg-aspect-ratio: calc(2570/470); 
    }

    .s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image-container {
      position: relative;
    }

    .s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e90ab66b-cbf4-47ed-87dd-0ba6fcea5d39 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}
#s-fcd87b9a-828e-472b-aea8-8f5f089f9668 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-fcd87b9a-828e-472b-aea8-8f5f089f9668 .shogun-heading-component h2 {
  color: ;
  font-weight:  500 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.4em;
  line-height: 1.2em;
  
  
}



#s-d783de83-0f0b-4e4d-9b4b-67fc2e1bdbde {
  min-height: 50px;
}








#s-d783de83-0f0b-4e4d-9b4b-67fc2e1bdbde > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d783de83-0f0b-4e4d-9b4b-67fc2e1bdbde.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ce7914d4-72ad-4349-acf2-10510573bef6 {
  margin-bottom: 3%;
max-width: 20%;
aspect-ratio: 1/1;
text-align: center;
}

#s-ce7914d4-72ad-4349-acf2-10510573bef6 {
  margin: 0 !important;
  overflow: visible;
}

#s-ce7914d4-72ad-4349-acf2-10510573bef6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ce7914d4-72ad-4349-acf2-10510573bef6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  margin-bottom: 3%;
}

.shg-image-content-margin-container-s-ce7914d4-72ad-4349-acf2-10510573bef6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ce7914d4-72ad-4349-acf2-10510573bef6 img.shogun-image {
  /* Add background color handling */
  
}

#s-ce7914d4-72ad-4349-acf2-10510573bef6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ce7914d4-72ad-4349-acf2-10510573bef6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ce7914d4-72ad-4349-acf2-10510573bef6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ce7914d4-72ad-4349-acf2-10510573bef6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ce7914d4-72ad-4349-acf2-10510573bef6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-ce7914d4-72ad-4349-acf2-10510573bef6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ce7914d4-72ad-4349-acf2-10510573bef6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image {
  box-sizing: border-box;
}



.s-ce7914d4-72ad-4349-acf2-10510573bef6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ce7914d4-72ad-4349-acf2-10510573bef6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image-container {
      position: relative;
    }

    .s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ce7914d4-72ad-4349-acf2-10510573bef6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

@media (min-width: 1200px){#s-ce7914d4-72ad-4349-acf2-10510573bef6 {
  margin: 0 !important;
  overflow: visible;
}

#s-ce7914d4-72ad-4349-acf2-10510573bef6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ce7914d4-72ad-4349-acf2-10510573bef6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ce7914d4-72ad-4349-acf2-10510573bef6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ce7914d4-72ad-4349-acf2-10510573bef6 img.shogun-image {
  /* Add background color handling */
  
}

#s-ce7914d4-72ad-4349-acf2-10510573bef6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ce7914d4-72ad-4349-acf2-10510573bef6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ce7914d4-72ad-4349-acf2-10510573bef6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ce7914d4-72ad-4349-acf2-10510573bef6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ce7914d4-72ad-4349-acf2-10510573bef6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-ce7914d4-72ad-4349-acf2-10510573bef6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ce7914d4-72ad-4349-acf2-10510573bef6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image {
  box-sizing: border-box;
}



.s-ce7914d4-72ad-4349-acf2-10510573bef6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ce7914d4-72ad-4349-acf2-10510573bef6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image-container {
      position: relative;
    }

    .s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ce7914d4-72ad-4349-acf2-10510573bef6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-ce7914d4-72ad-4349-acf2-10510573bef6 {
  margin: 0 !important;
  overflow: visible;
}

#s-ce7914d4-72ad-4349-acf2-10510573bef6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ce7914d4-72ad-4349-acf2-10510573bef6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ce7914d4-72ad-4349-acf2-10510573bef6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ce7914d4-72ad-4349-acf2-10510573bef6 img.shogun-image {
  /* Add background color handling */
  
}

#s-ce7914d4-72ad-4349-acf2-10510573bef6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ce7914d4-72ad-4349-acf2-10510573bef6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ce7914d4-72ad-4349-acf2-10510573bef6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ce7914d4-72ad-4349-acf2-10510573bef6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ce7914d4-72ad-4349-acf2-10510573bef6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-ce7914d4-72ad-4349-acf2-10510573bef6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ce7914d4-72ad-4349-acf2-10510573bef6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image {
  box-sizing: border-box;
}



.s-ce7914d4-72ad-4349-acf2-10510573bef6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ce7914d4-72ad-4349-acf2-10510573bef6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image-container {
      position: relative;
    }

    .s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ce7914d4-72ad-4349-acf2-10510573bef6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-ce7914d4-72ad-4349-acf2-10510573bef6 {
  margin: 0 !important;
  overflow: visible;
}

#s-ce7914d4-72ad-4349-acf2-10510573bef6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ce7914d4-72ad-4349-acf2-10510573bef6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ce7914d4-72ad-4349-acf2-10510573bef6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ce7914d4-72ad-4349-acf2-10510573bef6 img.shogun-image {
  /* Add background color handling */
  
}

#s-ce7914d4-72ad-4349-acf2-10510573bef6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ce7914d4-72ad-4349-acf2-10510573bef6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ce7914d4-72ad-4349-acf2-10510573bef6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ce7914d4-72ad-4349-acf2-10510573bef6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ce7914d4-72ad-4349-acf2-10510573bef6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-ce7914d4-72ad-4349-acf2-10510573bef6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ce7914d4-72ad-4349-acf2-10510573bef6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image {
  box-sizing: border-box;
}



.s-ce7914d4-72ad-4349-acf2-10510573bef6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ce7914d4-72ad-4349-acf2-10510573bef6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image-container {
      position: relative;
    }

    .s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ce7914d4-72ad-4349-acf2-10510573bef6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (max-width: 767px){#s-ce7914d4-72ad-4349-acf2-10510573bef6 {
  margin: 0 !important;
  overflow: visible;
}

#s-ce7914d4-72ad-4349-acf2-10510573bef6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ce7914d4-72ad-4349-acf2-10510573bef6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ce7914d4-72ad-4349-acf2-10510573bef6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ce7914d4-72ad-4349-acf2-10510573bef6 img.shogun-image {
  /* Add background color handling */
  
}

#s-ce7914d4-72ad-4349-acf2-10510573bef6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ce7914d4-72ad-4349-acf2-10510573bef6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ce7914d4-72ad-4349-acf2-10510573bef6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ce7914d4-72ad-4349-acf2-10510573bef6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ce7914d4-72ad-4349-acf2-10510573bef6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-ce7914d4-72ad-4349-acf2-10510573bef6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ce7914d4-72ad-4349-acf2-10510573bef6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image {
  box-sizing: border-box;
}



.s-ce7914d4-72ad-4349-acf2-10510573bef6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ce7914d4-72ad-4349-acf2-10510573bef6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image-container {
      position: relative;
    }

    .s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ce7914d4-72ad-4349-acf2-10510573bef6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ce7914d4-72ad-4349-acf2-10510573bef6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}
#s-228c3d07-e72d-4b15-b01e-46b5b405ce7c {
  max-width: 20%;
aspect-ratio: 2570/470;
text-align: center;
}

#s-228c3d07-e72d-4b15-b01e-46b5b405ce7c {
  margin: 0 !important;
  overflow: visible;
}

#s-228c3d07-e72d-4b15-b01e-46b5b405ce7c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-228c3d07-e72d-4b15-b01e-46b5b405ce7c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-228c3d07-e72d-4b15-b01e-46b5b405ce7c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-228c3d07-e72d-4b15-b01e-46b5b405ce7c img.shogun-image {
  /* Add background color handling */
  
}

#s-228c3d07-e72d-4b15-b01e-46b5b405ce7c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-228c3d07-e72d-4b15-b01e-46b5b405ce7c.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-228c3d07-e72d-4b15-b01e-46b5b405ce7c .shogun-image-content {
  
    justify-content: center;
  
}

.s-228c3d07-e72d-4b15-b01e-46b5b405ce7c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-228c3d07-e72d-4b15-b01e-46b5b405ce7c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-228c3d07-e72d-4b15-b01e-46b5b405ce7c.shogun-image {
  box-sizing: border-box;
}



.s-228c3d07-e72d-4b15-b01e-46b5b405ce7c img.shogun-image {
  
}


@media (min-width: 1200px){#s-228c3d07-e72d-4b15-b01e-46b5b405ce7c {
  margin: 0 !important;
  overflow: visible;
}

#s-228c3d07-e72d-4b15-b01e-46b5b405ce7c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-228c3d07-e72d-4b15-b01e-46b5b405ce7c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-228c3d07-e72d-4b15-b01e-46b5b405ce7c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-228c3d07-e72d-4b15-b01e-46b5b405ce7c img.shogun-image {
  /* Add background color handling */
  
}

#s-228c3d07-e72d-4b15-b01e-46b5b405ce7c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-228c3d07-e72d-4b15-b01e-46b5b405ce7c.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-228c3d07-e72d-4b15-b01e-46b5b405ce7c .shogun-image-content {
  
    justify-content: center;
  
}

.s-228c3d07-e72d-4b15-b01e-46b5b405ce7c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-228c3d07-e72d-4b15-b01e-46b5b405ce7c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-228c3d07-e72d-4b15-b01e-46b5b405ce7c.shogun-image {
  box-sizing: border-box;
}



.s-228c3d07-e72d-4b15-b01e-46b5b405ce7c img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-228c3d07-e72d-4b15-b01e-46b5b405ce7c {
  margin: 0 !important;
  overflow: visible;
}

#s-228c3d07-e72d-4b15-b01e-46b5b405ce7c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-228c3d07-e72d-4b15-b01e-46b5b405ce7c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-228c3d07-e72d-4b15-b01e-46b5b405ce7c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-228c3d07-e72d-4b15-b01e-46b5b405ce7c img.shogun-image {
  /* Add background color handling */
  
}

#s-228c3d07-e72d-4b15-b01e-46b5b405ce7c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-228c3d07-e72d-4b15-b01e-46b5b405ce7c.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-228c3d07-e72d-4b15-b01e-46b5b405ce7c .shogun-image-content {
  
    justify-content: center;
  
}

.s-228c3d07-e72d-4b15-b01e-46b5b405ce7c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-228c3d07-e72d-4b15-b01e-46b5b405ce7c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-228c3d07-e72d-4b15-b01e-46b5b405ce7c.shogun-image {
  box-sizing: border-box;
}



.s-228c3d07-e72d-4b15-b01e-46b5b405ce7c img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-228c3d07-e72d-4b15-b01e-46b5b405ce7c {
  margin: 0 !important;
  overflow: visible;
}

#s-228c3d07-e72d-4b15-b01e-46b5b405ce7c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-228c3d07-e72d-4b15-b01e-46b5b405ce7c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-228c3d07-e72d-4b15-b01e-46b5b405ce7c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-228c3d07-e72d-4b15-b01e-46b5b405ce7c img.shogun-image {
  /* Add background color handling */
  
}

#s-228c3d07-e72d-4b15-b01e-46b5b405ce7c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-228c3d07-e72d-4b15-b01e-46b5b405ce7c.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-228c3d07-e72d-4b15-b01e-46b5b405ce7c .shogun-image-content {
  
    justify-content: center;
  
}

.s-228c3d07-e72d-4b15-b01e-46b5b405ce7c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-228c3d07-e72d-4b15-b01e-46b5b405ce7c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-228c3d07-e72d-4b15-b01e-46b5b405ce7c.shogun-image {
  box-sizing: border-box;
}



.s-228c3d07-e72d-4b15-b01e-46b5b405ce7c img.shogun-image {
  
}


}@media (max-width: 767px){#s-228c3d07-e72d-4b15-b01e-46b5b405ce7c {
  margin: 0 !important;
  overflow: visible;
}

#s-228c3d07-e72d-4b15-b01e-46b5b405ce7c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-228c3d07-e72d-4b15-b01e-46b5b405ce7c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-228c3d07-e72d-4b15-b01e-46b5b405ce7c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-228c3d07-e72d-4b15-b01e-46b5b405ce7c img.shogun-image {
  /* Add background color handling */
  
}

#s-228c3d07-e72d-4b15-b01e-46b5b405ce7c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-228c3d07-e72d-4b15-b01e-46b5b405ce7c.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-228c3d07-e72d-4b15-b01e-46b5b405ce7c .shogun-image-content {
  
    justify-content: center;
  
}

.s-228c3d07-e72d-4b15-b01e-46b5b405ce7c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-228c3d07-e72d-4b15-b01e-46b5b405ce7c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-228c3d07-e72d-4b15-b01e-46b5b405ce7c.shogun-image {
  box-sizing: border-box;
}



.s-228c3d07-e72d-4b15-b01e-46b5b405ce7c img.shogun-image {
  
}


}
#s-17cc3037-17f1-48cf-a4eb-34a60c27b28e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-17cc3037-17f1-48cf-a4eb-34a60c27b28e .shogun-heading-component h2 {
  color: ;
  font-weight:  500 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.4em;
  
  
  
}



#s-1a55c6ad-a5c3-4fe1-9baf-43917f73a796 {
  min-height: 50px;
}








#s-1a55c6ad-a5c3-4fe1-9baf-43917f73a796 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1a55c6ad-a5c3-4fe1-9baf-43917f73a796.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a {
  margin-bottom: 4%;
max-width: 20%;
aspect-ratio: 1/1;
text-align: center;
}

#s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a {
  margin: 0 !important;
  overflow: visible;
}

#s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  margin-bottom: 4%;
}

.shg-image-content-margin-container-s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a img.shogun-image {
  /* Add background color handling */
  
}

#s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a .shogun-image-content {
  
    justify-content: center;
  
}

.s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image {
  box-sizing: border-box;
}



.s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image-container {
      position: relative;
    }

    .s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

@media (min-width: 1200px){#s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a {
  margin: 0 !important;
  overflow: visible;
}

#s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a img.shogun-image {
  /* Add background color handling */
  
}

#s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a .shogun-image-content {
  
    justify-content: center;
  
}

.s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image {
  box-sizing: border-box;
}



.s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image-container {
      position: relative;
    }

    .s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a {
  margin: 0 !important;
  overflow: visible;
}

#s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a img.shogun-image {
  /* Add background color handling */
  
}

#s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a .shogun-image-content {
  
    justify-content: center;
  
}

.s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image {
  box-sizing: border-box;
}



.s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image-container {
      position: relative;
    }

    .s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a {
  margin: 0 !important;
  overflow: visible;
}

#s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a img.shogun-image {
  /* Add background color handling */
  
}

#s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a .shogun-image-content {
  
    justify-content: center;
  
}

.s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image {
  box-sizing: border-box;
}



.s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image-container {
      position: relative;
    }

    .s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (max-width: 767px){#s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a {
  margin: 0 !important;
  overflow: visible;
}

#s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a img.shogun-image {
  /* Add background color handling */
  
}

#s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a .shogun-image-content {
  
    justify-content: center;
  
}

.s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image {
  box-sizing: border-box;
}



.s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image-container {
      position: relative;
    }

    .s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cca3556a-3ebb-46ef-9471-ea9db50e5e3a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}
#s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 {
  max-width: 20%;
aspect-ratio: 2570/469;
text-align: center;
}

#s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 {
  margin: 0 !important;
  overflow: visible;
}

#s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 img.shogun-image {
  /* Add background color handling */
  
}

#s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 .shg-image-content-wrapper {
      aspect-ratio: 2570/469;
      min-width: 100%;
      height: auto;
    }

    #s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 .shogun-image-link {
      aspect-ratio: 2570/469;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image {
  box-sizing: border-box;
}



.s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 {
      --shg-aspect-ratio: calc(2570/469); 
    }

    .s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image-container {
      position: relative;
    }

    .s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

@media (min-width: 1200px){#s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 {
  margin: 0 !important;
  overflow: visible;
}

#s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 img.shogun-image {
  /* Add background color handling */
  
}

#s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 .shg-image-content-wrapper {
      aspect-ratio: 2570/469;
      min-width: 100%;
      height: auto;
    }

    #s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 .shogun-image-link {
      aspect-ratio: 2570/469;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image {
  box-sizing: border-box;
}



.s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 {
      --shg-aspect-ratio: calc(2570/469); 
    }

    .s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image-container {
      position: relative;
    }

    .s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 {
  margin: 0 !important;
  overflow: visible;
}

#s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 img.shogun-image {
  /* Add background color handling */
  
}

#s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 .shg-image-content-wrapper {
      aspect-ratio: 2570/469;
      min-width: 100%;
      height: auto;
    }

    #s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 .shogun-image-link {
      aspect-ratio: 2570/469;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image {
  box-sizing: border-box;
}



.s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 {
      --shg-aspect-ratio: calc(2570/469); 
    }

    .s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image-container {
      position: relative;
    }

    .s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 {
  margin: 0 !important;
  overflow: visible;
}

#s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 img.shogun-image {
  /* Add background color handling */
  
}

#s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 .shg-image-content-wrapper {
      aspect-ratio: 2570/469;
      min-width: 100%;
      height: auto;
    }

    #s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 .shogun-image-link {
      aspect-ratio: 2570/469;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image {
  box-sizing: border-box;
}



.s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 {
      --shg-aspect-ratio: calc(2570/469); 
    }

    .s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image-container {
      position: relative;
    }

    .s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (max-width: 767px){#s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 {
  margin: 0 !important;
  overflow: visible;
}

#s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 img.shogun-image {
  /* Add background color handling */
  
}

#s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 .shg-image-content-wrapper {
      aspect-ratio: 2570/469;
      min-width: 100%;
      height: auto;
    }

    #s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 .shogun-image-link {
      aspect-ratio: 2570/469;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image {
  box-sizing: border-box;
}



.s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 {
      --shg-aspect-ratio: calc(2570/469); 
    }

    .s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image-container {
      position: relative;
    }

    .s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6d259e2f-c67c-4cd8-b7bd-dd2beee71524 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}
#s-5391edc9-778a-4865-8edb-65861f4041fd {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5391edc9-778a-4865-8edb-65861f4041fd .shogun-heading-component h2 {
  color: ;
  font-weight:  500 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.4em;
  
  
  
}



#s-3aac26ed-d12a-4142-9c38-b23a7b8b243c {
  min-height: 50px;
}








#s-3aac26ed-d12a-4142-9c38-b23a7b8b243c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3aac26ed-d12a-4142-9c38-b23a7b8b243c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3e846ef1-4bd2-46c2-807d-2582433b0ffb {
  margin-bottom: 3%;
max-width: 20%;
aspect-ratio: 1/1;
text-align: center;
}

#s-3e846ef1-4bd2-46c2-807d-2582433b0ffb {
  margin: 0 !important;
  overflow: visible;
}

#s-3e846ef1-4bd2-46c2-807d-2582433b0ffb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e846ef1-4bd2-46c2-807d-2582433b0ffb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  margin-bottom: 3%;
}

.shg-image-content-margin-container-s-3e846ef1-4bd2-46c2-807d-2582433b0ffb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e846ef1-4bd2-46c2-807d-2582433b0ffb img.shogun-image {
  /* Add background color handling */
  
}

#s-3e846ef1-4bd2-46c2-807d-2582433b0ffb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3e846ef1-4bd2-46c2-807d-2582433b0ffb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3e846ef1-4bd2-46c2-807d-2582433b0ffb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3e846ef1-4bd2-46c2-807d-2582433b0ffb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3e846ef1-4bd2-46c2-807d-2582433b0ffb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-3e846ef1-4bd2-46c2-807d-2582433b0ffb .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image {
  box-sizing: border-box;
}



.s-3e846ef1-4bd2-46c2-807d-2582433b0ffb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3e846ef1-4bd2-46c2-807d-2582433b0ffb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image-container {
      position: relative;
    }

    .s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e846ef1-4bd2-46c2-807d-2582433b0ffb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

@media (min-width: 1200px){#s-3e846ef1-4bd2-46c2-807d-2582433b0ffb {
  margin: 0 !important;
  overflow: visible;
}

#s-3e846ef1-4bd2-46c2-807d-2582433b0ffb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e846ef1-4bd2-46c2-807d-2582433b0ffb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3e846ef1-4bd2-46c2-807d-2582433b0ffb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e846ef1-4bd2-46c2-807d-2582433b0ffb img.shogun-image {
  /* Add background color handling */
  
}

#s-3e846ef1-4bd2-46c2-807d-2582433b0ffb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3e846ef1-4bd2-46c2-807d-2582433b0ffb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3e846ef1-4bd2-46c2-807d-2582433b0ffb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3e846ef1-4bd2-46c2-807d-2582433b0ffb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3e846ef1-4bd2-46c2-807d-2582433b0ffb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-3e846ef1-4bd2-46c2-807d-2582433b0ffb .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image {
  box-sizing: border-box;
}



.s-3e846ef1-4bd2-46c2-807d-2582433b0ffb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3e846ef1-4bd2-46c2-807d-2582433b0ffb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image-container {
      position: relative;
    }

    .s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e846ef1-4bd2-46c2-807d-2582433b0ffb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-3e846ef1-4bd2-46c2-807d-2582433b0ffb {
  margin: 0 !important;
  overflow: visible;
}

#s-3e846ef1-4bd2-46c2-807d-2582433b0ffb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e846ef1-4bd2-46c2-807d-2582433b0ffb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3e846ef1-4bd2-46c2-807d-2582433b0ffb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e846ef1-4bd2-46c2-807d-2582433b0ffb img.shogun-image {
  /* Add background color handling */
  
}

#s-3e846ef1-4bd2-46c2-807d-2582433b0ffb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3e846ef1-4bd2-46c2-807d-2582433b0ffb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3e846ef1-4bd2-46c2-807d-2582433b0ffb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3e846ef1-4bd2-46c2-807d-2582433b0ffb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3e846ef1-4bd2-46c2-807d-2582433b0ffb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-3e846ef1-4bd2-46c2-807d-2582433b0ffb .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image {
  box-sizing: border-box;
}



.s-3e846ef1-4bd2-46c2-807d-2582433b0ffb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3e846ef1-4bd2-46c2-807d-2582433b0ffb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image-container {
      position: relative;
    }

    .s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e846ef1-4bd2-46c2-807d-2582433b0ffb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-3e846ef1-4bd2-46c2-807d-2582433b0ffb {
  margin: 0 !important;
  overflow: visible;
}

#s-3e846ef1-4bd2-46c2-807d-2582433b0ffb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e846ef1-4bd2-46c2-807d-2582433b0ffb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3e846ef1-4bd2-46c2-807d-2582433b0ffb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e846ef1-4bd2-46c2-807d-2582433b0ffb img.shogun-image {
  /* Add background color handling */
  
}

#s-3e846ef1-4bd2-46c2-807d-2582433b0ffb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3e846ef1-4bd2-46c2-807d-2582433b0ffb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3e846ef1-4bd2-46c2-807d-2582433b0ffb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3e846ef1-4bd2-46c2-807d-2582433b0ffb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3e846ef1-4bd2-46c2-807d-2582433b0ffb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-3e846ef1-4bd2-46c2-807d-2582433b0ffb .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image {
  box-sizing: border-box;
}



.s-3e846ef1-4bd2-46c2-807d-2582433b0ffb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3e846ef1-4bd2-46c2-807d-2582433b0ffb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image-container {
      position: relative;
    }

    .s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e846ef1-4bd2-46c2-807d-2582433b0ffb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (max-width: 767px){#s-3e846ef1-4bd2-46c2-807d-2582433b0ffb {
  margin: 0 !important;
  overflow: visible;
}

#s-3e846ef1-4bd2-46c2-807d-2582433b0ffb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e846ef1-4bd2-46c2-807d-2582433b0ffb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3e846ef1-4bd2-46c2-807d-2582433b0ffb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e846ef1-4bd2-46c2-807d-2582433b0ffb img.shogun-image {
  /* Add background color handling */
  
}

#s-3e846ef1-4bd2-46c2-807d-2582433b0ffb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3e846ef1-4bd2-46c2-807d-2582433b0ffb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3e846ef1-4bd2-46c2-807d-2582433b0ffb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3e846ef1-4bd2-46c2-807d-2582433b0ffb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3e846ef1-4bd2-46c2-807d-2582433b0ffb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-3e846ef1-4bd2-46c2-807d-2582433b0ffb .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image {
  box-sizing: border-box;
}



.s-3e846ef1-4bd2-46c2-807d-2582433b0ffb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3e846ef1-4bd2-46c2-807d-2582433b0ffb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image-container {
      position: relative;
    }

    .s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e846ef1-4bd2-46c2-807d-2582433b0ffb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e846ef1-4bd2-46c2-807d-2582433b0ffb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}
#s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 {
  max-width: 20%;
aspect-ratio: 2570/469;
text-align: center;
}

#s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 {
  margin: 0 !important;
  overflow: visible;
}

#s-eda25d04-ce26-4ec5-bb52-3d030d6f5495-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 img.shogun-image {
  /* Add background color handling */
  
}

#s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-eda25d04-ce26-4ec5-bb52-3d030d6f5495.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 .shogun-image-content {
  
    justify-content: center;
  
}

.s-eda25d04-ce26-4ec5-bb52-3d030d6f5495.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eda25d04-ce26-4ec5-bb52-3d030d6f5495.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eda25d04-ce26-4ec5-bb52-3d030d6f5495.shogun-image {
  box-sizing: border-box;
}



.s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 img.shogun-image {
  
}


@media (min-width: 1200px){#s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 {
  margin: 0 !important;
  overflow: visible;
}

#s-eda25d04-ce26-4ec5-bb52-3d030d6f5495-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 img.shogun-image {
  /* Add background color handling */
  
}

#s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-eda25d04-ce26-4ec5-bb52-3d030d6f5495.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 .shogun-image-content {
  
    justify-content: center;
  
}

.s-eda25d04-ce26-4ec5-bb52-3d030d6f5495.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eda25d04-ce26-4ec5-bb52-3d030d6f5495.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eda25d04-ce26-4ec5-bb52-3d030d6f5495.shogun-image {
  box-sizing: border-box;
}



.s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 {
  margin: 0 !important;
  overflow: visible;
}

#s-eda25d04-ce26-4ec5-bb52-3d030d6f5495-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 img.shogun-image {
  /* Add background color handling */
  
}

#s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-eda25d04-ce26-4ec5-bb52-3d030d6f5495.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 .shogun-image-content {
  
    justify-content: center;
  
}

.s-eda25d04-ce26-4ec5-bb52-3d030d6f5495.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eda25d04-ce26-4ec5-bb52-3d030d6f5495.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eda25d04-ce26-4ec5-bb52-3d030d6f5495.shogun-image {
  box-sizing: border-box;
}



.s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 {
  margin: 0 !important;
  overflow: visible;
}

#s-eda25d04-ce26-4ec5-bb52-3d030d6f5495-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 img.shogun-image {
  /* Add background color handling */
  
}

#s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-eda25d04-ce26-4ec5-bb52-3d030d6f5495.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 .shogun-image-content {
  
    justify-content: center;
  
}

.s-eda25d04-ce26-4ec5-bb52-3d030d6f5495.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eda25d04-ce26-4ec5-bb52-3d030d6f5495.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eda25d04-ce26-4ec5-bb52-3d030d6f5495.shogun-image {
  box-sizing: border-box;
}



.s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 img.shogun-image {
  
}


}@media (max-width: 767px){#s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 {
  margin: 0 !important;
  overflow: visible;
}

#s-eda25d04-ce26-4ec5-bb52-3d030d6f5495-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 img.shogun-image {
  /* Add background color handling */
  
}

#s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-eda25d04-ce26-4ec5-bb52-3d030d6f5495.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 .shogun-image-content {
  
    justify-content: center;
  
}

.s-eda25d04-ce26-4ec5-bb52-3d030d6f5495.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eda25d04-ce26-4ec5-bb52-3d030d6f5495.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eda25d04-ce26-4ec5-bb52-3d030d6f5495.shogun-image {
  box-sizing: border-box;
}



.s-eda25d04-ce26-4ec5-bb52-3d030d6f5495 img.shogun-image {
  
}


}
#s-1ab2b6ef-2650-4da3-a120-6919d863c1db {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1ab2b6ef-2650-4da3-a120-6919d863c1db .shogun-heading-component h2 {
  color: ;
  font-weight:  500 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.4em;
  
  
  
}



#s-74c316ef-ffb4-4ddf-91c6-4425830b4d10 {
  min-height: 50px;
}








#s-74c316ef-ffb4-4ddf-91c6-4425830b4d10 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-74c316ef-ffb4-4ddf-91c6-4425830b4d10.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea {
  margin-bottom: 3%;
max-width: 20%;
aspect-ratio: 1/1;
text-align: center;
}

#s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea {
  margin: 0 !important;
  overflow: visible;
}

#s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  margin-bottom: 3%;
}

.shg-image-content-margin-container-s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea img.shogun-image {
  /* Add background color handling */
  
}

#s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea .shogun-image-content {
  
    justify-content: center;
  
}

.s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image {
  box-sizing: border-box;
}



.s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image-container {
      position: relative;
    }

    .s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

@media (min-width: 1200px){#s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea {
  margin: 0 !important;
  overflow: visible;
}

#s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea img.shogun-image {
  /* Add background color handling */
  
}

#s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea .shogun-image-content {
  
    justify-content: center;
  
}

.s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image {
  box-sizing: border-box;
}



.s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image-container {
      position: relative;
    }

    .s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea {
  margin: 0 !important;
  overflow: visible;
}

#s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea img.shogun-image {
  /* Add background color handling */
  
}

#s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea .shogun-image-content {
  
    justify-content: center;
  
}

.s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image {
  box-sizing: border-box;
}



.s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image-container {
      position: relative;
    }

    .s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea {
  margin: 0 !important;
  overflow: visible;
}

#s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea img.shogun-image {
  /* Add background color handling */
  
}

#s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea .shogun-image-content {
  
    justify-content: center;
  
}

.s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image {
  box-sizing: border-box;
}



.s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image-container {
      position: relative;
    }

    .s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}@media (max-width: 767px){#s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea {
  margin: 0 !important;
  overflow: visible;
}

#s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea img.shogun-image {
  /* Add background color handling */
  
}

#s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 20%;
  }



  img.s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea .shogun-image-content {
  
    justify-content: center;
  
}

.s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image {
  box-sizing: border-box;
}



.s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image-container {
      position: relative;
    }

    .s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b90c58f7-d1b2-4496-825d-b9417c4ce3ea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 20%;
    }
  }

}
#s-9dc262c9-edde-4998-a78b-d2b92d99b490 {
  max-width: 20%;
aspect-ratio: 2570/470;
text-align: center;
}

#s-9dc262c9-edde-4998-a78b-d2b92d99b490 {
  margin: 0 !important;
  overflow: visible;
}

#s-9dc262c9-edde-4998-a78b-d2b92d99b490-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9dc262c9-edde-4998-a78b-d2b92d99b490 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9dc262c9-edde-4998-a78b-d2b92d99b490 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9dc262c9-edde-4998-a78b-d2b92d99b490 img.shogun-image {
  /* Add background color handling */
  
}

#s-9dc262c9-edde-4998-a78b-d2b92d99b490 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-9dc262c9-edde-4998-a78b-d2b92d99b490.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-9dc262c9-edde-4998-a78b-d2b92d99b490 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9dc262c9-edde-4998-a78b-d2b92d99b490.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9dc262c9-edde-4998-a78b-d2b92d99b490.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9dc262c9-edde-4998-a78b-d2b92d99b490.shogun-image {
  box-sizing: border-box;
}



.s-9dc262c9-edde-4998-a78b-d2b92d99b490 img.shogun-image {
  
}


@media (min-width: 1200px){#s-9dc262c9-edde-4998-a78b-d2b92d99b490 {
  margin: 0 !important;
  overflow: visible;
}

#s-9dc262c9-edde-4998-a78b-d2b92d99b490-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9dc262c9-edde-4998-a78b-d2b92d99b490 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9dc262c9-edde-4998-a78b-d2b92d99b490 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9dc262c9-edde-4998-a78b-d2b92d99b490 img.shogun-image {
  /* Add background color handling */
  
}

#s-9dc262c9-edde-4998-a78b-d2b92d99b490 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-9dc262c9-edde-4998-a78b-d2b92d99b490.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-9dc262c9-edde-4998-a78b-d2b92d99b490 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9dc262c9-edde-4998-a78b-d2b92d99b490.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9dc262c9-edde-4998-a78b-d2b92d99b490.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9dc262c9-edde-4998-a78b-d2b92d99b490.shogun-image {
  box-sizing: border-box;
}



.s-9dc262c9-edde-4998-a78b-d2b92d99b490 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-9dc262c9-edde-4998-a78b-d2b92d99b490 {
  margin: 0 !important;
  overflow: visible;
}

#s-9dc262c9-edde-4998-a78b-d2b92d99b490-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9dc262c9-edde-4998-a78b-d2b92d99b490 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9dc262c9-edde-4998-a78b-d2b92d99b490 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9dc262c9-edde-4998-a78b-d2b92d99b490 img.shogun-image {
  /* Add background color handling */
  
}

#s-9dc262c9-edde-4998-a78b-d2b92d99b490 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-9dc262c9-edde-4998-a78b-d2b92d99b490.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-9dc262c9-edde-4998-a78b-d2b92d99b490 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9dc262c9-edde-4998-a78b-d2b92d99b490.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9dc262c9-edde-4998-a78b-d2b92d99b490.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9dc262c9-edde-4998-a78b-d2b92d99b490.shogun-image {
  box-sizing: border-box;
}



.s-9dc262c9-edde-4998-a78b-d2b92d99b490 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-9dc262c9-edde-4998-a78b-d2b92d99b490 {
  margin: 0 !important;
  overflow: visible;
}

#s-9dc262c9-edde-4998-a78b-d2b92d99b490-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9dc262c9-edde-4998-a78b-d2b92d99b490 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9dc262c9-edde-4998-a78b-d2b92d99b490 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9dc262c9-edde-4998-a78b-d2b92d99b490 img.shogun-image {
  /* Add background color handling */
  
}

#s-9dc262c9-edde-4998-a78b-d2b92d99b490 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-9dc262c9-edde-4998-a78b-d2b92d99b490.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-9dc262c9-edde-4998-a78b-d2b92d99b490 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9dc262c9-edde-4998-a78b-d2b92d99b490.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9dc262c9-edde-4998-a78b-d2b92d99b490.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9dc262c9-edde-4998-a78b-d2b92d99b490.shogun-image {
  box-sizing: border-box;
}



.s-9dc262c9-edde-4998-a78b-d2b92d99b490 img.shogun-image {
  
}


}@media (max-width: 767px){#s-9dc262c9-edde-4998-a78b-d2b92d99b490 {
  margin: 0 !important;
  overflow: visible;
}

#s-9dc262c9-edde-4998-a78b-d2b92d99b490-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9dc262c9-edde-4998-a78b-d2b92d99b490 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9dc262c9-edde-4998-a78b-d2b92d99b490 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9dc262c9-edde-4998-a78b-d2b92d99b490 img.shogun-image {
  /* Add background color handling */
  
}

#s-9dc262c9-edde-4998-a78b-d2b92d99b490 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-9dc262c9-edde-4998-a78b-d2b92d99b490.shogun-image {
    
    
    
    max-height: 20%;
  }


.s-9dc262c9-edde-4998-a78b-d2b92d99b490 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9dc262c9-edde-4998-a78b-d2b92d99b490.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9dc262c9-edde-4998-a78b-d2b92d99b490.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9dc262c9-edde-4998-a78b-d2b92d99b490.shogun-image {
  box-sizing: border-box;
}



.s-9dc262c9-edde-4998-a78b-d2b92d99b490 img.shogun-image {
  
}


}
#s-51077376-07d0-4736-9aab-038899a6b84f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-51077376-07d0-4736-9aab-038899a6b84f .shogun-heading-component h2 {
  color: ;
  font-weight:  500 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.4em;
  
  
  
}



#s-f698d359-4e9e-43f2-8fa5-97dae2fc5774 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: right bottom;
}

#s-f698d359-4e9e-43f2-8fa5-97dae2fc5774 {
  background-image: url(https://i.shgcdn.com/fbef4925-b20e-4c06-b2ad-99b98c24b5ae/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}

@media (max-width: 480px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-f698d359-4e9e-43f2-8fa5-97dae2fc5774 {
  background-image: url(https://i.shgcdn.com/fbef4925-b20e-4c06-b2ad-99b98c24b5ae/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/480x/);
}
#s-f698d359-4e9e-43f2-8fa5-97dae2fc5774.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-f698d359-4e9e-43f2-8fa5-97dae2fc5774 {
  background-image: url(https://i.shgcdn.com/fbef4925-b20e-4c06-b2ad-99b98c24b5ae/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/960x/);
}
#s-f698d359-4e9e-43f2-8fa5-97dae2fc5774.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-f698d359-4e9e-43f2-8fa5-97dae2fc5774 {
  background-image: url(https://i.shgcdn.com/fbef4925-b20e-4c06-b2ad-99b98c24b5ae/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/768x/);
}
#s-f698d359-4e9e-43f2-8fa5-97dae2fc5774.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-f698d359-4e9e-43f2-8fa5-97dae2fc5774 {
  background-image: url(https://i.shgcdn.com/fbef4925-b20e-4c06-b2ad-99b98c24b5ae/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1536x/);
}
#s-f698d359-4e9e-43f2-8fa5-97dae2fc5774.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-f698d359-4e9e-43f2-8fa5-97dae2fc5774 {
  background-image: url(https://i.shgcdn.com/fbef4925-b20e-4c06-b2ad-99b98c24b5ae/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1024x/);
}
#s-f698d359-4e9e-43f2-8fa5-97dae2fc5774.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-f698d359-4e9e-43f2-8fa5-97dae2fc5774 {
  background-image: url(https://i.shgcdn.com/fbef4925-b20e-4c06-b2ad-99b98c24b5ae/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}
#s-f698d359-4e9e-43f2-8fa5-97dae2fc5774.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-f698d359-4e9e-43f2-8fa5-97dae2fc5774 {
  background-image: url(https://i.shgcdn.com/fbef4925-b20e-4c06-b2ad-99b98c24b5ae/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1200x/);
}
#s-f698d359-4e9e-43f2-8fa5-97dae2fc5774.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-f698d359-4e9e-43f2-8fa5-97dae2fc5774 {
  background-image: url(https://i.shgcdn.com/fbef4925-b20e-4c06-b2ad-99b98c24b5ae/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}
#s-f698d359-4e9e-43f2-8fa5-97dae2fc5774.shogun-lazyload-bg-image {
  background-image: none;
}

}







#s-f698d359-4e9e-43f2-8fa5-97dae2fc5774 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f698d359-4e9e-43f2-8fa5-97dae2fc5774.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f3283dbf-e0e0-4067-a78a-c7c783397693 {
  margin-top: 15%;
margin-left: auto;
margin-bottom: 15%;
margin-right: auto;
padding-left: 0%;
padding-right: 0%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-f3283dbf-e0e0-4067-a78a-c7c783397693 {
  display: none;
}
#s-f3283dbf-e0e0-4067-a78a-c7c783397693, #wrap-s-f3283dbf-e0e0-4067-a78a-c7c783397693, #wrap-content-s-f3283dbf-e0e0-4067-a78a-c7c783397693 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f3283dbf-e0e0-4067-a78a-c7c783397693 {
  display: none;
}
#s-f3283dbf-e0e0-4067-a78a-c7c783397693, #wrap-s-f3283dbf-e0e0-4067-a78a-c7c783397693, #wrap-content-s-f3283dbf-e0e0-4067-a78a-c7c783397693 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f3283dbf-e0e0-4067-a78a-c7c783397693 {
  margin-top: 10%;
margin-bottom: 10%;
}
}@media (max-width: 767px){#s-f3283dbf-e0e0-4067-a78a-c7c783397693 {
  
}
}







#s-f3283dbf-e0e0-4067-a78a-c7c783397693 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f3283dbf-e0e0-4067-a78a-c7c783397693.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e916b00a-3e90-4704-9759-694b895e8b4b {
  margin-top: 0px;
margin-bottom: 0.5em;
text-align: center;
}

#s-e916b00a-3e90-4704-9759-694b895e8b4b .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.6em;
  line-height: 1em;
  
  text-align: center;
}



#s-5b65fdf9-f348-4a07-9f26-e08ef926b2b1 {
  margin-left: auto;
margin-right: auto;
padding-bottom: 3%;
max-width: 90%;
}

#s-3cf34154-83d1-4fee-878a-516421859038 {
  margin-left: auto;
margin-right: auto;
padding-left: 0%;
padding-right: 0%;
background-color: rgba(255, 255, 255, 0);
}
@media (min-width: 1200px){#s-3cf34154-83d1-4fee-878a-516421859038 {
  display: none;
}
#s-3cf34154-83d1-4fee-878a-516421859038, #wrap-s-3cf34154-83d1-4fee-878a-516421859038, #wrap-content-s-3cf34154-83d1-4fee-878a-516421859038 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3cf34154-83d1-4fee-878a-516421859038 {
  display: none;
}
#s-3cf34154-83d1-4fee-878a-516421859038, #wrap-s-3cf34154-83d1-4fee-878a-516421859038, #wrap-content-s-3cf34154-83d1-4fee-878a-516421859038 { display: none !important; }}@media (max-width: 767px){#s-3cf34154-83d1-4fee-878a-516421859038 {
  display: none;
}
#s-3cf34154-83d1-4fee-878a-516421859038, #wrap-s-3cf34154-83d1-4fee-878a-516421859038, #wrap-content-s-3cf34154-83d1-4fee-878a-516421859038 { display: none !important; }}







#s-3cf34154-83d1-4fee-878a-516421859038 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3cf34154-83d1-4fee-878a-516421859038.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4c16feb2-11b0-449a-8222-ece7bfb1f188 {
  margin-left: auto;
margin-right: auto;
max-width: 80%;
}

@media (min-width: 0px) {
[id="s-4c16feb2-11b0-449a-8222-ece7bfb1f188"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-4c16feb2-11b0-449a-8222-ece7bfb1f188"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-4c16feb2-11b0-449a-8222-ece7bfb1f188"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-4c16feb2-11b0-449a-8222-ece7bfb1f188"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

#s-a84facd1-8734-4a10-b6f3-ac5df4b92c88 {
  min-height: 0px;
}








#s-a84facd1-8734-4a10-b6f3-ac5df4b92c88 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a84facd1-8734-4a10-b6f3-ac5df4b92c88.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-3beb2005-6873-4e59-b5ac-7720ac447214 {
  max-width: 80%;
aspect-ratio: 420/537;
text-align: center;
}

#s-3beb2005-6873-4e59-b5ac-7720ac447214 {
  margin: 0 !important;
  overflow: visible;
}

#s-3beb2005-6873-4e59-b5ac-7720ac447214-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3beb2005-6873-4e59-b5ac-7720ac447214 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3beb2005-6873-4e59-b5ac-7720ac447214 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3beb2005-6873-4e59-b5ac-7720ac447214 img.shogun-image {
  /* Add background color handling */
  
}

#s-3beb2005-6873-4e59-b5ac-7720ac447214 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3beb2005-6873-4e59-b5ac-7720ac447214 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-3beb2005-6873-4e59-b5ac-7720ac447214 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3beb2005-6873-4e59-b5ac-7720ac447214 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3beb2005-6873-4e59-b5ac-7720ac447214 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-3beb2005-6873-4e59-b5ac-7720ac447214 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3beb2005-6873-4e59-b5ac-7720ac447214.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image {
  box-sizing: border-box;
}



.s-3beb2005-6873-4e59-b5ac-7720ac447214 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3beb2005-6873-4e59-b5ac-7720ac447214 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image-container {
      position: relative;
    }

    .s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3beb2005-6873-4e59-b5ac-7720ac447214 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

@media (min-width: 1200px){#s-3beb2005-6873-4e59-b5ac-7720ac447214 {
  margin: 0 !important;
  overflow: visible;
}

#s-3beb2005-6873-4e59-b5ac-7720ac447214-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3beb2005-6873-4e59-b5ac-7720ac447214 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3beb2005-6873-4e59-b5ac-7720ac447214 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3beb2005-6873-4e59-b5ac-7720ac447214 img.shogun-image {
  /* Add background color handling */
  
}

#s-3beb2005-6873-4e59-b5ac-7720ac447214 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3beb2005-6873-4e59-b5ac-7720ac447214 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-3beb2005-6873-4e59-b5ac-7720ac447214 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3beb2005-6873-4e59-b5ac-7720ac447214 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3beb2005-6873-4e59-b5ac-7720ac447214 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-3beb2005-6873-4e59-b5ac-7720ac447214 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3beb2005-6873-4e59-b5ac-7720ac447214.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image {
  box-sizing: border-box;
}



.s-3beb2005-6873-4e59-b5ac-7720ac447214 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3beb2005-6873-4e59-b5ac-7720ac447214 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image-container {
      position: relative;
    }

    .s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3beb2005-6873-4e59-b5ac-7720ac447214 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-3beb2005-6873-4e59-b5ac-7720ac447214 {
  margin: 0 !important;
  overflow: visible;
}

#s-3beb2005-6873-4e59-b5ac-7720ac447214-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3beb2005-6873-4e59-b5ac-7720ac447214 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3beb2005-6873-4e59-b5ac-7720ac447214 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3beb2005-6873-4e59-b5ac-7720ac447214 img.shogun-image {
  /* Add background color handling */
  
}

#s-3beb2005-6873-4e59-b5ac-7720ac447214 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3beb2005-6873-4e59-b5ac-7720ac447214 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-3beb2005-6873-4e59-b5ac-7720ac447214 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3beb2005-6873-4e59-b5ac-7720ac447214 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3beb2005-6873-4e59-b5ac-7720ac447214 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-3beb2005-6873-4e59-b5ac-7720ac447214 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3beb2005-6873-4e59-b5ac-7720ac447214.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image {
  box-sizing: border-box;
}



.s-3beb2005-6873-4e59-b5ac-7720ac447214 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3beb2005-6873-4e59-b5ac-7720ac447214 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image-container {
      position: relative;
    }

    .s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3beb2005-6873-4e59-b5ac-7720ac447214 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-3beb2005-6873-4e59-b5ac-7720ac447214 {
  margin: 0 !important;
  overflow: visible;
}

#s-3beb2005-6873-4e59-b5ac-7720ac447214-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3beb2005-6873-4e59-b5ac-7720ac447214 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3beb2005-6873-4e59-b5ac-7720ac447214 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3beb2005-6873-4e59-b5ac-7720ac447214 img.shogun-image {
  /* Add background color handling */
  
}

#s-3beb2005-6873-4e59-b5ac-7720ac447214 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3beb2005-6873-4e59-b5ac-7720ac447214 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-3beb2005-6873-4e59-b5ac-7720ac447214 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3beb2005-6873-4e59-b5ac-7720ac447214 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3beb2005-6873-4e59-b5ac-7720ac447214 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-3beb2005-6873-4e59-b5ac-7720ac447214 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3beb2005-6873-4e59-b5ac-7720ac447214.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image {
  box-sizing: border-box;
}



.s-3beb2005-6873-4e59-b5ac-7720ac447214 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3beb2005-6873-4e59-b5ac-7720ac447214 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image-container {
      position: relative;
    }

    .s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3beb2005-6873-4e59-b5ac-7720ac447214 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (max-width: 767px){#s-3beb2005-6873-4e59-b5ac-7720ac447214 {
  margin: 0 !important;
  overflow: visible;
}

#s-3beb2005-6873-4e59-b5ac-7720ac447214-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3beb2005-6873-4e59-b5ac-7720ac447214 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3beb2005-6873-4e59-b5ac-7720ac447214 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3beb2005-6873-4e59-b5ac-7720ac447214 img.shogun-image {
  /* Add background color handling */
  
}

#s-3beb2005-6873-4e59-b5ac-7720ac447214 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3beb2005-6873-4e59-b5ac-7720ac447214 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-3beb2005-6873-4e59-b5ac-7720ac447214 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3beb2005-6873-4e59-b5ac-7720ac447214 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3beb2005-6873-4e59-b5ac-7720ac447214 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-3beb2005-6873-4e59-b5ac-7720ac447214 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3beb2005-6873-4e59-b5ac-7720ac447214.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image {
  box-sizing: border-box;
}



.s-3beb2005-6873-4e59-b5ac-7720ac447214 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3beb2005-6873-4e59-b5ac-7720ac447214 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image-container {
      position: relative;
    }

    .s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3beb2005-6873-4e59-b5ac-7720ac447214.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3beb2005-6873-4e59-b5ac-7720ac447214 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}
#s-46bcbff7-765d-4f90-97a0-17eaa5398f35 {
  text-align: center;
}

#s-46bcbff7-765d-4f90-97a0-17eaa5398f35 .shogun-heading-component h3 {
  color: ;
  font-weight:  normal ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.5em;
  
  
  text-align: center;
}



#s-8ac08a98-b1c0-4660-9aed-eb4e1fea024a {
  margin-bottom: 4%;
}

#s-dc707567-cd4e-4e1c-a70a-853d69fb04ec {
  min-height: 0px;
}








#s-dc707567-cd4e-4e1c-a70a-853d69fb04ec > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-dc707567-cd4e-4e1c-a70a-853d69fb04ec.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 {
  max-width: 80%;
aspect-ratio: 420/537;
text-align: center;
}

#s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 {
  margin: 0 !important;
  overflow: visible;
}

#s-51ae4139-a609-42d5-a5ab-2386ae8edfe8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 img.shogun-image {
  /* Add background color handling */
  
}

#s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image {
  box-sizing: border-box;
}



.s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image-container {
      position: relative;
    }

    .s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

@media (min-width: 1200px){#s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 {
  margin: 0 !important;
  overflow: visible;
}

#s-51ae4139-a609-42d5-a5ab-2386ae8edfe8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 img.shogun-image {
  /* Add background color handling */
  
}

#s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image {
  box-sizing: border-box;
}



.s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image-container {
      position: relative;
    }

    .s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 {
  margin: 0 !important;
  overflow: visible;
}

#s-51ae4139-a609-42d5-a5ab-2386ae8edfe8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 img.shogun-image {
  /* Add background color handling */
  
}

#s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image {
  box-sizing: border-box;
}



.s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image-container {
      position: relative;
    }

    .s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 {
  margin: 0 !important;
  overflow: visible;
}

#s-51ae4139-a609-42d5-a5ab-2386ae8edfe8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 img.shogun-image {
  /* Add background color handling */
  
}

#s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image {
  box-sizing: border-box;
}



.s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image-container {
      position: relative;
    }

    .s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (max-width: 767px){#s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 {
  margin: 0 !important;
  overflow: visible;
}

#s-51ae4139-a609-42d5-a5ab-2386ae8edfe8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 img.shogun-image {
  /* Add background color handling */
  
}

#s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image {
  box-sizing: border-box;
}



.s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image-container {
      position: relative;
    }

    .s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-51ae4139-a609-42d5-a5ab-2386ae8edfe8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-51ae4139-a609-42d5-a5ab-2386ae8edfe8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}
#s-b2d35062-530c-43ba-82dc-334eb2e38273 {
  text-align: center;
}

#s-b2d35062-530c-43ba-82dc-334eb2e38273 .shogun-heading-component h3 {
  color: ;
  font-weight:  normal ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.5em;
  
  
  text-align: center;
}



#s-29a6d6a1-64f8-45e6-b32f-48b656890970 {
  margin-bottom: 4%;
padding-left: 0px;
padding-right: 0px;
}








#s-f85f04d3-0cf7-42ae-a97d-a9f332432e8d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f85f04d3-0cf7-42ae-a97d-a9f332432e8d.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 {
  max-width: 80%;
aspect-ratio: 420/537;
text-align: center;
}

#s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 {
  margin: 0 !important;
  overflow: visible;
}

#s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 img.shogun-image {
  /* Add background color handling */
  
}

#s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image {
  box-sizing: border-box;
}



.s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image-container {
      position: relative;
    }

    .s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

@media (min-width: 1200px){#s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 {
  margin: 0 !important;
  overflow: visible;
}

#s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 img.shogun-image {
  /* Add background color handling */
  
}

#s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image {
  box-sizing: border-box;
}



.s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image-container {
      position: relative;
    }

    .s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 {
  margin: 0 !important;
  overflow: visible;
}

#s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 img.shogun-image {
  /* Add background color handling */
  
}

#s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image {
  box-sizing: border-box;
}



.s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image-container {
      position: relative;
    }

    .s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 {
  margin: 0 !important;
  overflow: visible;
}

#s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 img.shogun-image {
  /* Add background color handling */
  
}

#s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image {
  box-sizing: border-box;
}



.s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image-container {
      position: relative;
    }

    .s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (max-width: 767px){#s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 {
  margin: 0 !important;
  overflow: visible;
}

#s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 img.shogun-image {
  /* Add background color handling */
  
}

#s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image {
  box-sizing: border-box;
}



.s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image-container {
      position: relative;
    }

    .s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2d2fa50a-48ff-4ac6-9e56-a5cbd010eb29 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}
#s-1a876b1a-1897-4500-943e-d9b3df17fab7 {
  text-align: center;
}

#s-1a876b1a-1897-4500-943e-d9b3df17fab7 .shogun-heading-component h3 {
  color: ;
  font-weight:  normal ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.5em;
  
  
  text-align: center;
}



#s-327defc4-d9fb-42c0-abfb-4e94ba8f70c0 {
  margin-bottom: 4%;
padding-left: 0px;
padding-right: 0px;
}

#s-abbd7e87-8285-4ef4-ba63-1c220b284abd {
  min-height: 50px;
}








#s-abbd7e87-8285-4ef4-ba63-1c220b284abd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-abbd7e87-8285-4ef4-ba63-1c220b284abd.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-6afcdf22-6acd-4733-8fce-45374e55fc72 {
  max-width: 80%;
aspect-ratio: 420/537;
text-align: center;
}

#s-6afcdf22-6acd-4733-8fce-45374e55fc72 {
  margin: 0 !important;
  overflow: visible;
}

#s-6afcdf22-6acd-4733-8fce-45374e55fc72-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6afcdf22-6acd-4733-8fce-45374e55fc72 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6afcdf22-6acd-4733-8fce-45374e55fc72 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6afcdf22-6acd-4733-8fce-45374e55fc72 img.shogun-image {
  /* Add background color handling */
  
}

#s-6afcdf22-6acd-4733-8fce-45374e55fc72 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6afcdf22-6acd-4733-8fce-45374e55fc72 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-6afcdf22-6acd-4733-8fce-45374e55fc72 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6afcdf22-6acd-4733-8fce-45374e55fc72 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6afcdf22-6acd-4733-8fce-45374e55fc72 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-6afcdf22-6acd-4733-8fce-45374e55fc72 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6afcdf22-6acd-4733-8fce-45374e55fc72.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image {
  box-sizing: border-box;
}



.s-6afcdf22-6acd-4733-8fce-45374e55fc72 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6afcdf22-6acd-4733-8fce-45374e55fc72 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image-container {
      position: relative;
    }

    .s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6afcdf22-6acd-4733-8fce-45374e55fc72 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

@media (min-width: 1200px){#s-6afcdf22-6acd-4733-8fce-45374e55fc72 {
  margin: 0 !important;
  overflow: visible;
}

#s-6afcdf22-6acd-4733-8fce-45374e55fc72-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6afcdf22-6acd-4733-8fce-45374e55fc72 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6afcdf22-6acd-4733-8fce-45374e55fc72 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6afcdf22-6acd-4733-8fce-45374e55fc72 img.shogun-image {
  /* Add background color handling */
  
}

#s-6afcdf22-6acd-4733-8fce-45374e55fc72 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6afcdf22-6acd-4733-8fce-45374e55fc72 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-6afcdf22-6acd-4733-8fce-45374e55fc72 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6afcdf22-6acd-4733-8fce-45374e55fc72 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6afcdf22-6acd-4733-8fce-45374e55fc72 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-6afcdf22-6acd-4733-8fce-45374e55fc72 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6afcdf22-6acd-4733-8fce-45374e55fc72.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image {
  box-sizing: border-box;
}



.s-6afcdf22-6acd-4733-8fce-45374e55fc72 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6afcdf22-6acd-4733-8fce-45374e55fc72 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image-container {
      position: relative;
    }

    .s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6afcdf22-6acd-4733-8fce-45374e55fc72 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-6afcdf22-6acd-4733-8fce-45374e55fc72 {
  margin: 0 !important;
  overflow: visible;
}

#s-6afcdf22-6acd-4733-8fce-45374e55fc72-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6afcdf22-6acd-4733-8fce-45374e55fc72 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6afcdf22-6acd-4733-8fce-45374e55fc72 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6afcdf22-6acd-4733-8fce-45374e55fc72 img.shogun-image {
  /* Add background color handling */
  
}

#s-6afcdf22-6acd-4733-8fce-45374e55fc72 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6afcdf22-6acd-4733-8fce-45374e55fc72 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-6afcdf22-6acd-4733-8fce-45374e55fc72 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6afcdf22-6acd-4733-8fce-45374e55fc72 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6afcdf22-6acd-4733-8fce-45374e55fc72 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-6afcdf22-6acd-4733-8fce-45374e55fc72 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6afcdf22-6acd-4733-8fce-45374e55fc72.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image {
  box-sizing: border-box;
}



.s-6afcdf22-6acd-4733-8fce-45374e55fc72 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6afcdf22-6acd-4733-8fce-45374e55fc72 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image-container {
      position: relative;
    }

    .s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6afcdf22-6acd-4733-8fce-45374e55fc72 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-6afcdf22-6acd-4733-8fce-45374e55fc72 {
  margin: 0 !important;
  overflow: visible;
}

#s-6afcdf22-6acd-4733-8fce-45374e55fc72-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6afcdf22-6acd-4733-8fce-45374e55fc72 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6afcdf22-6acd-4733-8fce-45374e55fc72 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6afcdf22-6acd-4733-8fce-45374e55fc72 img.shogun-image {
  /* Add background color handling */
  
}

#s-6afcdf22-6acd-4733-8fce-45374e55fc72 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6afcdf22-6acd-4733-8fce-45374e55fc72 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-6afcdf22-6acd-4733-8fce-45374e55fc72 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6afcdf22-6acd-4733-8fce-45374e55fc72 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6afcdf22-6acd-4733-8fce-45374e55fc72 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-6afcdf22-6acd-4733-8fce-45374e55fc72 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6afcdf22-6acd-4733-8fce-45374e55fc72.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image {
  box-sizing: border-box;
}



.s-6afcdf22-6acd-4733-8fce-45374e55fc72 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6afcdf22-6acd-4733-8fce-45374e55fc72 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image-container {
      position: relative;
    }

    .s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6afcdf22-6acd-4733-8fce-45374e55fc72 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (max-width: 767px){#s-6afcdf22-6acd-4733-8fce-45374e55fc72 {
  margin: 0 !important;
  overflow: visible;
}

#s-6afcdf22-6acd-4733-8fce-45374e55fc72-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6afcdf22-6acd-4733-8fce-45374e55fc72 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6afcdf22-6acd-4733-8fce-45374e55fc72 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6afcdf22-6acd-4733-8fce-45374e55fc72 img.shogun-image {
  /* Add background color handling */
  
}

#s-6afcdf22-6acd-4733-8fce-45374e55fc72 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6afcdf22-6acd-4733-8fce-45374e55fc72 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-6afcdf22-6acd-4733-8fce-45374e55fc72 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6afcdf22-6acd-4733-8fce-45374e55fc72 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6afcdf22-6acd-4733-8fce-45374e55fc72 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-6afcdf22-6acd-4733-8fce-45374e55fc72 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6afcdf22-6acd-4733-8fce-45374e55fc72.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image {
  box-sizing: border-box;
}



.s-6afcdf22-6acd-4733-8fce-45374e55fc72 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6afcdf22-6acd-4733-8fce-45374e55fc72 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image-container {
      position: relative;
    }

    .s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6afcdf22-6acd-4733-8fce-45374e55fc72.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6afcdf22-6acd-4733-8fce-45374e55fc72 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}
#s-687522a9-4810-4ea8-9513-c709964aeeb8 {
  text-align: center;
}

#s-687522a9-4810-4ea8-9513-c709964aeeb8 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.5em;
  line-height: 1.5em;
  
  text-align: center;
}



#s-afe0e88a-9df4-431a-a32b-a358aa9dd749 {
  margin-bottom: 4%;
padding-left: 0px;
padding-right: 0px;
}








#s-4c0e0e08-52aa-484d-b18e-747bb9a26e93 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4c0e0e08-52aa-484d-b18e-747bb9a26e93.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-3e30c2a6-0021-4309-acbf-bb2bca99d39c {
  min-height: 4px;
max-width: 80%;
aspect-ratio: 420/537;
text-align: center;
}

#s-3e30c2a6-0021-4309-acbf-bb2bca99d39c {
  margin: 0 !important;
  overflow: visible;
}

#s-3e30c2a6-0021-4309-acbf-bb2bca99d39c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e30c2a6-0021-4309-acbf-bb2bca99d39c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3e30c2a6-0021-4309-acbf-bb2bca99d39c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e30c2a6-0021-4309-acbf-bb2bca99d39c img.shogun-image {
  /* Add background color handling */
  
}

#s-3e30c2a6-0021-4309-acbf-bb2bca99d39c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3e30c2a6-0021-4309-acbf-bb2bca99d39c .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-3e30c2a6-0021-4309-acbf-bb2bca99d39c .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3e30c2a6-0021-4309-acbf-bb2bca99d39c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3e30c2a6-0021-4309-acbf-bb2bca99d39c img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 4px;
    max-height: 80%;
  }



  img.s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image {
    
    
    min-height: 4px;
    max-height: 80%;
  }


.s-3e30c2a6-0021-4309-acbf-bb2bca99d39c .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image {
  box-sizing: border-box;
}



.s-3e30c2a6-0021-4309-acbf-bb2bca99d39c img.shogun-image {
  min-height: 4px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-3e30c2a6-0021-4309-acbf-bb2bca99d39c {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image-container {
      position: relative;
    }

    .s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e30c2a6-0021-4309-acbf-bb2bca99d39c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 4px;
      max-width: 80%;
    }
  }

@media (min-width: 1200px){#s-3e30c2a6-0021-4309-acbf-bb2bca99d39c {
  margin: 0 !important;
  overflow: visible;
}

#s-3e30c2a6-0021-4309-acbf-bb2bca99d39c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e30c2a6-0021-4309-acbf-bb2bca99d39c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3e30c2a6-0021-4309-acbf-bb2bca99d39c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e30c2a6-0021-4309-acbf-bb2bca99d39c img.shogun-image {
  /* Add background color handling */
  
}

#s-3e30c2a6-0021-4309-acbf-bb2bca99d39c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3e30c2a6-0021-4309-acbf-bb2bca99d39c .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-3e30c2a6-0021-4309-acbf-bb2bca99d39c .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3e30c2a6-0021-4309-acbf-bb2bca99d39c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3e30c2a6-0021-4309-acbf-bb2bca99d39c img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 4px;
    max-height: 80%;
  }



  img.s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image {
    
    
    min-height: 4px;
    max-height: 80%;
  }


.s-3e30c2a6-0021-4309-acbf-bb2bca99d39c .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image {
  box-sizing: border-box;
}



.s-3e30c2a6-0021-4309-acbf-bb2bca99d39c img.shogun-image {
  min-height: 4px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-3e30c2a6-0021-4309-acbf-bb2bca99d39c {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image-container {
      position: relative;
    }

    .s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e30c2a6-0021-4309-acbf-bb2bca99d39c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 4px;
      max-width: 80%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-3e30c2a6-0021-4309-acbf-bb2bca99d39c {
  margin: 0 !important;
  overflow: visible;
}

#s-3e30c2a6-0021-4309-acbf-bb2bca99d39c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e30c2a6-0021-4309-acbf-bb2bca99d39c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3e30c2a6-0021-4309-acbf-bb2bca99d39c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e30c2a6-0021-4309-acbf-bb2bca99d39c img.shogun-image {
  /* Add background color handling */
  
}

#s-3e30c2a6-0021-4309-acbf-bb2bca99d39c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3e30c2a6-0021-4309-acbf-bb2bca99d39c .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-3e30c2a6-0021-4309-acbf-bb2bca99d39c .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3e30c2a6-0021-4309-acbf-bb2bca99d39c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3e30c2a6-0021-4309-acbf-bb2bca99d39c img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 4px;
    max-height: 80%;
  }



  img.s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image {
    
    
    min-height: 4px;
    max-height: 80%;
  }


.s-3e30c2a6-0021-4309-acbf-bb2bca99d39c .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image {
  box-sizing: border-box;
}



.s-3e30c2a6-0021-4309-acbf-bb2bca99d39c img.shogun-image {
  min-height: 4px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-3e30c2a6-0021-4309-acbf-bb2bca99d39c {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image-container {
      position: relative;
    }

    .s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e30c2a6-0021-4309-acbf-bb2bca99d39c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 4px;
      max-width: 80%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-3e30c2a6-0021-4309-acbf-bb2bca99d39c {
  margin: 0 !important;
  overflow: visible;
}

#s-3e30c2a6-0021-4309-acbf-bb2bca99d39c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e30c2a6-0021-4309-acbf-bb2bca99d39c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3e30c2a6-0021-4309-acbf-bb2bca99d39c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e30c2a6-0021-4309-acbf-bb2bca99d39c img.shogun-image {
  /* Add background color handling */
  
}

#s-3e30c2a6-0021-4309-acbf-bb2bca99d39c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3e30c2a6-0021-4309-acbf-bb2bca99d39c .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-3e30c2a6-0021-4309-acbf-bb2bca99d39c .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3e30c2a6-0021-4309-acbf-bb2bca99d39c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3e30c2a6-0021-4309-acbf-bb2bca99d39c img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 4px;
    max-height: 80%;
  }



  img.s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image {
    
    
    min-height: 4px;
    max-height: 80%;
  }


.s-3e30c2a6-0021-4309-acbf-bb2bca99d39c .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image {
  box-sizing: border-box;
}



.s-3e30c2a6-0021-4309-acbf-bb2bca99d39c img.shogun-image {
  min-height: 4px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-3e30c2a6-0021-4309-acbf-bb2bca99d39c {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image-container {
      position: relative;
    }

    .s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e30c2a6-0021-4309-acbf-bb2bca99d39c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 4px;
      max-width: 80%;
    }
  }

}@media (max-width: 767px){#s-3e30c2a6-0021-4309-acbf-bb2bca99d39c {
  margin: 0 !important;
  overflow: visible;
}

#s-3e30c2a6-0021-4309-acbf-bb2bca99d39c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e30c2a6-0021-4309-acbf-bb2bca99d39c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3e30c2a6-0021-4309-acbf-bb2bca99d39c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e30c2a6-0021-4309-acbf-bb2bca99d39c img.shogun-image {
  /* Add background color handling */
  
}

#s-3e30c2a6-0021-4309-acbf-bb2bca99d39c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3e30c2a6-0021-4309-acbf-bb2bca99d39c .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-3e30c2a6-0021-4309-acbf-bb2bca99d39c .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3e30c2a6-0021-4309-acbf-bb2bca99d39c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3e30c2a6-0021-4309-acbf-bb2bca99d39c img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 4px;
    max-height: 80%;
  }



  img.s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image {
    
    
    min-height: 4px;
    max-height: 80%;
  }


.s-3e30c2a6-0021-4309-acbf-bb2bca99d39c .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image {
  box-sizing: border-box;
}



.s-3e30c2a6-0021-4309-acbf-bb2bca99d39c img.shogun-image {
  min-height: 4px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-3e30c2a6-0021-4309-acbf-bb2bca99d39c {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image-container {
      position: relative;
    }

    .s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e30c2a6-0021-4309-acbf-bb2bca99d39c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e30c2a6-0021-4309-acbf-bb2bca99d39c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 4px;
      max-width: 80%;
    }
  }

}
#s-bc786978-6472-4895-80ac-828a1224a159 {
  text-align: center;
}

#s-bc786978-6472-4895-80ac-828a1224a159 .shogun-heading-component h3 {
  color: ;
  font-weight:  normal ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.5em;
  
  
  text-align: center;
}



#s-8f845577-a577-49e0-926a-2a18b74444cd {
  margin-bottom: 4%;
padding-left: 0px;
padding-right: 0px;
}








#s-50de0cf0-1757-45bb-9e4a-b56583ce56bd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-50de0cf0-1757-45bb-9e4a-b56583ce56bd.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-00875a07-9f4c-4492-82d8-9c4371aa323a {
  max-width: 80%;
aspect-ratio: 280/358;
text-align: center;
}

#s-00875a07-9f4c-4492-82d8-9c4371aa323a {
  margin: 0 !important;
  overflow: visible;
}

#s-00875a07-9f4c-4492-82d8-9c4371aa323a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-00875a07-9f4c-4492-82d8-9c4371aa323a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-00875a07-9f4c-4492-82d8-9c4371aa323a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-00875a07-9f4c-4492-82d8-9c4371aa323a img.shogun-image {
  /* Add background color handling */
  
}

#s-00875a07-9f4c-4492-82d8-9c4371aa323a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-00875a07-9f4c-4492-82d8-9c4371aa323a .shg-image-content-wrapper {
      aspect-ratio: 280/358;
      min-width: 100%;
      height: auto;
    }

    #s-00875a07-9f4c-4492-82d8-9c4371aa323a .shogun-image-link {
      aspect-ratio: 280/358;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-00875a07-9f4c-4492-82d8-9c4371aa323a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-00875a07-9f4c-4492-82d8-9c4371aa323a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-00875a07-9f4c-4492-82d8-9c4371aa323a .shogun-image-content {
  
    justify-content: center;
  
}

.s-00875a07-9f4c-4492-82d8-9c4371aa323a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image {
  box-sizing: border-box;
}



.s-00875a07-9f4c-4492-82d8-9c4371aa323a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-00875a07-9f4c-4492-82d8-9c4371aa323a {
      --shg-aspect-ratio: calc(280/358); 
    }

    .s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image-container {
      position: relative;
    }

    .s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-00875a07-9f4c-4492-82d8-9c4371aa323a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

@media (min-width: 1200px){#s-00875a07-9f4c-4492-82d8-9c4371aa323a {
  margin: 0 !important;
  overflow: visible;
}

#s-00875a07-9f4c-4492-82d8-9c4371aa323a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-00875a07-9f4c-4492-82d8-9c4371aa323a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-00875a07-9f4c-4492-82d8-9c4371aa323a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-00875a07-9f4c-4492-82d8-9c4371aa323a img.shogun-image {
  /* Add background color handling */
  
}

#s-00875a07-9f4c-4492-82d8-9c4371aa323a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-00875a07-9f4c-4492-82d8-9c4371aa323a .shg-image-content-wrapper {
      aspect-ratio: 280/358;
      min-width: 100%;
      height: auto;
    }

    #s-00875a07-9f4c-4492-82d8-9c4371aa323a .shogun-image-link {
      aspect-ratio: 280/358;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-00875a07-9f4c-4492-82d8-9c4371aa323a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-00875a07-9f4c-4492-82d8-9c4371aa323a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-00875a07-9f4c-4492-82d8-9c4371aa323a .shogun-image-content {
  
    justify-content: center;
  
}

.s-00875a07-9f4c-4492-82d8-9c4371aa323a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image {
  box-sizing: border-box;
}



.s-00875a07-9f4c-4492-82d8-9c4371aa323a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-00875a07-9f4c-4492-82d8-9c4371aa323a {
      --shg-aspect-ratio: calc(280/358); 
    }

    .s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image-container {
      position: relative;
    }

    .s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-00875a07-9f4c-4492-82d8-9c4371aa323a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-00875a07-9f4c-4492-82d8-9c4371aa323a {
  margin: 0 !important;
  overflow: visible;
}

#s-00875a07-9f4c-4492-82d8-9c4371aa323a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-00875a07-9f4c-4492-82d8-9c4371aa323a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-00875a07-9f4c-4492-82d8-9c4371aa323a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-00875a07-9f4c-4492-82d8-9c4371aa323a img.shogun-image {
  /* Add background color handling */
  
}

#s-00875a07-9f4c-4492-82d8-9c4371aa323a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-00875a07-9f4c-4492-82d8-9c4371aa323a .shg-image-content-wrapper {
      aspect-ratio: 280/358;
      min-width: 100%;
      height: auto;
    }

    #s-00875a07-9f4c-4492-82d8-9c4371aa323a .shogun-image-link {
      aspect-ratio: 280/358;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-00875a07-9f4c-4492-82d8-9c4371aa323a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-00875a07-9f4c-4492-82d8-9c4371aa323a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-00875a07-9f4c-4492-82d8-9c4371aa323a .shogun-image-content {
  
    justify-content: center;
  
}

.s-00875a07-9f4c-4492-82d8-9c4371aa323a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image {
  box-sizing: border-box;
}



.s-00875a07-9f4c-4492-82d8-9c4371aa323a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-00875a07-9f4c-4492-82d8-9c4371aa323a {
      --shg-aspect-ratio: calc(280/358); 
    }

    .s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image-container {
      position: relative;
    }

    .s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-00875a07-9f4c-4492-82d8-9c4371aa323a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-00875a07-9f4c-4492-82d8-9c4371aa323a {
  margin: 0 !important;
  overflow: visible;
}

#s-00875a07-9f4c-4492-82d8-9c4371aa323a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-00875a07-9f4c-4492-82d8-9c4371aa323a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-00875a07-9f4c-4492-82d8-9c4371aa323a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-00875a07-9f4c-4492-82d8-9c4371aa323a img.shogun-image {
  /* Add background color handling */
  
}

#s-00875a07-9f4c-4492-82d8-9c4371aa323a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-00875a07-9f4c-4492-82d8-9c4371aa323a .shg-image-content-wrapper {
      aspect-ratio: 280/358;
      min-width: 100%;
      height: auto;
    }

    #s-00875a07-9f4c-4492-82d8-9c4371aa323a .shogun-image-link {
      aspect-ratio: 280/358;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-00875a07-9f4c-4492-82d8-9c4371aa323a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-00875a07-9f4c-4492-82d8-9c4371aa323a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-00875a07-9f4c-4492-82d8-9c4371aa323a .shogun-image-content {
  
    justify-content: center;
  
}

.s-00875a07-9f4c-4492-82d8-9c4371aa323a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image {
  box-sizing: border-box;
}



.s-00875a07-9f4c-4492-82d8-9c4371aa323a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-00875a07-9f4c-4492-82d8-9c4371aa323a {
      --shg-aspect-ratio: calc(280/358); 
    }

    .s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image-container {
      position: relative;
    }

    .s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-00875a07-9f4c-4492-82d8-9c4371aa323a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (max-width: 767px){#s-00875a07-9f4c-4492-82d8-9c4371aa323a {
  margin: 0 !important;
  overflow: visible;
}

#s-00875a07-9f4c-4492-82d8-9c4371aa323a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-00875a07-9f4c-4492-82d8-9c4371aa323a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-00875a07-9f4c-4492-82d8-9c4371aa323a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-00875a07-9f4c-4492-82d8-9c4371aa323a img.shogun-image {
  /* Add background color handling */
  
}

#s-00875a07-9f4c-4492-82d8-9c4371aa323a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-00875a07-9f4c-4492-82d8-9c4371aa323a .shg-image-content-wrapper {
      aspect-ratio: 280/358;
      min-width: 100%;
      height: auto;
    }

    #s-00875a07-9f4c-4492-82d8-9c4371aa323a .shogun-image-link {
      aspect-ratio: 280/358;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-00875a07-9f4c-4492-82d8-9c4371aa323a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-00875a07-9f4c-4492-82d8-9c4371aa323a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-00875a07-9f4c-4492-82d8-9c4371aa323a .shogun-image-content {
  
    justify-content: center;
  
}

.s-00875a07-9f4c-4492-82d8-9c4371aa323a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image {
  box-sizing: border-box;
}



.s-00875a07-9f4c-4492-82d8-9c4371aa323a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-00875a07-9f4c-4492-82d8-9c4371aa323a {
      --shg-aspect-ratio: calc(280/358); 
    }

    .s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image-container {
      position: relative;
    }

    .s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-00875a07-9f4c-4492-82d8-9c4371aa323a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-00875a07-9f4c-4492-82d8-9c4371aa323a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}
#s-2ad90e27-f903-45cc-baa7-395e13d3e201 {
  text-align: center;
}

#s-2ad90e27-f903-45cc-baa7-395e13d3e201 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.5em;
  line-height: 1.5em;
  
  text-align: center;
}



#s-924664f5-3100-4200-b133-476b07b67c42 {
  margin-bottom: 4%;
}

#s-f54fad74-37da-4330-b61f-3241fe823120 {
  margin-left: auto;
margin-right: auto;
max-width: 90%;
}
@media (min-width: 768px) and (max-width: 991px){#s-f54fad74-37da-4330-b61f-3241fe823120 {
  display: none;
}
#s-f54fad74-37da-4330-b61f-3241fe823120, #wrap-s-f54fad74-37da-4330-b61f-3241fe823120, #wrap-content-s-f54fad74-37da-4330-b61f-3241fe823120 { display: none !important; }}
@media (min-width: 0px) {
[id="s-f54fad74-37da-4330-b61f-3241fe823120"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-f54fad74-37da-4330-b61f-3241fe823120"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-f54fad74-37da-4330-b61f-3241fe823120"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-f54fad74-37da-4330-b61f-3241fe823120"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-6cf67d31-10bd-409f-872d-337cf1ec3ddc {
  padding-bottom: 15%;
min-height: 0px;
}








#s-6cf67d31-10bd-409f-872d-337cf1ec3ddc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6cf67d31-10bd-409f-872d-337cf1ec3ddc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-73819378-6cb2-432d-b5a8-674a2884b1a7 {
  max-width: 80%;
aspect-ratio: 420/537;
text-align: center;
}

#s-73819378-6cb2-432d-b5a8-674a2884b1a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-73819378-6cb2-432d-b5a8-674a2884b1a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-73819378-6cb2-432d-b5a8-674a2884b1a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-73819378-6cb2-432d-b5a8-674a2884b1a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-73819378-6cb2-432d-b5a8-674a2884b1a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-73819378-6cb2-432d-b5a8-674a2884b1a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-73819378-6cb2-432d-b5a8-674a2884b1a7 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-73819378-6cb2-432d-b5a8-674a2884b1a7 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-73819378-6cb2-432d-b5a8-674a2884b1a7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-73819378-6cb2-432d-b5a8-674a2884b1a7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-73819378-6cb2-432d-b5a8-674a2884b1a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-73819378-6cb2-432d-b5a8-674a2884b1a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image {
  box-sizing: border-box;
}



.s-73819378-6cb2-432d-b5a8-674a2884b1a7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-73819378-6cb2-432d-b5a8-674a2884b1a7 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image-container {
      position: relative;
    }

    .s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-73819378-6cb2-432d-b5a8-674a2884b1a7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

@media (min-width: 1200px){#s-73819378-6cb2-432d-b5a8-674a2884b1a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-73819378-6cb2-432d-b5a8-674a2884b1a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-73819378-6cb2-432d-b5a8-674a2884b1a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-73819378-6cb2-432d-b5a8-674a2884b1a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-73819378-6cb2-432d-b5a8-674a2884b1a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-73819378-6cb2-432d-b5a8-674a2884b1a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-73819378-6cb2-432d-b5a8-674a2884b1a7 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-73819378-6cb2-432d-b5a8-674a2884b1a7 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-73819378-6cb2-432d-b5a8-674a2884b1a7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-73819378-6cb2-432d-b5a8-674a2884b1a7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-73819378-6cb2-432d-b5a8-674a2884b1a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-73819378-6cb2-432d-b5a8-674a2884b1a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image {
  box-sizing: border-box;
}



.s-73819378-6cb2-432d-b5a8-674a2884b1a7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-73819378-6cb2-432d-b5a8-674a2884b1a7 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image-container {
      position: relative;
    }

    .s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-73819378-6cb2-432d-b5a8-674a2884b1a7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-73819378-6cb2-432d-b5a8-674a2884b1a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-73819378-6cb2-432d-b5a8-674a2884b1a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-73819378-6cb2-432d-b5a8-674a2884b1a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-73819378-6cb2-432d-b5a8-674a2884b1a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-73819378-6cb2-432d-b5a8-674a2884b1a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-73819378-6cb2-432d-b5a8-674a2884b1a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-73819378-6cb2-432d-b5a8-674a2884b1a7 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-73819378-6cb2-432d-b5a8-674a2884b1a7 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-73819378-6cb2-432d-b5a8-674a2884b1a7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-73819378-6cb2-432d-b5a8-674a2884b1a7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-73819378-6cb2-432d-b5a8-674a2884b1a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-73819378-6cb2-432d-b5a8-674a2884b1a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image {
  box-sizing: border-box;
}



.s-73819378-6cb2-432d-b5a8-674a2884b1a7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-73819378-6cb2-432d-b5a8-674a2884b1a7 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image-container {
      position: relative;
    }

    .s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-73819378-6cb2-432d-b5a8-674a2884b1a7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-73819378-6cb2-432d-b5a8-674a2884b1a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-73819378-6cb2-432d-b5a8-674a2884b1a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-73819378-6cb2-432d-b5a8-674a2884b1a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-73819378-6cb2-432d-b5a8-674a2884b1a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-73819378-6cb2-432d-b5a8-674a2884b1a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-73819378-6cb2-432d-b5a8-674a2884b1a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-73819378-6cb2-432d-b5a8-674a2884b1a7 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-73819378-6cb2-432d-b5a8-674a2884b1a7 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-73819378-6cb2-432d-b5a8-674a2884b1a7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-73819378-6cb2-432d-b5a8-674a2884b1a7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-73819378-6cb2-432d-b5a8-674a2884b1a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-73819378-6cb2-432d-b5a8-674a2884b1a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image {
  box-sizing: border-box;
}



.s-73819378-6cb2-432d-b5a8-674a2884b1a7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-73819378-6cb2-432d-b5a8-674a2884b1a7 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image-container {
      position: relative;
    }

    .s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-73819378-6cb2-432d-b5a8-674a2884b1a7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (max-width: 767px){#s-73819378-6cb2-432d-b5a8-674a2884b1a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-73819378-6cb2-432d-b5a8-674a2884b1a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-73819378-6cb2-432d-b5a8-674a2884b1a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-73819378-6cb2-432d-b5a8-674a2884b1a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-73819378-6cb2-432d-b5a8-674a2884b1a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-73819378-6cb2-432d-b5a8-674a2884b1a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-73819378-6cb2-432d-b5a8-674a2884b1a7 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-73819378-6cb2-432d-b5a8-674a2884b1a7 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-73819378-6cb2-432d-b5a8-674a2884b1a7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-73819378-6cb2-432d-b5a8-674a2884b1a7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-73819378-6cb2-432d-b5a8-674a2884b1a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-73819378-6cb2-432d-b5a8-674a2884b1a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image {
  box-sizing: border-box;
}



.s-73819378-6cb2-432d-b5a8-674a2884b1a7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-73819378-6cb2-432d-b5a8-674a2884b1a7 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image-container {
      position: relative;
    }

    .s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-73819378-6cb2-432d-b5a8-674a2884b1a7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-73819378-6cb2-432d-b5a8-674a2884b1a7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}
#s-7f94fb74-493b-412b-ac05-088d32c952ba {
  padding-top: 2%;
padding-bottom: 1%;
text-align: center;
}

#s-7f94fb74-493b-412b-ac05-088d32c952ba .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.5em;
  
  
  text-align: center;
}



#s-e7c5e425-ecd4-48d3-bd90-a1801467b883 {
  margin-bottom: 15%;
min-height: 50px;
}








#s-e7c5e425-ecd4-48d3-bd90-a1801467b883 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e7c5e425-ecd4-48d3-bd90-a1801467b883.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ffa1d45c-42d2-4a93-a955-6f251e967762 {
  max-width: 80%;
aspect-ratio: 420/537;
text-align: center;
}

#s-ffa1d45c-42d2-4a93-a955-6f251e967762 {
  margin: 0 !important;
  overflow: visible;
}

#s-ffa1d45c-42d2-4a93-a955-6f251e967762-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ffa1d45c-42d2-4a93-a955-6f251e967762 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ffa1d45c-42d2-4a93-a955-6f251e967762 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ffa1d45c-42d2-4a93-a955-6f251e967762 img.shogun-image {
  /* Add background color handling */
  
}

#s-ffa1d45c-42d2-4a93-a955-6f251e967762 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ffa1d45c-42d2-4a93-a955-6f251e967762 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-ffa1d45c-42d2-4a93-a955-6f251e967762 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ffa1d45c-42d2-4a93-a955-6f251e967762 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ffa1d45c-42d2-4a93-a955-6f251e967762 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-ffa1d45c-42d2-4a93-a955-6f251e967762 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ffa1d45c-42d2-4a93-a955-6f251e967762.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image {
  box-sizing: border-box;
}



.s-ffa1d45c-42d2-4a93-a955-6f251e967762 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ffa1d45c-42d2-4a93-a955-6f251e967762 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image-container {
      position: relative;
    }

    .s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ffa1d45c-42d2-4a93-a955-6f251e967762 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

@media (min-width: 1200px){#s-ffa1d45c-42d2-4a93-a955-6f251e967762 {
  margin: 0 !important;
  overflow: visible;
}

#s-ffa1d45c-42d2-4a93-a955-6f251e967762-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ffa1d45c-42d2-4a93-a955-6f251e967762 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ffa1d45c-42d2-4a93-a955-6f251e967762 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ffa1d45c-42d2-4a93-a955-6f251e967762 img.shogun-image {
  /* Add background color handling */
  
}

#s-ffa1d45c-42d2-4a93-a955-6f251e967762 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ffa1d45c-42d2-4a93-a955-6f251e967762 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-ffa1d45c-42d2-4a93-a955-6f251e967762 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ffa1d45c-42d2-4a93-a955-6f251e967762 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ffa1d45c-42d2-4a93-a955-6f251e967762 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-ffa1d45c-42d2-4a93-a955-6f251e967762 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ffa1d45c-42d2-4a93-a955-6f251e967762.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image {
  box-sizing: border-box;
}



.s-ffa1d45c-42d2-4a93-a955-6f251e967762 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ffa1d45c-42d2-4a93-a955-6f251e967762 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image-container {
      position: relative;
    }

    .s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ffa1d45c-42d2-4a93-a955-6f251e967762 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-ffa1d45c-42d2-4a93-a955-6f251e967762 {
  margin: 0 !important;
  overflow: visible;
}

#s-ffa1d45c-42d2-4a93-a955-6f251e967762-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ffa1d45c-42d2-4a93-a955-6f251e967762 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ffa1d45c-42d2-4a93-a955-6f251e967762 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ffa1d45c-42d2-4a93-a955-6f251e967762 img.shogun-image {
  /* Add background color handling */
  
}

#s-ffa1d45c-42d2-4a93-a955-6f251e967762 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ffa1d45c-42d2-4a93-a955-6f251e967762 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-ffa1d45c-42d2-4a93-a955-6f251e967762 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ffa1d45c-42d2-4a93-a955-6f251e967762 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ffa1d45c-42d2-4a93-a955-6f251e967762 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-ffa1d45c-42d2-4a93-a955-6f251e967762 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ffa1d45c-42d2-4a93-a955-6f251e967762.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image {
  box-sizing: border-box;
}



.s-ffa1d45c-42d2-4a93-a955-6f251e967762 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ffa1d45c-42d2-4a93-a955-6f251e967762 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image-container {
      position: relative;
    }

    .s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ffa1d45c-42d2-4a93-a955-6f251e967762 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-ffa1d45c-42d2-4a93-a955-6f251e967762 {
  margin: 0 !important;
  overflow: visible;
}

#s-ffa1d45c-42d2-4a93-a955-6f251e967762-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ffa1d45c-42d2-4a93-a955-6f251e967762 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ffa1d45c-42d2-4a93-a955-6f251e967762 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ffa1d45c-42d2-4a93-a955-6f251e967762 img.shogun-image {
  /* Add background color handling */
  
}

#s-ffa1d45c-42d2-4a93-a955-6f251e967762 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ffa1d45c-42d2-4a93-a955-6f251e967762 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-ffa1d45c-42d2-4a93-a955-6f251e967762 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ffa1d45c-42d2-4a93-a955-6f251e967762 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ffa1d45c-42d2-4a93-a955-6f251e967762 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-ffa1d45c-42d2-4a93-a955-6f251e967762 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ffa1d45c-42d2-4a93-a955-6f251e967762.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image {
  box-sizing: border-box;
}



.s-ffa1d45c-42d2-4a93-a955-6f251e967762 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ffa1d45c-42d2-4a93-a955-6f251e967762 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image-container {
      position: relative;
    }

    .s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ffa1d45c-42d2-4a93-a955-6f251e967762 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (max-width: 767px){#s-ffa1d45c-42d2-4a93-a955-6f251e967762 {
  margin: 0 !important;
  overflow: visible;
}

#s-ffa1d45c-42d2-4a93-a955-6f251e967762-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ffa1d45c-42d2-4a93-a955-6f251e967762 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ffa1d45c-42d2-4a93-a955-6f251e967762 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ffa1d45c-42d2-4a93-a955-6f251e967762 img.shogun-image {
  /* Add background color handling */
  
}

#s-ffa1d45c-42d2-4a93-a955-6f251e967762 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ffa1d45c-42d2-4a93-a955-6f251e967762 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-ffa1d45c-42d2-4a93-a955-6f251e967762 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ffa1d45c-42d2-4a93-a955-6f251e967762 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ffa1d45c-42d2-4a93-a955-6f251e967762 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-ffa1d45c-42d2-4a93-a955-6f251e967762 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ffa1d45c-42d2-4a93-a955-6f251e967762.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image {
  box-sizing: border-box;
}



.s-ffa1d45c-42d2-4a93-a955-6f251e967762 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ffa1d45c-42d2-4a93-a955-6f251e967762 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image-container {
      position: relative;
    }

    .s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ffa1d45c-42d2-4a93-a955-6f251e967762.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ffa1d45c-42d2-4a93-a955-6f251e967762 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}
#s-1fe702f6-c66c-4b65-90b6-c280282af239 {
  padding-top: 2%;
padding-bottom: 1%;
text-align: center;
}

#s-1fe702f6-c66c-4b65-90b6-c280282af239 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.5em;
  
  
  text-align: center;
}



#s-67229ed6-20cf-4642-9af6-8325cdb78a44 {
  min-height: 0px;
}








#s-67229ed6-20cf-4642-9af6-8325cdb78a44 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-67229ed6-20cf-4642-9af6-8325cdb78a44.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 {
  max-width: 80%;
aspect-ratio: 420/537;
text-align: center;
}

#s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 {
  margin: 0 !important;
  overflow: visible;
}

#s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 img.shogun-image {
  /* Add background color handling */
  
}

#s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image {
  box-sizing: border-box;
}



.s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image-container {
      position: relative;
    }

    .s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

@media (min-width: 1200px){#s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 {
  margin: 0 !important;
  overflow: visible;
}

#s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 img.shogun-image {
  /* Add background color handling */
  
}

#s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image {
  box-sizing: border-box;
}



.s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image-container {
      position: relative;
    }

    .s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 {
  margin: 0 !important;
  overflow: visible;
}

#s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 img.shogun-image {
  /* Add background color handling */
  
}

#s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image {
  box-sizing: border-box;
}



.s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image-container {
      position: relative;
    }

    .s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 {
  margin: 0 !important;
  overflow: visible;
}

#s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 img.shogun-image {
  /* Add background color handling */
  
}

#s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image {
  box-sizing: border-box;
}



.s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image-container {
      position: relative;
    }

    .s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (max-width: 767px){#s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 {
  margin: 0 !important;
  overflow: visible;
}

#s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 img.shogun-image {
  /* Add background color handling */
  
}

#s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image {
  box-sizing: border-box;
}



.s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image-container {
      position: relative;
    }

    .s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0d76b83e-b933-473f-b7fb-4aa24f7c28c7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}
#s-39da740d-7df8-44e0-bf6a-a6927b119ede {
  padding-top: 2%;
padding-bottom: 1%;
text-align: center;
}

#s-39da740d-7df8-44e0-bf6a-a6927b119ede .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.5em;
  
  
  text-align: center;
}



#s-3365da77-b87d-4731-bffc-f2bb3b5df1e7 {
  padding-bottom: 15%;
min-height: 50px;
}








#s-3365da77-b87d-4731-bffc-f2bb3b5df1e7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3365da77-b87d-4731-bffc-f2bb3b5df1e7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-52065298-6f97-4356-8b63-cd3b52fbe83e {
  max-width: 80%;
aspect-ratio: 420/537;
text-align: center;
}

#s-52065298-6f97-4356-8b63-cd3b52fbe83e {
  margin: 0 !important;
  overflow: visible;
}

#s-52065298-6f97-4356-8b63-cd3b52fbe83e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-52065298-6f97-4356-8b63-cd3b52fbe83e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-52065298-6f97-4356-8b63-cd3b52fbe83e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-52065298-6f97-4356-8b63-cd3b52fbe83e img.shogun-image {
  /* Add background color handling */
  
}

#s-52065298-6f97-4356-8b63-cd3b52fbe83e img.shogun-image {
  /* Add padding handling */
  
  
  padding-top: 0%;
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-52065298-6f97-4356-8b63-cd3b52fbe83e .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-52065298-6f97-4356-8b63-cd3b52fbe83e .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-52065298-6f97-4356-8b63-cd3b52fbe83e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-52065298-6f97-4356-8b63-cd3b52fbe83e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-52065298-6f97-4356-8b63-cd3b52fbe83e .shogun-image-content {
  
    justify-content: center;
  
}

.s-52065298-6f97-4356-8b63-cd3b52fbe83e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image {
  box-sizing: border-box;
}



.s-52065298-6f97-4356-8b63-cd3b52fbe83e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-52065298-6f97-4356-8b63-cd3b52fbe83e {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image-container {
      position: relative;
    }

    .s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-52065298-6f97-4356-8b63-cd3b52fbe83e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

@media (min-width: 1200px){#s-52065298-6f97-4356-8b63-cd3b52fbe83e {
  margin: 0 !important;
  overflow: visible;
}

#s-52065298-6f97-4356-8b63-cd3b52fbe83e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-52065298-6f97-4356-8b63-cd3b52fbe83e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-52065298-6f97-4356-8b63-cd3b52fbe83e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-52065298-6f97-4356-8b63-cd3b52fbe83e img.shogun-image {
  /* Add background color handling */
  
}

#s-52065298-6f97-4356-8b63-cd3b52fbe83e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-52065298-6f97-4356-8b63-cd3b52fbe83e .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-52065298-6f97-4356-8b63-cd3b52fbe83e .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-52065298-6f97-4356-8b63-cd3b52fbe83e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-52065298-6f97-4356-8b63-cd3b52fbe83e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-52065298-6f97-4356-8b63-cd3b52fbe83e .shogun-image-content {
  
    justify-content: center;
  
}

.s-52065298-6f97-4356-8b63-cd3b52fbe83e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image {
  box-sizing: border-box;
}



.s-52065298-6f97-4356-8b63-cd3b52fbe83e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-52065298-6f97-4356-8b63-cd3b52fbe83e {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image-container {
      position: relative;
    }

    .s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-52065298-6f97-4356-8b63-cd3b52fbe83e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-52065298-6f97-4356-8b63-cd3b52fbe83e {
  margin: 0 !important;
  overflow: visible;
}

#s-52065298-6f97-4356-8b63-cd3b52fbe83e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-52065298-6f97-4356-8b63-cd3b52fbe83e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-52065298-6f97-4356-8b63-cd3b52fbe83e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-52065298-6f97-4356-8b63-cd3b52fbe83e img.shogun-image {
  /* Add background color handling */
  
}

#s-52065298-6f97-4356-8b63-cd3b52fbe83e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-52065298-6f97-4356-8b63-cd3b52fbe83e .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-52065298-6f97-4356-8b63-cd3b52fbe83e .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-52065298-6f97-4356-8b63-cd3b52fbe83e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-52065298-6f97-4356-8b63-cd3b52fbe83e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-52065298-6f97-4356-8b63-cd3b52fbe83e .shogun-image-content {
  
    justify-content: center;
  
}

.s-52065298-6f97-4356-8b63-cd3b52fbe83e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image {
  box-sizing: border-box;
}



.s-52065298-6f97-4356-8b63-cd3b52fbe83e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-52065298-6f97-4356-8b63-cd3b52fbe83e {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image-container {
      position: relative;
    }

    .s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-52065298-6f97-4356-8b63-cd3b52fbe83e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-52065298-6f97-4356-8b63-cd3b52fbe83e {
  margin: 0 !important;
  overflow: visible;
}

#s-52065298-6f97-4356-8b63-cd3b52fbe83e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-52065298-6f97-4356-8b63-cd3b52fbe83e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-52065298-6f97-4356-8b63-cd3b52fbe83e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-52065298-6f97-4356-8b63-cd3b52fbe83e img.shogun-image {
  /* Add background color handling */
  
}

#s-52065298-6f97-4356-8b63-cd3b52fbe83e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-52065298-6f97-4356-8b63-cd3b52fbe83e .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-52065298-6f97-4356-8b63-cd3b52fbe83e .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-52065298-6f97-4356-8b63-cd3b52fbe83e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-52065298-6f97-4356-8b63-cd3b52fbe83e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-52065298-6f97-4356-8b63-cd3b52fbe83e .shogun-image-content {
  
    justify-content: center;
  
}

.s-52065298-6f97-4356-8b63-cd3b52fbe83e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image {
  box-sizing: border-box;
}



.s-52065298-6f97-4356-8b63-cd3b52fbe83e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-52065298-6f97-4356-8b63-cd3b52fbe83e {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image-container {
      position: relative;
    }

    .s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-52065298-6f97-4356-8b63-cd3b52fbe83e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (max-width: 767px){#s-52065298-6f97-4356-8b63-cd3b52fbe83e {
  margin: 0 !important;
  overflow: visible;
}

#s-52065298-6f97-4356-8b63-cd3b52fbe83e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-52065298-6f97-4356-8b63-cd3b52fbe83e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-52065298-6f97-4356-8b63-cd3b52fbe83e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-52065298-6f97-4356-8b63-cd3b52fbe83e img.shogun-image {
  /* Add background color handling */
  
}

#s-52065298-6f97-4356-8b63-cd3b52fbe83e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-52065298-6f97-4356-8b63-cd3b52fbe83e .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-52065298-6f97-4356-8b63-cd3b52fbe83e .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-52065298-6f97-4356-8b63-cd3b52fbe83e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-52065298-6f97-4356-8b63-cd3b52fbe83e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-52065298-6f97-4356-8b63-cd3b52fbe83e .shogun-image-content {
  
    justify-content: center;
  
}

.s-52065298-6f97-4356-8b63-cd3b52fbe83e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image {
  box-sizing: border-box;
}



.s-52065298-6f97-4356-8b63-cd3b52fbe83e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-52065298-6f97-4356-8b63-cd3b52fbe83e {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image-container {
      position: relative;
    }

    .s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-52065298-6f97-4356-8b63-cd3b52fbe83e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-52065298-6f97-4356-8b63-cd3b52fbe83e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}
#s-da116a7c-cd47-45db-98d6-1480c130ddd5 {
  padding-top: 2%;
padding-bottom: 1%;
text-align: center;
}

#s-da116a7c-cd47-45db-98d6-1480c130ddd5 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.5em;
  
  
  text-align: center;
}



#s-18b4526c-65dd-4609-a4a5-d6b84c18901d {
  margin-bottom: 15%;
}








#s-18b4526c-65dd-4609-a4a5-d6b84c18901d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-18b4526c-65dd-4609-a4a5-d6b84c18901d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3c6223c8-fc86-498c-a68e-a1061539b8e2 {
  max-width: 80%;
aspect-ratio: 420/537;
text-align: center;
}

#s-3c6223c8-fc86-498c-a68e-a1061539b8e2 {
  margin: 0 !important;
  overflow: visible;
}

#s-3c6223c8-fc86-498c-a68e-a1061539b8e2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3c6223c8-fc86-498c-a68e-a1061539b8e2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3c6223c8-fc86-498c-a68e-a1061539b8e2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3c6223c8-fc86-498c-a68e-a1061539b8e2 img.shogun-image {
  /* Add background color handling */
  
}

#s-3c6223c8-fc86-498c-a68e-a1061539b8e2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3c6223c8-fc86-498c-a68e-a1061539b8e2 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-3c6223c8-fc86-498c-a68e-a1061539b8e2 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3c6223c8-fc86-498c-a68e-a1061539b8e2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3c6223c8-fc86-498c-a68e-a1061539b8e2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-3c6223c8-fc86-498c-a68e-a1061539b8e2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image {
  box-sizing: border-box;
}



.s-3c6223c8-fc86-498c-a68e-a1061539b8e2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3c6223c8-fc86-498c-a68e-a1061539b8e2 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image-container {
      position: relative;
    }

    .s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3c6223c8-fc86-498c-a68e-a1061539b8e2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

@media (min-width: 1200px){#s-3c6223c8-fc86-498c-a68e-a1061539b8e2 {
  margin: 0 !important;
  overflow: visible;
}

#s-3c6223c8-fc86-498c-a68e-a1061539b8e2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3c6223c8-fc86-498c-a68e-a1061539b8e2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3c6223c8-fc86-498c-a68e-a1061539b8e2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3c6223c8-fc86-498c-a68e-a1061539b8e2 img.shogun-image {
  /* Add background color handling */
  
}

#s-3c6223c8-fc86-498c-a68e-a1061539b8e2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3c6223c8-fc86-498c-a68e-a1061539b8e2 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-3c6223c8-fc86-498c-a68e-a1061539b8e2 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3c6223c8-fc86-498c-a68e-a1061539b8e2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3c6223c8-fc86-498c-a68e-a1061539b8e2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-3c6223c8-fc86-498c-a68e-a1061539b8e2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image {
  box-sizing: border-box;
}



.s-3c6223c8-fc86-498c-a68e-a1061539b8e2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3c6223c8-fc86-498c-a68e-a1061539b8e2 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image-container {
      position: relative;
    }

    .s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3c6223c8-fc86-498c-a68e-a1061539b8e2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-3c6223c8-fc86-498c-a68e-a1061539b8e2 {
  margin: 0 !important;
  overflow: visible;
}

#s-3c6223c8-fc86-498c-a68e-a1061539b8e2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3c6223c8-fc86-498c-a68e-a1061539b8e2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3c6223c8-fc86-498c-a68e-a1061539b8e2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3c6223c8-fc86-498c-a68e-a1061539b8e2 img.shogun-image {
  /* Add background color handling */
  
}

#s-3c6223c8-fc86-498c-a68e-a1061539b8e2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3c6223c8-fc86-498c-a68e-a1061539b8e2 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-3c6223c8-fc86-498c-a68e-a1061539b8e2 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3c6223c8-fc86-498c-a68e-a1061539b8e2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3c6223c8-fc86-498c-a68e-a1061539b8e2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-3c6223c8-fc86-498c-a68e-a1061539b8e2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image {
  box-sizing: border-box;
}



.s-3c6223c8-fc86-498c-a68e-a1061539b8e2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3c6223c8-fc86-498c-a68e-a1061539b8e2 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image-container {
      position: relative;
    }

    .s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3c6223c8-fc86-498c-a68e-a1061539b8e2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-3c6223c8-fc86-498c-a68e-a1061539b8e2 {
  margin: 0 !important;
  overflow: visible;
}

#s-3c6223c8-fc86-498c-a68e-a1061539b8e2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3c6223c8-fc86-498c-a68e-a1061539b8e2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3c6223c8-fc86-498c-a68e-a1061539b8e2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3c6223c8-fc86-498c-a68e-a1061539b8e2 img.shogun-image {
  /* Add background color handling */
  
}

#s-3c6223c8-fc86-498c-a68e-a1061539b8e2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3c6223c8-fc86-498c-a68e-a1061539b8e2 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-3c6223c8-fc86-498c-a68e-a1061539b8e2 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3c6223c8-fc86-498c-a68e-a1061539b8e2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3c6223c8-fc86-498c-a68e-a1061539b8e2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-3c6223c8-fc86-498c-a68e-a1061539b8e2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image {
  box-sizing: border-box;
}



.s-3c6223c8-fc86-498c-a68e-a1061539b8e2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3c6223c8-fc86-498c-a68e-a1061539b8e2 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image-container {
      position: relative;
    }

    .s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3c6223c8-fc86-498c-a68e-a1061539b8e2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (max-width: 767px){#s-3c6223c8-fc86-498c-a68e-a1061539b8e2 {
  margin: 0 !important;
  overflow: visible;
}

#s-3c6223c8-fc86-498c-a68e-a1061539b8e2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3c6223c8-fc86-498c-a68e-a1061539b8e2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3c6223c8-fc86-498c-a68e-a1061539b8e2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3c6223c8-fc86-498c-a68e-a1061539b8e2 img.shogun-image {
  /* Add background color handling */
  
}

#s-3c6223c8-fc86-498c-a68e-a1061539b8e2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3c6223c8-fc86-498c-a68e-a1061539b8e2 .shg-image-content-wrapper {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }

    #s-3c6223c8-fc86-498c-a68e-a1061539b8e2 .shogun-image-link {
      aspect-ratio: 420/537;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3c6223c8-fc86-498c-a68e-a1061539b8e2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3c6223c8-fc86-498c-a68e-a1061539b8e2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-3c6223c8-fc86-498c-a68e-a1061539b8e2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image {
  box-sizing: border-box;
}



.s-3c6223c8-fc86-498c-a68e-a1061539b8e2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3c6223c8-fc86-498c-a68e-a1061539b8e2 {
      --shg-aspect-ratio: calc(420/537); 
    }

    .s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image-container {
      position: relative;
    }

    .s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3c6223c8-fc86-498c-a68e-a1061539b8e2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3c6223c8-fc86-498c-a68e-a1061539b8e2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}
#s-89d36a30-f5f2-4ce5-8fdf-aae67cd00003 {
  padding-top: 2%;
padding-bottom: 1%;
text-align: center;
}

#s-89d36a30-f5f2-4ce5-8fdf-aae67cd00003 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.5em;
  
  
  text-align: center;
}



#s-07df37d7-2511-4e89-91d7-3201119b9f79 {
  min-height: 50px;
}








#s-07df37d7-2511-4e89-91d7-3201119b9f79 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-07df37d7-2511-4e89-91d7-3201119b9f79.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3ca64b40-59d6-42c5-bf2b-688d9119636e {
  max-width: 80%;
aspect-ratio: 280/358;
text-align: center;
}

#s-3ca64b40-59d6-42c5-bf2b-688d9119636e {
  margin: 0 !important;
  overflow: visible;
}

#s-3ca64b40-59d6-42c5-bf2b-688d9119636e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3ca64b40-59d6-42c5-bf2b-688d9119636e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3ca64b40-59d6-42c5-bf2b-688d9119636e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3ca64b40-59d6-42c5-bf2b-688d9119636e img.shogun-image {
  /* Add background color handling */
  
}

#s-3ca64b40-59d6-42c5-bf2b-688d9119636e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3ca64b40-59d6-42c5-bf2b-688d9119636e .shg-image-content-wrapper {
      aspect-ratio: 280/358;
      min-width: 100%;
      height: auto;
    }

    #s-3ca64b40-59d6-42c5-bf2b-688d9119636e .shogun-image-link {
      aspect-ratio: 280/358;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3ca64b40-59d6-42c5-bf2b-688d9119636e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3ca64b40-59d6-42c5-bf2b-688d9119636e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-3ca64b40-59d6-42c5-bf2b-688d9119636e .shogun-image-content {
  
    justify-content: center;
  
}

.s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image {
  box-sizing: border-box;
}



.s-3ca64b40-59d6-42c5-bf2b-688d9119636e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3ca64b40-59d6-42c5-bf2b-688d9119636e {
      --shg-aspect-ratio: calc(280/358); 
    }

    .s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image-container {
      position: relative;
    }

    .s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3ca64b40-59d6-42c5-bf2b-688d9119636e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

@media (min-width: 1200px){#s-3ca64b40-59d6-42c5-bf2b-688d9119636e {
  margin: 0 !important;
  overflow: visible;
}

#s-3ca64b40-59d6-42c5-bf2b-688d9119636e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3ca64b40-59d6-42c5-bf2b-688d9119636e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3ca64b40-59d6-42c5-bf2b-688d9119636e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3ca64b40-59d6-42c5-bf2b-688d9119636e img.shogun-image {
  /* Add background color handling */
  
}

#s-3ca64b40-59d6-42c5-bf2b-688d9119636e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3ca64b40-59d6-42c5-bf2b-688d9119636e .shg-image-content-wrapper {
      aspect-ratio: 280/358;
      min-width: 100%;
      height: auto;
    }

    #s-3ca64b40-59d6-42c5-bf2b-688d9119636e .shogun-image-link {
      aspect-ratio: 280/358;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3ca64b40-59d6-42c5-bf2b-688d9119636e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3ca64b40-59d6-42c5-bf2b-688d9119636e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-3ca64b40-59d6-42c5-bf2b-688d9119636e .shogun-image-content {
  
    justify-content: center;
  
}

.s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image {
  box-sizing: border-box;
}



.s-3ca64b40-59d6-42c5-bf2b-688d9119636e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3ca64b40-59d6-42c5-bf2b-688d9119636e {
      --shg-aspect-ratio: calc(280/358); 
    }

    .s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image-container {
      position: relative;
    }

    .s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3ca64b40-59d6-42c5-bf2b-688d9119636e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-3ca64b40-59d6-42c5-bf2b-688d9119636e {
  margin: 0 !important;
  overflow: visible;
}

#s-3ca64b40-59d6-42c5-bf2b-688d9119636e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3ca64b40-59d6-42c5-bf2b-688d9119636e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3ca64b40-59d6-42c5-bf2b-688d9119636e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3ca64b40-59d6-42c5-bf2b-688d9119636e img.shogun-image {
  /* Add background color handling */
  
}

#s-3ca64b40-59d6-42c5-bf2b-688d9119636e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3ca64b40-59d6-42c5-bf2b-688d9119636e .shg-image-content-wrapper {
      aspect-ratio: 280/358;
      min-width: 100%;
      height: auto;
    }

    #s-3ca64b40-59d6-42c5-bf2b-688d9119636e .shogun-image-link {
      aspect-ratio: 280/358;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3ca64b40-59d6-42c5-bf2b-688d9119636e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3ca64b40-59d6-42c5-bf2b-688d9119636e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-3ca64b40-59d6-42c5-bf2b-688d9119636e .shogun-image-content {
  
    justify-content: center;
  
}

.s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image {
  box-sizing: border-box;
}



.s-3ca64b40-59d6-42c5-bf2b-688d9119636e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3ca64b40-59d6-42c5-bf2b-688d9119636e {
      --shg-aspect-ratio: calc(280/358); 
    }

    .s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image-container {
      position: relative;
    }

    .s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3ca64b40-59d6-42c5-bf2b-688d9119636e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-3ca64b40-59d6-42c5-bf2b-688d9119636e {
  margin: 0 !important;
  overflow: visible;
}

#s-3ca64b40-59d6-42c5-bf2b-688d9119636e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3ca64b40-59d6-42c5-bf2b-688d9119636e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3ca64b40-59d6-42c5-bf2b-688d9119636e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3ca64b40-59d6-42c5-bf2b-688d9119636e img.shogun-image {
  /* Add background color handling */
  
}

#s-3ca64b40-59d6-42c5-bf2b-688d9119636e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3ca64b40-59d6-42c5-bf2b-688d9119636e .shg-image-content-wrapper {
      aspect-ratio: 280/358;
      min-width: 100%;
      height: auto;
    }

    #s-3ca64b40-59d6-42c5-bf2b-688d9119636e .shogun-image-link {
      aspect-ratio: 280/358;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3ca64b40-59d6-42c5-bf2b-688d9119636e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3ca64b40-59d6-42c5-bf2b-688d9119636e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-3ca64b40-59d6-42c5-bf2b-688d9119636e .shogun-image-content {
  
    justify-content: center;
  
}

.s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image {
  box-sizing: border-box;
}



.s-3ca64b40-59d6-42c5-bf2b-688d9119636e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3ca64b40-59d6-42c5-bf2b-688d9119636e {
      --shg-aspect-ratio: calc(280/358); 
    }

    .s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image-container {
      position: relative;
    }

    .s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3ca64b40-59d6-42c5-bf2b-688d9119636e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}@media (max-width: 767px){#s-3ca64b40-59d6-42c5-bf2b-688d9119636e {
  margin: 0 !important;
  overflow: visible;
}

#s-3ca64b40-59d6-42c5-bf2b-688d9119636e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3ca64b40-59d6-42c5-bf2b-688d9119636e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3ca64b40-59d6-42c5-bf2b-688d9119636e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3ca64b40-59d6-42c5-bf2b-688d9119636e img.shogun-image {
  /* Add background color handling */
  
}

#s-3ca64b40-59d6-42c5-bf2b-688d9119636e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3ca64b40-59d6-42c5-bf2b-688d9119636e .shg-image-content-wrapper {
      aspect-ratio: 280/358;
      min-width: 100%;
      height: auto;
    }

    #s-3ca64b40-59d6-42c5-bf2b-688d9119636e .shogun-image-link {
      aspect-ratio: 280/358;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3ca64b40-59d6-42c5-bf2b-688d9119636e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3ca64b40-59d6-42c5-bf2b-688d9119636e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 80%;
  }



  img.s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-3ca64b40-59d6-42c5-bf2b-688d9119636e .shogun-image-content {
  
    justify-content: center;
  
}

.s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image {
  box-sizing: border-box;
}



.s-3ca64b40-59d6-42c5-bf2b-688d9119636e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3ca64b40-59d6-42c5-bf2b-688d9119636e {
      --shg-aspect-ratio: calc(280/358); 
    }

    .s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image-container {
      position: relative;
    }

    .s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3ca64b40-59d6-42c5-bf2b-688d9119636e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3ca64b40-59d6-42c5-bf2b-688d9119636e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 80%;
    }
  }

}
#s-25b70921-b813-43d1-891f-2b5322f21e55 {
  padding-top: 2%;
padding-bottom: 1%;
text-align: center;
}

#s-25b70921-b813-43d1-891f-2b5322f21e55 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.5em;
  
  
  text-align: center;
}



#s-c36114b7-1f4b-4d58-992b-74e566b67aea {
  background-repeat: no-repeat;
background-size: cover;
margin-top: auto;
margin-bottom: auto;
padding-top: 10%;
padding-bottom: 10%;
min-height: 50px;
background-position: left top;
}
@media (min-width: 1200px){#s-c36114b7-1f4b-4d58-992b-74e566b67aea {
  display: none;
}
#s-c36114b7-1f4b-4d58-992b-74e566b67aea, #wrap-s-c36114b7-1f4b-4d58-992b-74e566b67aea, #wrap-content-s-c36114b7-1f4b-4d58-992b-74e566b67aea { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c36114b7-1f4b-4d58-992b-74e566b67aea {
  display: none;
}
#s-c36114b7-1f4b-4d58-992b-74e566b67aea, #wrap-s-c36114b7-1f4b-4d58-992b-74e566b67aea, #wrap-content-s-c36114b7-1f4b-4d58-992b-74e566b67aea { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c36114b7-1f4b-4d58-992b-74e566b67aea {
  display: none;
}
#s-c36114b7-1f4b-4d58-992b-74e566b67aea, #wrap-s-c36114b7-1f4b-4d58-992b-74e566b67aea, #wrap-content-s-c36114b7-1f4b-4d58-992b-74e566b67aea { display: none !important; }}@media (max-width: 767px){#s-c36114b7-1f4b-4d58-992b-74e566b67aea {
  display: none;
}
#s-c36114b7-1f4b-4d58-992b-74e566b67aea, #wrap-s-c36114b7-1f4b-4d58-992b-74e566b67aea, #wrap-content-s-c36114b7-1f4b-4d58-992b-74e566b67aea { display: none !important; }}
#s-c36114b7-1f4b-4d58-992b-74e566b67aea {
  background-image: url(https://i.shgcdn.com/0153c745-c2ab-45d8-900a-4f7e77b4889a/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}

@media (max-width: 480px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-c36114b7-1f4b-4d58-992b-74e566b67aea {
  background-image: url(https://i.shgcdn.com/0153c745-c2ab-45d8-900a-4f7e77b4889a/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/480x/);
}
#s-c36114b7-1f4b-4d58-992b-74e566b67aea.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-c36114b7-1f4b-4d58-992b-74e566b67aea {
  background-image: url(https://i.shgcdn.com/0153c745-c2ab-45d8-900a-4f7e77b4889a/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/960x/);
}
#s-c36114b7-1f4b-4d58-992b-74e566b67aea.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-c36114b7-1f4b-4d58-992b-74e566b67aea {
  background-image: url(https://i.shgcdn.com/0153c745-c2ab-45d8-900a-4f7e77b4889a/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/768x/);
}
#s-c36114b7-1f4b-4d58-992b-74e566b67aea.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-c36114b7-1f4b-4d58-992b-74e566b67aea {
  background-image: url(https://i.shgcdn.com/0153c745-c2ab-45d8-900a-4f7e77b4889a/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1536x/);
}
#s-c36114b7-1f4b-4d58-992b-74e566b67aea.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-c36114b7-1f4b-4d58-992b-74e566b67aea {
  background-image: url(https://i.shgcdn.com/0153c745-c2ab-45d8-900a-4f7e77b4889a/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1024x/);
}
#s-c36114b7-1f4b-4d58-992b-74e566b67aea.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-c36114b7-1f4b-4d58-992b-74e566b67aea {
  background-image: url(https://i.shgcdn.com/0153c745-c2ab-45d8-900a-4f7e77b4889a/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}
#s-c36114b7-1f4b-4d58-992b-74e566b67aea.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-c36114b7-1f4b-4d58-992b-74e566b67aea {
  background-image: url(https://i.shgcdn.com/0153c745-c2ab-45d8-900a-4f7e77b4889a/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1200x/);
}
#s-c36114b7-1f4b-4d58-992b-74e566b67aea.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-c36114b7-1f4b-4d58-992b-74e566b67aea {
  background-image: url(https://i.shgcdn.com/0153c745-c2ab-45d8-900a-4f7e77b4889a/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}
#s-c36114b7-1f4b-4d58-992b-74e566b67aea.shogun-lazyload-bg-image {
  background-image: none;
}

}







#s-c36114b7-1f4b-4d58-992b-74e566b67aea > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c36114b7-1f4b-4d58-992b-74e566b67aea.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8fde277e-04f7-422d-96da-79b47188d3f1 {
  margin-left: auto;
margin-right: auto;
min-height: 35em;
max-width: 80%;
}








#s-8fde277e-04f7-422d-96da-79b47188d3f1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8fde277e-04f7-422d-96da-79b47188d3f1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-27105ad0-afdf-4588-9206-ba8697d89ae8 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 1%;
padding-right: 0px;
text-align: left;
}

#s-27105ad0-afdf-4588-9206-ba8697d89ae8 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 2em;
  line-height: 1em;
  
  text-align: left;
}



#s-95cde34d-1c69-40bb-aab3-4e091a875d4c {
  margin-left: auto;
margin-bottom: 2%;
margin-right: auto;
}

#s-e578106c-f2b2-4ad8-af46-2e8007d00085 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
max-width: 100%;
}

#s-e578106c-f2b2-4ad8-af46-2e8007d00085 .shogun-form-box label.shogun-form-label {
  display: flex;
  font-weight:  normal;
  color: #000;
  
  
  
  
  
  
  padding-top: 5px;
  padding-bottom: 5px;
  
  
}

#s-e578106c-f2b2-4ad8-af46-2e8007d00085 .shogun-form-success-msg {
  visibility: hidden;
  display: flex;
  align-items: center;
  
  
  color: #008000;
  
  
  
  
  
}

#s-e578106c-f2b2-4ad8-af46-2e8007d00085 .shogun-form-success-msg > svg {
  margin-right: 4px;
  stroke: #008000;
}

#s-e578106c-f2b2-4ad8-af46-2e8007d00085 .shogun-form-error-msg-container, #s-e578106c-f2b2-4ad8-af46-2e8007d00085 .shogun-form-field-error-msg-container {
  display: none;
}

#s-e578106c-f2b2-4ad8-af46-2e8007d00085 .shogun-form-error-msg {
  
  
  color: #ff0000;
  
  
  
  
  
}

#s-e578106c-f2b2-4ad8-af46-2e8007d00085 .shogun-form-field-error-msg > svg {
  margin-right: 4px;
  stroke: #ff0000;
}

#s-72b64d81-1d04-4b84-8a7d-e9c7daffc5ee {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 2%;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
}

#s-72b64d81-1d04-4b84-8a7d-e9c7daffc5ee  .shogun-form-text-input-field {
  border-width: 0px;
  border-color: rgba(0, 0, 0, 1);
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 3px 3px 6px 1px rgba(0, 0, 0, 0.1);
  font-size: 1em;
  font-style: ;
  color: rgba(0, 0, 0, 0.5);
  font-family: Outfit;
  font-weight: 200;
  line-height: 3em;
  
}

#s-72b64d81-1d04-4b84-8a7d-e9c7daffc5ee  .shogun-form-text-input-field::placeholder {
  
  font-style: ;
  color: rgba(0, 0, 0, 0.5);
  font-family: Outfit;
  font-weight: 300;
  line-height: 0.5em;
  letter-spacing: 2px;
}


#s-72b64d81-1d04-4b84-8a7d-e9c7daffc5ee .shogun-form-text-input-field:hover {
  border-width: 0px;
  border-color: rgba(255, 255, 255, 1);
  
  
  color: #000;
}



#s-72b64d81-1d04-4b84-8a7d-e9c7daffc5ee .shogun-form-text-input-field:focus {
  border-width: 0px;
  border-color: #000;
  
  
  color: #000;
}


#s-6ffc66be-6630-45dd-89f7-42440ff838bc {
  margin-top: 1%;
margin-left: 0%;
margin-bottom: 1%;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
}

#s-6ffc66be-6630-45dd-89f7-42440ff838bc  .shogun-form-text-input-field {
  border-width: 0px;
  border-color: rgba(0, 0, 0, 1);
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 3px 3px 6px 1px rgba(0, 0, 0, 0.1);
  font-size: 1em;
  font-style: ;
  color: rgba(0, 0, 0, 0.5);
  font-family: Outfit;
  font-weight: 200;
  line-height: 3em;
  
}

#s-6ffc66be-6630-45dd-89f7-42440ff838bc  .shogun-form-text-input-field::placeholder {
  
  font-style: ;
  color: rgba(0, 0, 0, 0.5);
  font-family: Outfit;
  font-weight: 300;
  line-height: 0.5em;
  letter-spacing: 2px;
}


#s-6ffc66be-6630-45dd-89f7-42440ff838bc .shogun-form-text-input-field:hover {
  border-width: 0px;
  border-color: rgba(255, 255, 255, 1);
  
  
  color: #000;
}



#s-6ffc66be-6630-45dd-89f7-42440ff838bc .shogun-form-text-input-field:focus {
  border-width: 0px;
  border-color: #000;
  
  
  color: #000;
}


#s-e73e8b0f-3b97-4153-b7bf-ada1e35629a2 {
  margin-top: 2%;
margin-left: 0%;
margin-bottom: 2%;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
}

#s-e73e8b0f-3b97-4153-b7bf-ada1e35629a2  .shogun-form-text-input-field {
  border-width: 0px;
  border-color: rgba(0, 0, 0, 1);
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 3px 3px 6px 1px rgba(0, 0, 0, 0.1);
  font-size: 1em;
  font-style: ;
  color: rgba(0, 0, 0, 0.5);
  font-family: Outfit;
  font-weight: 200;
  line-height: 3em;
  
}

#s-e73e8b0f-3b97-4153-b7bf-ada1e35629a2  .shogun-form-text-input-field::placeholder {
  
  font-style: ;
  color: rgba(0, 0, 0, 0.5);
  font-family: Outfit;
  font-weight: 300;
  line-height: 0.5em;
  letter-spacing: 2px;
}


#s-e73e8b0f-3b97-4153-b7bf-ada1e35629a2 .shogun-form-text-input-field:hover {
  border-width: 0px;
  border-color: rgba(255, 255, 255, 1);
  
  
  color: #000;
}



#s-e73e8b0f-3b97-4153-b7bf-ada1e35629a2 .shogun-form-text-input-field:focus {
  border-width: 0px;
  border-color: #000;
  
  
  color: #000;
}


#s-0b0a6a21-6ff5-4b35-a2a2-b321067d5b84 {
  margin-top: 2%;
margin-left: 0%;
margin-bottom: 2%;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
}

#s-0b0a6a21-6ff5-4b35-a2a2-b321067d5b84  .shogun-form-text-input-field {
  border-width: 0px;
  border-color: rgba(0, 0, 0, 1);
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 3px 3px 6px 1px rgba(0, 0, 0, 0.1);
  font-size: 1em;
  font-style: ;
  color: rgba(0, 0, 0, 0.5);
  font-family: Outfit;
  font-weight: 200;
  line-height: 2em;
  
}

#s-0b0a6a21-6ff5-4b35-a2a2-b321067d5b84  .shogun-form-text-input-field::placeholder {
  
  font-style: ;
  color: rgba(0, 0, 0, 0.5);
  font-family: Outfit;
  font-weight: 300;
  line-height: 2em;
  letter-spacing: 2px;
}


#s-0b0a6a21-6ff5-4b35-a2a2-b321067d5b84 .shogun-form-text-input-field:hover {
  border-width: 0px;
  border-color: rgba(255, 255, 255, 1);
  
  
  color: #000;
}



#s-0b0a6a21-6ff5-4b35-a2a2-b321067d5b84 .shogun-form-text-input-field:focus {
  border-width: 0px;
  border-color: #000;
  
  
  color: #000;
}


#s-035baabd-4bba-4cfd-b161-f114778b20e0 {
  margin-top: 2%;
margin-left: auto;
margin-bottom: 2%;
margin-right: 0px;
padding-top: 10px;
padding-left: 25px;
padding-bottom: 10px;
padding-right: 25px;
border-radius: 50px;
color: #FFFFFF;
background-color: rgba(11, 75, 152, 1);
text-align: right;
cursor: pointer;
font-family: Outfit;
font-weight: 500;
font-size: 1em;
background-image: none;
hover-type: color;
line-height: 1em;
}
#s-035baabd-4bba-4cfd-b161-f114778b20e0:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(8, 128, 166, 1) !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(8, 128, 166, 1) !important;}#s-035baabd-4bba-4cfd-b161-f114778b20e0:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(8, 128, 166, 1) !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(8, 128, 166, 1) !important;}
#s-035baabd-4bba-4cfd-b161-f114778b20e0[disabled],
#s-035baabd-4bba-4cfd-b161-f114778b20e0[disabled]:hover,
#s-035baabd-4bba-4cfd-b161-f114778b20e0[disabled]:focus {
  background-color: #D7D5E2 !important;
}

#s-035baabd-4bba-4cfd-b161-f114778b20e0 {
  display:  inline-block ;
  width:  auto ;
}


#s-937afba3-bec7-48e6-8a43-785c8c542b95 {
  text-align: center;
}
@media (min-width: 1200px){#s-937afba3-bec7-48e6-8a43-785c8c542b95 {
  display: none;
}
#s-937afba3-bec7-48e6-8a43-785c8c542b95, #wrap-s-937afba3-bec7-48e6-8a43-785c8c542b95, #wrap-content-s-937afba3-bec7-48e6-8a43-785c8c542b95 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-937afba3-bec7-48e6-8a43-785c8c542b95 {
  display: none;
}
#s-937afba3-bec7-48e6-8a43-785c8c542b95, #wrap-s-937afba3-bec7-48e6-8a43-785c8c542b95, #wrap-content-s-937afba3-bec7-48e6-8a43-785c8c542b95 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-937afba3-bec7-48e6-8a43-785c8c542b95 {
  display: none;
}
#s-937afba3-bec7-48e6-8a43-785c8c542b95, #wrap-s-937afba3-bec7-48e6-8a43-785c8c542b95, #wrap-content-s-937afba3-bec7-48e6-8a43-785c8c542b95 { display: none !important; }}@media (max-width: 767px){#s-937afba3-bec7-48e6-8a43-785c8c542b95 {
  display: none;
}
#s-937afba3-bec7-48e6-8a43-785c8c542b95, #wrap-s-937afba3-bec7-48e6-8a43-785c8c542b95, #wrap-content-s-937afba3-bec7-48e6-8a43-785c8c542b95 { display: none !important; }}
#s-d4888a78-dbc3-4515-a164-9593f403e5e3 {
  margin-top: 0%;
margin-bottom: 0%;
padding-top: 10%;
padding-bottom: 0%;
min-height: 50px;
background-color: rgba(11, 75, 152, 1);
}
@media (min-width: 1200px){#s-d4888a78-dbc3-4515-a164-9593f403e5e3 {
  display: none;
}
#s-d4888a78-dbc3-4515-a164-9593f403e5e3, #wrap-s-d4888a78-dbc3-4515-a164-9593f403e5e3, #wrap-content-s-d4888a78-dbc3-4515-a164-9593f403e5e3 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d4888a78-dbc3-4515-a164-9593f403e5e3 {
  display: none;
}
#s-d4888a78-dbc3-4515-a164-9593f403e5e3, #wrap-s-d4888a78-dbc3-4515-a164-9593f403e5e3, #wrap-content-s-d4888a78-dbc3-4515-a164-9593f403e5e3 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d4888a78-dbc3-4515-a164-9593f403e5e3 {
  margin-top: 0%;
margin-bottom: 0%;
display: none;
}
#s-d4888a78-dbc3-4515-a164-9593f403e5e3, #wrap-s-d4888a78-dbc3-4515-a164-9593f403e5e3, #wrap-content-s-d4888a78-dbc3-4515-a164-9593f403e5e3 { display: none !important; }}@media (max-width: 767px){#s-d4888a78-dbc3-4515-a164-9593f403e5e3 {
  display: none;
}
#s-d4888a78-dbc3-4515-a164-9593f403e5e3, #wrap-s-d4888a78-dbc3-4515-a164-9593f403e5e3, #wrap-content-s-d4888a78-dbc3-4515-a164-9593f403e5e3 { display: none !important; }}







#s-d4888a78-dbc3-4515-a164-9593f403e5e3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d4888a78-dbc3-4515-a164-9593f403e5e3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ae7ae0b8-14f0-4fbd-b51d-e3b85c2935ab {
  margin-left: auto;
margin-right: auto;
max-width: 85%;
}
@media (min-width: 768px) and (max-width: 991px){#s-ae7ae0b8-14f0-4fbd-b51d-e3b85c2935ab {
  display: none;
}
#s-ae7ae0b8-14f0-4fbd-b51d-e3b85c2935ab, #wrap-s-ae7ae0b8-14f0-4fbd-b51d-e3b85c2935ab, #wrap-content-s-ae7ae0b8-14f0-4fbd-b51d-e3b85c2935ab { display: none !important; }}@media (max-width: 767px){#s-ae7ae0b8-14f0-4fbd-b51d-e3b85c2935ab {
  display: none;
}
#s-ae7ae0b8-14f0-4fbd-b51d-e3b85c2935ab, #wrap-s-ae7ae0b8-14f0-4fbd-b51d-e3b85c2935ab, #wrap-content-s-ae7ae0b8-14f0-4fbd-b51d-e3b85c2935ab { display: none !important; }}
@media (min-width: 0px) {
[id="s-ae7ae0b8-14f0-4fbd-b51d-e3b85c2935ab"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ae7ae0b8-14f0-4fbd-b51d-e3b85c2935ab"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ae7ae0b8-14f0-4fbd-b51d-e3b85c2935ab"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ae7ae0b8-14f0-4fbd-b51d-e3b85c2935ab"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-16465259-7540-45cd-afb2-2fe0fd462d94 {
  margin-top: 0%;
margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 2%;
padding-right: 0px;
max-width: 190px;
text-align: left;
}

#s-16465259-7540-45cd-afb2-2fe0fd462d94 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 2em;
  line-height: 1em;
  
  text-align: left;
}



#s-71fdd66f-d2ca-406c-b0a6-d2d685a29573 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-71fdd66f-d2ca-406c-b0a6-d2d685a29573 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-71fdd66f-d2ca-406c-b0a6-d2d685a29573.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-28a21a25-694e-4932-aa65-41ea09a0c390 {
  margin-left: auto;
margin-right: auto;
padding-left: 0px;
padding-right: 0px;
max-width: 190px;
}

#s-eab4091a-5cea-4f0f-86a9-e6bd48bd299d {
  padding-bottom: 4%;
min-height: 50px;
}








#s-eab4091a-5cea-4f0f-86a9-e6bd48bd299d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-eab4091a-5cea-4f0f-86a9-e6bd48bd299d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-18d0892c-56ef-4611-a3e0-549f167bf795 {
  margin-top: 0%;
margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 2%;
padding-right: 0px;
max-width: 120px;
text-align: left;
}

#s-18d0892c-56ef-4611-a3e0-549f167bf795 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 2em;
  line-height: 1em;
  
  text-align: left;
}



#s-71d906ee-2f75-4e3b-b588-59cafb685e30 {
  margin-left: auto;
margin-right: auto;
padding-left: 0px;
padding-right: 0px;
max-width: 120px;
}

#s-72b48ec0-55aa-4b02-9c3a-7d7c0c4669fe {
  margin-top: 0%;
margin-left: auto;
margin-bottom: 0%;
margin-right: auto;
padding-top: 0%;
padding-left: 0px;
padding-bottom: 0%;
padding-right: 0px;
text-align: left;
}

#s-72b48ec0-55aa-4b02-9c3a-7d7c0c4669fe .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Outfit";
  font-style:  normal ;
  font-size: 1.1em;
  line-height: 1em;
  
  text-align: center;
}



#s-7fdf5bc1-e8d2-4ec7-bf49-3481be1979cc {
  margin-top: 2%;
margin-bottom: 2%;
text-align: center;
}

#s-55c967b7-73b4-48ba-85d2-22eb69108ab9 {
  padding-left: 0%;
padding-bottom: 1%;
}

/*
  $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;
}

@charset "UTF-8";/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */:root{--animate-duration:1s;--animate-delay:1s;--animate-repeat:1}.animate__animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-duration:var(--animate-duration);animation-duration:var(--animate-duration);-webkit-animation-fill-mode:both;animation-fill-mode:both}.animate__animated.animate__infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animate__animated.animate__repeat-1{-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-iteration-count:var(--animate-repeat);animation-iteration-count:var(--animate-repeat)}.animate__animated.animate__repeat-2{-webkit-animation-iteration-count:2;animation-iteration-count:2;-webkit-animation-iteration-count:calc(var(--animate-repeat)*2);animation-iteration-count:calc(var(--animate-repeat)*2)}.animate__animated.animate__repeat-3{-webkit-animation-iteration-count:3;animation-iteration-count:3;-webkit-animation-iteration-count:calc(var(--animate-repeat)*3);animation-iteration-count:calc(var(--animate-repeat)*3)}.animate__animated.animate__delay-1s{-webkit-animation-delay:1s;animation-delay:1s;-webkit-animation-delay:var(--animate-delay);animation-delay:var(--animate-delay)}.animate__animated.animate__delay-2s{-webkit-animation-delay:2s;animation-delay:2s;-webkit-animation-delay:calc(var(--animate-delay)*2);animation-delay:calc(var(--animate-delay)*2)}.animate__animated.animate__delay-3s{-webkit-animation-delay:3s;animation-delay:3s;-webkit-animation-delay:calc(var(--animate-delay)*3);animation-delay:calc(var(--animate-delay)*3)}.animate__animated.animate__delay-4s{-webkit-animation-delay:4s;animation-delay:4s;-webkit-animation-delay:calc(var(--animate-delay)*4);animation-delay:calc(var(--animate-delay)*4)}.animate__animated.animate__delay-5s{-webkit-animation-delay:5s;animation-delay:5s;-webkit-animation-delay:calc(var(--animate-delay)*5);animation-delay:calc(var(--animate-delay)*5)}.animate__animated.animate__faster{-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-duration:calc(var(--animate-duration)/2);animation-duration:calc(var(--animate-duration)/2)}.animate__animated.animate__fast{-webkit-animation-duration:.8s;animation-duration:.8s;-webkit-animation-duration:calc(var(--animate-duration)*0.8);animation-duration:calc(var(--animate-duration)*0.8)}.animate__animated.animate__slow{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-duration:calc(var(--animate-duration)*2);animation-duration:calc(var(--animate-duration)*2)}.animate__animated.animate__slower{-webkit-animation-duration:3s;animation-duration:3s;-webkit-animation-duration:calc(var(--animate-duration)*3);animation-duration:calc(var(--animate-duration)*3)}@media (prefers-reduced-motion:reduce),print{.animate__animated{-webkit-animation-duration:1ms!important;animation-duration:1ms!important;-webkit-transition-duration:1ms!important;transition-duration:1ms!important;-webkit-animation-iteration-count:1!important;animation-iteration-count:1!important}.animate__animated[class*=Out]{opacity:0}}@-webkit-keyframes bounce{0%,20%,53%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0) scaleY(1.1);transform:translate3d(0,-30px,0) scaleY(1.1)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0) scaleY(1.05);transform:translate3d(0,-15px,0) scaleY(1.05)}80%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0) scaleY(.95);transform:translateZ(0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-4px,0) scaleY(1.02);transform:translate3d(0,-4px,0) scaleY(1.02)}}@keyframes bounce{0%,20%,53%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0) scaleY(1.1);transform:translate3d(0,-30px,0) scaleY(1.1)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0) scaleY(1.05);transform:translate3d(0,-15px,0) scaleY(1.05)}80%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0) scaleY(.95);transform:translateZ(0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-4px,0) scaleY(1.02);transform:translate3d(0,-4px,0) scaleY(1.02)}}.animate__bounce{-webkit-animation-name:bounce;animation-name:bounce;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}.animate__flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes pulse{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__pulse{-webkit-animation-name:pulse;animation-name:pulse;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}@-webkit-keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shakeX{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@keyframes shakeX{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}.animate__shakeX{-webkit-animation-name:shakeX;animation-name:shakeX}@-webkit-keyframes shakeY{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}20%,40%,60%,80%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}}@keyframes shakeY{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}20%,40%,60%,80%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}}.animate__shakeY{-webkit-animation-name:shakeY;animation-name:shakeY}@-webkit-keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}.animate__headShake{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-name:headShake;animation-name:headShake}@-webkit-keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}.animate__swing{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes wobble{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes jello{0%,11.1%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}@keyframes jello{0%,11.1%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}.animate__jello{-webkit-animation-name:jello;animation-name:jello;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}.animate__heartBeat{-webkit-animation-name:heartBeat;animation-name:heartBeat;-webkit-animation-duration:1.3s;animation-duration:1.3s;-webkit-animation-duration:calc(var(--animate-duration)*1.3);animation-duration:calc(var(--animate-duration)*1.3);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}@-webkit-keyframes backInDown{0%{-webkit-transform:translateY(-1200px) scale(.7);transform:translateY(-1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInDown{0%{-webkit-transform:translateY(-1200px) scale(.7);transform:translateY(-1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInDown{-webkit-animation-name:backInDown;animation-name:backInDown}@-webkit-keyframes backInLeft{0%{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInLeft{0%{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInLeft{-webkit-animation-name:backInLeft;animation-name:backInLeft}@-webkit-keyframes backInRight{0%{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInRight{0%{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInRight{-webkit-animation-name:backInRight;animation-name:backInRight}@-webkit-keyframes backInUp{0%{-webkit-transform:translateY(1200px) scale(.7);transform:translateY(1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInUp{0%{-webkit-transform:translateY(1200px) scale(.7);transform:translateY(1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInUp{-webkit-animation-name:backInUp;animation-name:backInUp}@-webkit-keyframes backOutDown{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(700px) scale(.7);transform:translateY(700px) scale(.7);opacity:.7}}@keyframes backOutDown{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(700px) scale(.7);transform:translateY(700px) scale(.7);opacity:.7}}.animate__backOutDown{-webkit-animation-name:backOutDown;animation-name:backOutDown}@-webkit-keyframes backOutLeft{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}}@keyframes backOutLeft{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}}.animate__backOutLeft{-webkit-animation-name:backOutLeft;animation-name:backOutLeft}@-webkit-keyframes backOutRight{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}}@keyframes backOutRight{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}}.animate__backOutRight{-webkit-animation-name:backOutRight;animation-name:backOutRight}@-webkit-keyframes backOutUp{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(-700px) scale(.7);transform:translateY(-700px) scale(.7);opacity:.7}}@keyframes backOutUp{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(-700px) scale(.7);transform:translateY(-700px) scale(.7);opacity:.7}}.animate__backOutUp{-webkit-animation-name:backOutUp;animation-name:backOutUp}@-webkit-keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__bounceIn{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0) scaleY(3);transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0) scaleY(.9);transform:translate3d(0,25px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,-10px,0) scaleY(.95);transform:translate3d(0,-10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,5px,0) scaleY(.985);transform:translate3d(0,5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0) scaleY(3);transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0) scaleY(.9);transform:translate3d(0,25px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,-10px,0) scaleY(.95);transform:translate3d(0,-10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,5px,0) scaleY(.985);transform:translate3d(0,5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0) scaleX(3);transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0) scaleX(1);transform:translate3d(25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(-10px,0,0) scaleX(.98);transform:translate3d(-10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(5px,0,0) scaleX(.995);transform:translate3d(5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0) scaleX(3);transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0) scaleX(1);transform:translate3d(25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(-10px,0,0) scaleX(.98);transform:translate3d(-10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(5px,0,0) scaleX(.995);transform:translate3d(5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(3000px,0,0) scaleX(3);transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0) scaleX(1);transform:translate3d(-25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(10px,0,0) scaleX(.98);transform:translate3d(10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(-5px,0,0) scaleX(.995);transform:translate3d(-5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(3000px,0,0) scaleX(3);transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0) scaleX(1);transform:translate3d(-25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(10px,0,0) scaleX(.98);transform:translate3d(10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(-5px,0,0) scaleX(.995);transform:translate3d(-5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0) scaleY(5);transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,10px,0) scaleY(.95);transform:translate3d(0,10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-5px,0) scaleY(.985);transform:translate3d(0,-5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0) scaleY(5);transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,10px,0) scaleY(.95);transform:translate3d(0,10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-5px,0) scaleY(.985);transform:translate3d(0,-5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}.animate__bounceOut{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0) scaleY(.985);transform:translate3d(0,10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0) scaleY(3);transform:translate3d(0,2000px,0) scaleY(3)}}@keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0) scaleY(.985);transform:translate3d(0,10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0) scaleY(3);transform:translate3d(0,2000px,0) scaleY(3)}}.animate__bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0) scaleX(.9);transform:translate3d(20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0) scaleX(2);transform:translate3d(-2000px,0,0) scaleX(2)}}@keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0) scaleX(.9);transform:translate3d(20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0) scaleX(2);transform:translate3d(-2000px,0,0) scaleX(2)}}.animate__bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0) scaleX(.9);transform:translate3d(-20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0) scaleX(2);transform:translate3d(2000px,0,0) scaleX(2)}}@keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0) scaleX(.9);transform:translate3d(-20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0) scaleX(2);transform:translate3d(2000px,0,0) scaleX(2)}}.animate__bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0) scaleY(.985);transform:translate3d(0,-10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0) scaleY(.9);transform:translate3d(0,20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0) scaleY(3);transform:translate3d(0,-2000px,0) scaleY(3)}}@keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0) scaleY(.985);transform:translate3d(0,-10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0) scaleY(.9);transform:translate3d(0,20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0) scaleY(3);transform:translate3d(0,-2000px,0) scaleY(3)}}.animate__bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.animate__fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeInTopLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInTopLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInTopLeft{-webkit-animation-name:fadeInTopLeft;animation-name:fadeInTopLeft}@-webkit-keyframes fadeInTopRight{0%{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInTopRight{0%{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInTopRight{-webkit-animation-name:fadeInTopRight;animation-name:fadeInTopRight}@-webkit-keyframes fadeInBottomLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInBottomLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInBottomLeft{-webkit-animation-name:fadeInBottomLeft;animation-name:fadeInBottomLeft}@-webkit-keyframes fadeInBottomRight{0%{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInBottomRight{0%{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInBottomRight{-webkit-animation-name:fadeInBottomRight;animation-name:fadeInBottomRight}@-webkit-keyframes fadeOut{0%{opacity:1}to{opacity:0}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.animate__fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.animate__fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.animate__fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.animate__fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.animate__fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.animate__fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.animate__fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.animate__fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.animate__fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes fadeOutTopLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}}@keyframes fadeOutTopLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}}.animate__fadeOutTopLeft{-webkit-animation-name:fadeOutTopLeft;animation-name:fadeOutTopLeft}@-webkit-keyframes fadeOutTopRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}}@keyframes fadeOutTopRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}}.animate__fadeOutTopRight{-webkit-animation-name:fadeOutTopRight;animation-name:fadeOutTopRight}@-webkit-keyframes fadeOutBottomRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}}@keyframes fadeOutBottomRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}}.animate__fadeOutBottomRight{-webkit-animation-name:fadeOutBottomRight;animation-name:fadeOutBottomRight}@-webkit-keyframes fadeOutBottomLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}}@keyframes fadeOutBottomLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}}.animate__fadeOutBottomLeft{-webkit-animation-name:fadeOutBottomLeft;animation-name:fadeOutBottomLeft}@-webkit-keyframes flip{0%{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{0%{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animate__animated.animate__flip{-webkit-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.animate__flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}@-webkit-keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-20deg);transform:perspective(400px) rotateY(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-20deg);transform:perspective(400px) rotateY(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.animate__flipInY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}@keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}.animate__flipOutX{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}@-webkit-keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);transform:perspective(400px) rotateY(-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}@keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);transform:perspective(400px) rotateY(-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}.animate__flipOutY{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedInRight{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes lightSpeedInRight{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__lightSpeedInRight{-webkit-animation-name:lightSpeedInRight;animation-name:lightSpeedInRight;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedInLeft{0%{-webkit-transform:translate3d(-100%,0,0) skewX(30deg);transform:translate3d(-100%,0,0) skewX(30deg);opacity:0}60%{-webkit-transform:skewX(-20deg);transform:skewX(-20deg);opacity:1}80%{-webkit-transform:skewX(5deg);transform:skewX(5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes lightSpeedInLeft{0%{-webkit-transform:translate3d(-100%,0,0) skewX(30deg);transform:translate3d(-100%,0,0) skewX(30deg);opacity:0}60%{-webkit-transform:skewX(-20deg);transform:skewX(-20deg);opacity:1}80%{-webkit-transform:skewX(5deg);transform:skewX(5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__lightSpeedInLeft{-webkit-animation-name:lightSpeedInLeft;animation-name:lightSpeedInLeft;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOutRight{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}@keyframes lightSpeedOutRight{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.animate__lightSpeedOutRight{-webkit-animation-name:lightSpeedOutRight;animation-name:lightSpeedOutRight;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes lightSpeedOutLeft{0%{opacity:1}to{-webkit-transform:translate3d(-100%,0,0) skewX(-30deg);transform:translate3d(-100%,0,0) skewX(-30deg);opacity:0}}@keyframes lightSpeedOutLeft{0%{opacity:1}to{-webkit-transform:translate3d(-100%,0,0) skewX(-30deg);transform:translate3d(-100%,0,0) skewX(-30deg);opacity:0}}.animate__lightSpeedOutLeft{-webkit-animation-name:lightSpeedOutLeft;animation-name:lightSpeedOutLeft;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{0%{-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateIn{0%{-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes rotateInDownLeft{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInDownLeft{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateInDownRight{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInDownRight{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateInUpLeft{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInUpLeft{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateInUpRight{0%{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInUpRight{0%{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateOut{0%{opacity:1}to{-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}@keyframes rotateOut{0%{opacity:1}to{-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}.animate__rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes rotateOutDownLeft{0%{opacity:1}to{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}}@keyframes rotateOutDownLeft{0%{opacity:1}to{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}}.animate__rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateOutDownRight{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}@keyframes rotateOutDownRight{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}.animate__rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateOutUpLeft{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}@keyframes rotateOutUpLeft{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}.animate__rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateOutUpRight{0%{opacity:1}to{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes rotateOutUpRight{0%{opacity:1}to{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}.animate__rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes hinge{0%{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}@keyframes hinge{0%{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}.animate__hinge{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-duration:calc(var(--animate-duration)*2);animation-duration:calc(var(--animate-duration)*2);-webkit-animation-name:hinge;animation-name:hinge;-webkit-transform-origin:top left;transform-origin:top left}@-webkit-keyframes jackInTheBox{0%{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes jackInTheBox{0%{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.animate__jackInTheBox{-webkit-animation-name:jackInTheBox;animation-name:jackInTheBox}@-webkit-keyframes rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate(120deg);transform:translate3d(100%,0,0) rotate(120deg)}}@keyframes rollOut{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate(120deg);transform:translate3d(100%,0,0) rotate(120deg)}}.animate__rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}.animate__zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}.animate__zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0)}}@keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0)}}.animate__zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft;-webkit-transform-origin:left center;transform-origin:left center}@-webkit-keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0)}}@keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0)}}.animate__zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight;-webkit-transform-origin:right center;transform-origin:right center}@-webkit-keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.animate__slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.animate__slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.animate__slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.animate__slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}