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

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

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

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

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

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

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

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

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

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

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

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

#s-d1e32d3e-8a95-4d63-a233-cbd65c756a29 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-d1e32d3e-8a95-4d63-a233-cbd65c756a29 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d1e32d3e-8a95-4d63-a233-cbd65c756a29.shg-box.shg-c {
  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;
  
  
  text-transform: none;
  
  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-935b7d3c-7ee1-4bea-b0a7-84c6c651967d {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-935b7d3c-7ee1-4bea-b0a7-84c6c651967d {
  display: none;
}
#s-935b7d3c-7ee1-4bea-b0a7-84c6c651967d, #wrap-s-935b7d3c-7ee1-4bea-b0a7-84c6c651967d, #wrap-content-s-935b7d3c-7ee1-4bea-b0a7-84c6c651967d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-935b7d3c-7ee1-4bea-b0a7-84c6c651967d {
  display: none;
}
#s-935b7d3c-7ee1-4bea-b0a7-84c6c651967d, #wrap-s-935b7d3c-7ee1-4bea-b0a7-84c6c651967d, #wrap-content-s-935b7d3c-7ee1-4bea-b0a7-84c6c651967d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-935b7d3c-7ee1-4bea-b0a7-84c6c651967d {
  display: none;
}
#s-935b7d3c-7ee1-4bea-b0a7-84c6c651967d, #wrap-s-935b7d3c-7ee1-4bea-b0a7-84c6c651967d, #wrap-content-s-935b7d3c-7ee1-4bea-b0a7-84c6c651967d { display: none !important; }}
#s-935b7d3c-7ee1-4bea-b0a7-84c6c651967d .shogun-heading-component h1 {
  color: rgba(242, 7, 7, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-content > * {
  flex-shrink: 0; /* Prevents children from shrinking maintaining natural size*/
  width: 100%;
}
#s-da55b123-031c-4298-98b7-08c3c1302ae4 {
  margin-left: auto;
margin-right: auto;
max-width: 1516px;
aspect-ratio: 1516/997;
text-align: center;
}
@media (max-width: 767px){#s-da55b123-031c-4298-98b7-08c3c1302ae4 {
  display: none;
}
#s-da55b123-031c-4298-98b7-08c3c1302ae4, #wrap-s-da55b123-031c-4298-98b7-08c3c1302ae4, #wrap-content-s-da55b123-031c-4298-98b7-08c3c1302ae4 { display: none !important; }}
#s-da55b123-031c-4298-98b7-08c3c1302ae4 {
  margin: 0 !important;
  overflow: visible;
}

#s-da55b123-031c-4298-98b7-08c3c1302ae4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-da55b123-031c-4298-98b7-08c3c1302ae4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-da55b123-031c-4298-98b7-08c3c1302ae4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-da55b123-031c-4298-98b7-08c3c1302ae4 img.shogun-image {
  /* Add background color handling */
  
}

#s-da55b123-031c-4298-98b7-08c3c1302ae4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-da55b123-031c-4298-98b7-08c3c1302ae4 .shg-image-content-wrapper {
      aspect-ratio: 1516/997;
      min-width: 100%;
      height: auto;
    }

    #s-da55b123-031c-4298-98b7-08c3c1302ae4 .shogun-image-link {
      aspect-ratio: 1516/997;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-da55b123-031c-4298-98b7-08c3c1302ae4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-da55b123-031c-4298-98b7-08c3c1302ae4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1516px;
  }



  img.s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image {
    
    
    
    max-height: 1516px;
  }


.s-da55b123-031c-4298-98b7-08c3c1302ae4 .shogun-image-content {
  
    justify-content: flex-end;
  
}

.s-da55b123-031c-4298-98b7-08c3c1302ae4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image {
  box-sizing: border-box;
}



.s-da55b123-031c-4298-98b7-08c3c1302ae4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-da55b123-031c-4298-98b7-08c3c1302ae4 {
      --shg-aspect-ratio: calc(1516/997); 
    }

    .s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image-container {
      position: relative;
    }

    .s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-da55b123-031c-4298-98b7-08c3c1302ae4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1516px;
    }
  }

@media (min-width: 1200px){#s-da55b123-031c-4298-98b7-08c3c1302ae4 {
  margin: 0 !important;
  overflow: visible;
}

#s-da55b123-031c-4298-98b7-08c3c1302ae4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-da55b123-031c-4298-98b7-08c3c1302ae4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-da55b123-031c-4298-98b7-08c3c1302ae4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-da55b123-031c-4298-98b7-08c3c1302ae4 img.shogun-image {
  /* Add background color handling */
  
}

#s-da55b123-031c-4298-98b7-08c3c1302ae4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-da55b123-031c-4298-98b7-08c3c1302ae4 .shg-image-content-wrapper {
      aspect-ratio: 1516/997;
      min-width: 100%;
      height: auto;
    }

    #s-da55b123-031c-4298-98b7-08c3c1302ae4 .shogun-image-link {
      aspect-ratio: 1516/997;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-da55b123-031c-4298-98b7-08c3c1302ae4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-da55b123-031c-4298-98b7-08c3c1302ae4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1516px;
  }



  img.s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image {
    
    
    
    max-height: 1516px;
  }


.s-da55b123-031c-4298-98b7-08c3c1302ae4 .shogun-image-content {
  
    justify-content: flex-end;
  
}

.s-da55b123-031c-4298-98b7-08c3c1302ae4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image {
  box-sizing: border-box;
}



.s-da55b123-031c-4298-98b7-08c3c1302ae4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-da55b123-031c-4298-98b7-08c3c1302ae4 {
      --shg-aspect-ratio: calc(1516/997); 
    }

    .s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image-container {
      position: relative;
    }

    .s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-da55b123-031c-4298-98b7-08c3c1302ae4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1516px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-da55b123-031c-4298-98b7-08c3c1302ae4 {
  margin: 0 !important;
  overflow: visible;
}

#s-da55b123-031c-4298-98b7-08c3c1302ae4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-da55b123-031c-4298-98b7-08c3c1302ae4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-da55b123-031c-4298-98b7-08c3c1302ae4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-da55b123-031c-4298-98b7-08c3c1302ae4 img.shogun-image {
  /* Add background color handling */
  
}

#s-da55b123-031c-4298-98b7-08c3c1302ae4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-da55b123-031c-4298-98b7-08c3c1302ae4 .shg-image-content-wrapper {
      aspect-ratio: 1516/997;
      min-width: 100%;
      height: auto;
    }

    #s-da55b123-031c-4298-98b7-08c3c1302ae4 .shogun-image-link {
      aspect-ratio: 1516/997;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-da55b123-031c-4298-98b7-08c3c1302ae4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-da55b123-031c-4298-98b7-08c3c1302ae4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1516px;
  }



  img.s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image {
    
    
    
    max-height: 1516px;
  }


.s-da55b123-031c-4298-98b7-08c3c1302ae4 .shogun-image-content {
  
    justify-content: flex-end;
  
}

.s-da55b123-031c-4298-98b7-08c3c1302ae4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image {
  box-sizing: border-box;
}



.s-da55b123-031c-4298-98b7-08c3c1302ae4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-da55b123-031c-4298-98b7-08c3c1302ae4 {
      --shg-aspect-ratio: calc(1516/997); 
    }

    .s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image-container {
      position: relative;
    }

    .s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-da55b123-031c-4298-98b7-08c3c1302ae4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1516px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-da55b123-031c-4298-98b7-08c3c1302ae4 {
  margin: 0 !important;
  overflow: visible;
}

#s-da55b123-031c-4298-98b7-08c3c1302ae4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-da55b123-031c-4298-98b7-08c3c1302ae4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-da55b123-031c-4298-98b7-08c3c1302ae4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-da55b123-031c-4298-98b7-08c3c1302ae4 img.shogun-image {
  /* Add background color handling */
  
}

#s-da55b123-031c-4298-98b7-08c3c1302ae4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-da55b123-031c-4298-98b7-08c3c1302ae4 .shg-image-content-wrapper {
      aspect-ratio: 1516/997;
      min-width: 100%;
      height: auto;
    }

    #s-da55b123-031c-4298-98b7-08c3c1302ae4 .shogun-image-link {
      aspect-ratio: 1516/997;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-da55b123-031c-4298-98b7-08c3c1302ae4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-da55b123-031c-4298-98b7-08c3c1302ae4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1516px;
  }



  img.s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image {
    
    
    
    max-height: 1516px;
  }


.s-da55b123-031c-4298-98b7-08c3c1302ae4 .shogun-image-content {
  
    justify-content: flex-end;
  
}

.s-da55b123-031c-4298-98b7-08c3c1302ae4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image {
  box-sizing: border-box;
}



.s-da55b123-031c-4298-98b7-08c3c1302ae4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-da55b123-031c-4298-98b7-08c3c1302ae4 {
      --shg-aspect-ratio: calc(1516/997); 
    }

    .s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image-container {
      position: relative;
    }

    .s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-da55b123-031c-4298-98b7-08c3c1302ae4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1516px;
    }
  }

}@media (max-width: 767px){#s-da55b123-031c-4298-98b7-08c3c1302ae4 {
  margin: 0 !important;
  overflow: visible;
}

#s-da55b123-031c-4298-98b7-08c3c1302ae4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-da55b123-031c-4298-98b7-08c3c1302ae4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-da55b123-031c-4298-98b7-08c3c1302ae4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-da55b123-031c-4298-98b7-08c3c1302ae4 img.shogun-image {
  /* Add background color handling */
  
}

#s-da55b123-031c-4298-98b7-08c3c1302ae4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-da55b123-031c-4298-98b7-08c3c1302ae4 .shg-image-content-wrapper {
      aspect-ratio: 1516/997;
      min-width: 100%;
      height: auto;
    }

    #s-da55b123-031c-4298-98b7-08c3c1302ae4 .shogun-image-link {
      aspect-ratio: 1516/997;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-da55b123-031c-4298-98b7-08c3c1302ae4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-da55b123-031c-4298-98b7-08c3c1302ae4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1516px;
  }



  img.s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image {
    
    
    
    max-height: 1516px;
  }


.s-da55b123-031c-4298-98b7-08c3c1302ae4 .shogun-image-content {
  
    justify-content: flex-end;
  
}

.s-da55b123-031c-4298-98b7-08c3c1302ae4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image {
  box-sizing: border-box;
}



.s-da55b123-031c-4298-98b7-08c3c1302ae4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-da55b123-031c-4298-98b7-08c3c1302ae4 {
      --shg-aspect-ratio: calc(1516/997); 
    }

    .s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image-container {
      position: relative;
    }

    .s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-da55b123-031c-4298-98b7-08c3c1302ae4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-da55b123-031c-4298-98b7-08c3c1302ae4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1516px;
    }
  }

}
#s-e9ff811d-d8fb-4ec7-bd00-b13f44815793 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e9ff811d-d8fb-4ec7-bd00-b13f44815793 .shogun-heading-component h1 {
  
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-b91dedf3-b787-4e12-b334-88feb79814ce {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b91dedf3-b787-4e12-b334-88feb79814ce .shogun-heading-component h5 {
  
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



.shogun-video {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.shogun-video-16x9 {
  padding-bottom: 56.25%;
}

.shogun-video-4x3 {
  padding-bottom: 75%;
}

.shogun-video-embed {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#s-767dcd62-f41b-41a0-aae9-c75d2eef4595 {
  margin-left: auto;
margin-right: auto;
}

.shg-row {
  display: flex;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
  justify-content: space-between;
}

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

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

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

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

#s-42c7b909-b3e3-40e0-aeaf-93948092eeb7 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-42c7b909-b3e3-40e0-aeaf-93948092eeb7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-42c7b909-b3e3-40e0-aeaf-93948092eeb7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-42c7b909-b3e3-40e0-aeaf-93948092eeb7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-42c7b909-b3e3-40e0-aeaf-93948092eeb7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-92c075fd-8d56-44df-846d-58c3df6e82ef {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-92c075fd-8d56-44df-846d-58c3df6e82ef .shogun-heading-component h5 {
  
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-c609964e-876f-4ad3-9cb2-1b73761c45f2 {
  margin-left: auto;
margin-right: auto;
}

#s-0dee4220-9dac-4a54-8e26-1d9e90b9cb90 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0dee4220-9dac-4a54-8e26-1d9e90b9cb90 .shogun-heading-component h5 {
  
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-66987fc0-bae7-469a-9452-0891868a477e {
  margin-left: auto;
margin-right: auto;
}

#s-cc93b80b-4b42-44b3-9739-81b041d51a00 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-cc93b80b-4b42-44b3-9739-81b041d51a00"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cc93b80b-4b42-44b3-9739-81b041d51a00"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-cc93b80b-4b42-44b3-9739-81b041d51a00"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-cc93b80b-4b42-44b3-9739-81b041d51a00"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-369f3d35-7bda-4eb0-bfe0-cc4cad7ff46b {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-369f3d35-7bda-4eb0-bfe0-cc4cad7ff46b .shogun-heading-component h5 {
  
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-a744e654-a77a-4833-8e5e-1d42d8fce1cc {
  margin-left: auto;
margin-right: auto;
}

#s-e7414dcd-e868-4683-940c-4ffd30968f4a {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e7414dcd-e868-4683-940c-4ffd30968f4a .shogun-heading-component h5 {
  
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-e73a9876-614f-495d-be65-d4300ada496b {
  margin-left: auto;
margin-right: auto;
}

#s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 {
  margin-left: auto;
margin-right: auto;
max-width: 2498px;
aspect-ratio: 2498/1796;
text-align: center;
}

#s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 {
  margin: 0 !important;
  overflow: visible;
}

#s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 img.shogun-image {
  /* Add background color handling */
  
}

#s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 .shg-image-content-wrapper {
      aspect-ratio: 2498/1796;
      min-width: 100%;
      height: auto;
    }

    #s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 .shogun-image-link {
      aspect-ratio: 2498/1796;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2498px;
  }



  img.s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image {
    
    
    
    max-height: 2498px;
  }


.s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image {
  box-sizing: border-box;
}



.s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 {
      --shg-aspect-ratio: calc(2498/1796); 
    }

    .s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image-container {
      position: relative;
    }

    .s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2498px;
    }
  }

@media (min-width: 1200px){#s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 {
  margin: 0 !important;
  overflow: visible;
}

#s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 img.shogun-image {
  /* Add background color handling */
  
}

#s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 .shg-image-content-wrapper {
      aspect-ratio: 2498/1796;
      min-width: 100%;
      height: auto;
    }

    #s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 .shogun-image-link {
      aspect-ratio: 2498/1796;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2498px;
  }



  img.s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image {
    
    
    
    max-height: 2498px;
  }


.s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image {
  box-sizing: border-box;
}



.s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 {
      --shg-aspect-ratio: calc(2498/1796); 
    }

    .s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image-container {
      position: relative;
    }

    .s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2498px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 {
  margin: 0 !important;
  overflow: visible;
}

#s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 img.shogun-image {
  /* Add background color handling */
  
}

#s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 .shg-image-content-wrapper {
      aspect-ratio: 2498/1796;
      min-width: 100%;
      height: auto;
    }

    #s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 .shogun-image-link {
      aspect-ratio: 2498/1796;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2498px;
  }



  img.s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image {
    
    
    
    max-height: 2498px;
  }


.s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image {
  box-sizing: border-box;
}



.s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 {
      --shg-aspect-ratio: calc(2498/1796); 
    }

    .s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image-container {
      position: relative;
    }

    .s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2498px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 {
  margin: 0 !important;
  overflow: visible;
}

#s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 img.shogun-image {
  /* Add background color handling */
  
}

#s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 .shg-image-content-wrapper {
      aspect-ratio: 2498/1796;
      min-width: 100%;
      height: auto;
    }

    #s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 .shogun-image-link {
      aspect-ratio: 2498/1796;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2498px;
  }



  img.s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image {
    
    
    
    max-height: 2498px;
  }


.s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image {
  box-sizing: border-box;
}



.s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 {
      --shg-aspect-ratio: calc(2498/1796); 
    }

    .s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image-container {
      position: relative;
    }

    .s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2498px;
    }
  }

}@media (max-width: 767px){#s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 {
  margin: 0 !important;
  overflow: visible;
}

#s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 img.shogun-image {
  /* Add background color handling */
  
}

#s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 .shg-image-content-wrapper {
      aspect-ratio: 2498/1796;
      min-width: 100%;
      height: auto;
    }

    #s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 .shogun-image-link {
      aspect-ratio: 2498/1796;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2498px;
  }



  img.s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image {
    
    
    
    max-height: 2498px;
  }


.s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image {
  box-sizing: border-box;
}



.s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 {
      --shg-aspect-ratio: calc(2498/1796); 
    }

    .s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image-container {
      position: relative;
    }

    .s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eed6c573-c9de-4c19-aa9d-01e2edd11bb0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2498px;
    }
  }

}
.shogun-tabs {
  margin: 0 !important;
  list-style: none !important;
  padding: 0 0 0 0;
  overflow: visible;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.shogun-tabs.shogun-modern {
  padding-left: 10px;
  padding-right: 5px;
  overflow: hidden;
  transform: translate(0px, 0px);
}

.shogun-tabs li {
  text-decoration: none;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
}

.shogun-tabs.shogun-modern li {
  width: 200px;
  height: 45px;
  margin: 0 5px 0 0;
}

.shogun-tabs.shogun-rounded li {
  margin-bottom: 0;
  float: left;
  box-sizing: border-box;
  margin-right: 2px;
  line-height: 1.42857143;
  position: relative;
  display: block;
  overflow: visible;
}

.shogun-tabs.shogun-rounded li .shogun-tab-box {
  padding: 10px 15px !important;
  border-radius: 4px 4px 0 0;
}

.shogun-tabs.shogun-modern li .shogun-tab-box {
  padding: 12px 5px !important;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .shogun-tabs.shogun-rounded li .shogun-tab-box {
    padding: 10px 5px !important;
    text-align: center;
  }

  .shogun-tabs.shogun-modern li .shogun-tab-box {
    padding: 12px 15px !important;
  }
}

.shogun-tabs.shogun-rounded .shogun-tab-box {
  border-bottom: none !important;
}

.shogun-tabs.shogun-modern li.active {
  z-index: 40;
}

.shogun-tabs.shogun-modern li .shogun-tab-box::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: -1;
  outline: 1px solid transparent;
  border-radius: 4px 4px 0 0;
  content: "";
  transform: perspective(100px) rotateX(30deg);
  -webkit-transform: perspective(100px) rotateX(30deg);
}

.shogun-tabs.shogun-modern li.shogun-tab-active .shogun-tab-box::after {
  border-bottom: none !important;
  height: 46px;
}

.shogun-tabs-body {
  padding-top: 10px;
}

.shogun-tabs-body.shogun-rounded {
  margin-top: 0px !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.shogun-tabs-body > .shogun-tab-content {
  display: none;
}

.shogun-tabs-body > .shogun-tab-content.shogun-tab-active {
  animation: fadeIn 0.5s;
  display: block;
}

.shogun-tab-border {
  position: absolute;
}

.shogun-tab-title {
  white-space: nowrap;
  text-align: center;

  display: inline-block;
  width: 100%;
}

.shogun-tabs.shogun-modern .shogun-tab-title {
  /** Hack for Safari weird bug */
  /* https://stackoverflow.com/questions/18146511/bug-in-css3-rotatey-transition-on-safari */
  transform: translateZ(1000px);
}


  #s-0736c6e2-4b67-496f-927f-6dae1cfb5755 .shogun-tabs > li > .shogun-tab-box {
    background: rgba(7, 7, 7, 1);
    border: 1px solid rgba(16, 15, 15, 1);
  }
  #s-0736c6e2-4b67-496f-927f-6dae1cfb5755 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(0, 0, 0, 1);
    border: 1px solid #ddd;
  }
#s-0736c6e2-4b67-496f-927f-6dae1cfb5755 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(245, 247, 248, 1);
  
  
  
  font-size: 16px;
}

#s-0736c6e2-4b67-496f-927f-6dae1cfb5755 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(242, 239, 239, 1);
}

#s-0736c6e2-4b67-496f-927f-6dae1cfb5755 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(0, 0, 0, 1);
}

#s-0736c6e2-4b67-496f-927f-6dae1cfb5755 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid #ddd;
}

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

.shg-inner-inline-image {
  position: relative;
  display: block;
  overflow: hidden;
}

.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-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-imageV3-content {
  text-align: initial;
}

.shogun-image-content-v3 {
  display: flex;
  flex-direction: column;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  /* 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-inner-inline-image .shogun-image.hover~* {
  z-index: 1;
}

.shogun-image-content-v3 > * {
  flex-shrink: 0; /* Prevents children from shrinking maintaining natural size*/
  width: 100%;
}
#s-685b8679-44c1-4c74-bd02-65c74dd349b7 {
  margin-left: auto;
margin-right: auto;
max-width: 2764px;
text-align: center;
}

#s-685b8679-44c1-4c74-bd02-65c74dd349b7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-685b8679-44c1-4c74-bd02-65c74dd349b7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-685b8679-44c1-4c74-bd02-65c74dd349b7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-685b8679-44c1-4c74-bd02-65c74dd349b7 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-685b8679-44c1-4c74-bd02-65c74dd349b7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-685b8679-44c1-4c74-bd02-65c74dd349b7 img.shogun-image {
  width: 100%;
  
  
  max-width: 2764px;

      
    max-width: 2764px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-685b8679-44c1-4c74-bd02-65c74dd349b7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-685b8679-44c1-4c74-bd02-65c74dd349b7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-685b8679-44c1-4c74-bd02-65c74dd349b7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-685b8679-44c1-4c74-bd02-65c74dd349b7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-685b8679-44c1-4c74-bd02-65c74dd349b7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-685b8679-44c1-4c74-bd02-65c74dd349b7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-685b8679-44c1-4c74-bd02-65c74dd349b7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-685b8679-44c1-4c74-bd02-65c74dd349b7 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-685b8679-44c1-4c74-bd02-65c74dd349b7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-685b8679-44c1-4c74-bd02-65c74dd349b7 img.shogun-image {
  width: 100%;
  
  
  max-width: 2764px;

      
    max-width: 2764px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-685b8679-44c1-4c74-bd02-65c74dd349b7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-685b8679-44c1-4c74-bd02-65c74dd349b7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-685b8679-44c1-4c74-bd02-65c74dd349b7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-685b8679-44c1-4c74-bd02-65c74dd349b7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-685b8679-44c1-4c74-bd02-65c74dd349b7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-685b8679-44c1-4c74-bd02-65c74dd349b7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-685b8679-44c1-4c74-bd02-65c74dd349b7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-685b8679-44c1-4c74-bd02-65c74dd349b7 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-685b8679-44c1-4c74-bd02-65c74dd349b7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-685b8679-44c1-4c74-bd02-65c74dd349b7 img.shogun-image {
  width: 100%;
  
  
  max-width: 2764px;

      
    max-width: 2764px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-685b8679-44c1-4c74-bd02-65c74dd349b7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-685b8679-44c1-4c74-bd02-65c74dd349b7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-685b8679-44c1-4c74-bd02-65c74dd349b7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-685b8679-44c1-4c74-bd02-65c74dd349b7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-685b8679-44c1-4c74-bd02-65c74dd349b7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-685b8679-44c1-4c74-bd02-65c74dd349b7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-685b8679-44c1-4c74-bd02-65c74dd349b7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-685b8679-44c1-4c74-bd02-65c74dd349b7 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-685b8679-44c1-4c74-bd02-65c74dd349b7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-685b8679-44c1-4c74-bd02-65c74dd349b7 img.shogun-image {
  width: 100%;
  
  
  max-width: 2764px;

      
    max-width: 2764px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-685b8679-44c1-4c74-bd02-65c74dd349b7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-685b8679-44c1-4c74-bd02-65c74dd349b7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-685b8679-44c1-4c74-bd02-65c74dd349b7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-685b8679-44c1-4c74-bd02-65c74dd349b7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-685b8679-44c1-4c74-bd02-65c74dd349b7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-685b8679-44c1-4c74-bd02-65c74dd349b7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-685b8679-44c1-4c74-bd02-65c74dd349b7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-685b8679-44c1-4c74-bd02-65c74dd349b7 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-685b8679-44c1-4c74-bd02-65c74dd349b7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-685b8679-44c1-4c74-bd02-65c74dd349b7 img.shogun-image {
  width: 100%;
  
  
  max-width: 2764px;

      
    max-width: 2764px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-685b8679-44c1-4c74-bd02-65c74dd349b7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-685b8679-44c1-4c74-bd02-65c74dd349b7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-685b8679-44c1-4c74-bd02-65c74dd349b7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-685b8679-44c1-4c74-bd02-65c74dd349b7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
.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 {
  
  
  
}

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

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

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

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

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

.shg-default-text-content p {
  font-size: 1em;
  
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0.6em;
  
  
}

.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 {
  
  
  
}

.shg-theme-text-content p {
  
  
  
}

.shogun-image-container {
  position: relative;
}

.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;
  padding: 20px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.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 > div {
  width: 100%;
}

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

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

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

.shogun-image.hover {
  opacity: 0;
  z-index: 200;
  position: absolute;
  left: 0;
  top: 0;
}

.shogun-image.hover:hover {
  opacity: 1;
}

#s-b4bebcbc-bb45-42ff-8130-d1fd3e2fcc46 {
  max-width: 2882px;
text-align: center;
}

#s-b4bebcbc-bb45-42ff-8130-d1fd3e2fcc46 {
  overflow: hidden;
  
  
      max-width: 2882px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-b4bebcbc-bb45-42ff-8130-d1fd3e2fcc46 .shogun-image-content {
  
    justify-content: center;
  
}

#s-b8f02c51-99b9-4e1c-8811-9045225607e1 {
  max-width: 2602px;
aspect-ratio: 2602/720;
text-align: center;
}

#s-b8f02c51-99b9-4e1c-8811-9045225607e1 {
  overflow: hidden;
  
  
      max-width: 2602px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-b8f02c51-99b9-4e1c-8811-9045225607e1 img.shogun-image,
  #s-b8f02c51-99b9-4e1c-8811-9045225607e1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b8f02c51-99b9-4e1c-8811-9045225607e1 {
    width: 100%;
    height: auto;
  }



  #s-b8f02c51-99b9-4e1c-8811-9045225607e1 img.shogun-image {
    

    
    
    
  }


#s-b8f02c51-99b9-4e1c-8811-9045225607e1 .shogun-image-content {
  
    justify-content: center;
  
}

#s-6a3249ef-384f-4986-a40c-99c69c4c018a {
  margin-left: auto;
margin-right: auto;
max-width: 2114px;
aspect-ratio: 2114/2004;
text-align: center;
}

#s-6a3249ef-384f-4986-a40c-99c69c4c018a {
  margin: 0 !important;
  overflow: visible;
}

#s-6a3249ef-384f-4986-a40c-99c69c4c018a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6a3249ef-384f-4986-a40c-99c69c4c018a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6a3249ef-384f-4986-a40c-99c69c4c018a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6a3249ef-384f-4986-a40c-99c69c4c018a img.shogun-image {
  /* Add background color handling */
  
}

#s-6a3249ef-384f-4986-a40c-99c69c4c018a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6a3249ef-384f-4986-a40c-99c69c4c018a .shg-image-content-wrapper {
      aspect-ratio: 2114/2004;
      min-width: 100%;
      height: auto;
    }

    #s-6a3249ef-384f-4986-a40c-99c69c4c018a .shogun-image-link {
      aspect-ratio: 2114/2004;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6a3249ef-384f-4986-a40c-99c69c4c018a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6a3249ef-384f-4986-a40c-99c69c4c018a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6a3249ef-384f-4986-a40c-99c69c4c018a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2114px;
  }




.s-6a3249ef-384f-4986-a40c-99c69c4c018a .shogun-image-content {
  
    justify-content: center;
  
}

.s-6a3249ef-384f-4986-a40c-99c69c4c018a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6a3249ef-384f-4986-a40c-99c69c4c018a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6a3249ef-384f-4986-a40c-99c69c4c018a.shogun-image {
  box-sizing: border-box;
}



.s-6a3249ef-384f-4986-a40c-99c69c4c018a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6a3249ef-384f-4986-a40c-99c69c4c018a {
      --shg-aspect-ratio: calc(2114/2004); 
    }

    .s-6a3249ef-384f-4986-a40c-99c69c4c018a.shogun-image-container {
      position: relative;
    }

    .s-6a3249ef-384f-4986-a40c-99c69c4c018a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6a3249ef-384f-4986-a40c-99c69c4c018a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6a3249ef-384f-4986-a40c-99c69c4c018a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2114px;
    }
  }

@media (min-width: 1200px){#s-6a3249ef-384f-4986-a40c-99c69c4c018a {
  margin: 0 !important;
  overflow: visible;
}

#s-6a3249ef-384f-4986-a40c-99c69c4c018a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6a3249ef-384f-4986-a40c-99c69c4c018a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6a3249ef-384f-4986-a40c-99c69c4c018a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6a3249ef-384f-4986-a40c-99c69c4c018a img.shogun-image {
  /* Add background color handling */
  
}

#s-6a3249ef-384f-4986-a40c-99c69c4c018a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6a3249ef-384f-4986-a40c-99c69c4c018a .shg-image-content-wrapper {
      aspect-ratio: 2114/2004;
      min-width: 100%;
      height: auto;
    }

    #s-6a3249ef-384f-4986-a40c-99c69c4c018a .shogun-image-link {
      aspect-ratio: 2114/2004;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6a3249ef-384f-4986-a40c-99c69c4c018a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6a3249ef-384f-4986-a40c-99c69c4c018a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6a3249ef-384f-4986-a40c-99c69c4c018a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2114px;
  }




.s-6a3249ef-384f-4986-a40c-99c69c4c018a .shogun-image-content {
  
    justify-content: center;
  
}

.s-6a3249ef-384f-4986-a40c-99c69c4c018a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6a3249ef-384f-4986-a40c-99c69c4c018a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6a3249ef-384f-4986-a40c-99c69c4c018a.shogun-image {
  box-sizing: border-box;
}



.s-6a3249ef-384f-4986-a40c-99c69c4c018a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6a3249ef-384f-4986-a40c-99c69c4c018a {
      --shg-aspect-ratio: calc(2114/2004); 
    }

    .s-6a3249ef-384f-4986-a40c-99c69c4c018a.shogun-image-container {
      position: relative;
    }

    .s-6a3249ef-384f-4986-a40c-99c69c4c018a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6a3249ef-384f-4986-a40c-99c69c4c018a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6a3249ef-384f-4986-a40c-99c69c4c018a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2114px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-6a3249ef-384f-4986-a40c-99c69c4c018a {
  margin: 0 !important;
  overflow: visible;
}

#s-6a3249ef-384f-4986-a40c-99c69c4c018a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6a3249ef-384f-4986-a40c-99c69c4c018a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6a3249ef-384f-4986-a40c-99c69c4c018a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6a3249ef-384f-4986-a40c-99c69c4c018a img.shogun-image {
  /* Add background color handling */
  
}

#s-6a3249ef-384f-4986-a40c-99c69c4c018a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6a3249ef-384f-4986-a40c-99c69c4c018a .shg-image-content-wrapper {
      aspect-ratio: 2114/2004;
      min-width: 100%;
      height: auto;
    }

    #s-6a3249ef-384f-4986-a40c-99c69c4c018a .shogun-image-link {
      aspect-ratio: 2114/2004;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6a3249ef-384f-4986-a40c-99c69c4c018a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6a3249ef-384f-4986-a40c-99c69c4c018a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6a3249ef-384f-4986-a40c-99c69c4c018a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2114px;
  }




.s-6a3249ef-384f-4986-a40c-99c69c4c018a .shogun-image-content {
  
    justify-content: center;
  
}

.s-6a3249ef-384f-4986-a40c-99c69c4c018a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6a3249ef-384f-4986-a40c-99c69c4c018a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6a3249ef-384f-4986-a40c-99c69c4c018a.shogun-image {
  box-sizing: border-box;
}



.s-6a3249ef-384f-4986-a40c-99c69c4c018a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6a3249ef-384f-4986-a40c-99c69c4c018a {
      --shg-aspect-ratio: calc(2114/2004); 
    }

    .s-6a3249ef-384f-4986-a40c-99c69c4c018a.shogun-image-container {
      position: relative;
    }

    .s-6a3249ef-384f-4986-a40c-99c69c4c018a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6a3249ef-384f-4986-a40c-99c69c4c018a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6a3249ef-384f-4986-a40c-99c69c4c018a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2114px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-6a3249ef-384f-4986-a40c-99c69c4c018a {
  margin: 0 !important;
  overflow: visible;
}

#s-6a3249ef-384f-4986-a40c-99c69c4c018a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6a3249ef-384f-4986-a40c-99c69c4c018a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6a3249ef-384f-4986-a40c-99c69c4c018a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6a3249ef-384f-4986-a40c-99c69c4c018a img.shogun-image {
  /* Add background color handling */
  
}

#s-6a3249ef-384f-4986-a40c-99c69c4c018a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6a3249ef-384f-4986-a40c-99c69c4c018a .shg-image-content-wrapper {
      aspect-ratio: 2114/2004;
      min-width: 100%;
      height: auto;
    }

    #s-6a3249ef-384f-4986-a40c-99c69c4c018a .shogun-image-link {
      aspect-ratio: 2114/2004;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6a3249ef-384f-4986-a40c-99c69c4c018a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6a3249ef-384f-4986-a40c-99c69c4c018a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6a3249ef-384f-4986-a40c-99c69c4c018a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2114px;
  }




.s-6a3249ef-384f-4986-a40c-99c69c4c018a .shogun-image-content {
  
    justify-content: center;
  
}

.s-6a3249ef-384f-4986-a40c-99c69c4c018a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6a3249ef-384f-4986-a40c-99c69c4c018a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6a3249ef-384f-4986-a40c-99c69c4c018a.shogun-image {
  box-sizing: border-box;
}



.s-6a3249ef-384f-4986-a40c-99c69c4c018a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6a3249ef-384f-4986-a40c-99c69c4c018a {
      --shg-aspect-ratio: calc(2114/2004); 
    }

    .s-6a3249ef-384f-4986-a40c-99c69c4c018a.shogun-image-container {
      position: relative;
    }

    .s-6a3249ef-384f-4986-a40c-99c69c4c018a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6a3249ef-384f-4986-a40c-99c69c4c018a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6a3249ef-384f-4986-a40c-99c69c4c018a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2114px;
    }
  }

}@media (max-width: 767px){#s-6a3249ef-384f-4986-a40c-99c69c4c018a {
  margin: 0 !important;
  overflow: visible;
}

#s-6a3249ef-384f-4986-a40c-99c69c4c018a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6a3249ef-384f-4986-a40c-99c69c4c018a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6a3249ef-384f-4986-a40c-99c69c4c018a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6a3249ef-384f-4986-a40c-99c69c4c018a img.shogun-image {
  /* Add background color handling */
  
}

#s-6a3249ef-384f-4986-a40c-99c69c4c018a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6a3249ef-384f-4986-a40c-99c69c4c018a .shg-image-content-wrapper {
      aspect-ratio: 2114/2004;
      min-width: 100%;
      height: auto;
    }

    #s-6a3249ef-384f-4986-a40c-99c69c4c018a .shogun-image-link {
      aspect-ratio: 2114/2004;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6a3249ef-384f-4986-a40c-99c69c4c018a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6a3249ef-384f-4986-a40c-99c69c4c018a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6a3249ef-384f-4986-a40c-99c69c4c018a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2114px;
  }




.s-6a3249ef-384f-4986-a40c-99c69c4c018a .shogun-image-content {
  
    justify-content: center;
  
}

.s-6a3249ef-384f-4986-a40c-99c69c4c018a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6a3249ef-384f-4986-a40c-99c69c4c018a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6a3249ef-384f-4986-a40c-99c69c4c018a.shogun-image {
  box-sizing: border-box;
}



.s-6a3249ef-384f-4986-a40c-99c69c4c018a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6a3249ef-384f-4986-a40c-99c69c4c018a {
      --shg-aspect-ratio: calc(2114/2004); 
    }

    .s-6a3249ef-384f-4986-a40c-99c69c4c018a.shogun-image-container {
      position: relative;
    }

    .s-6a3249ef-384f-4986-a40c-99c69c4c018a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6a3249ef-384f-4986-a40c-99c69c4c018a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6a3249ef-384f-4986-a40c-99c69c4c018a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2114px;
    }
  }

}
.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 {
  
  
}

.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-156c5ddd-3f07-4a74-ab35-56d9ea6c9d3b {
  margin-top: -3px;
margin-left: auto;
margin-bottom: -3px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 8px;
background-color: rgba(17, 17, 17, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-156c5ddd-3f07-4a74-ab35-56d9ea6c9d3b:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYTQ3YmMxNTktNGE1Mi00ZTVjLThkNGEtYWQzNTNjNTQwODNiIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZWVmMTBiO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojN2UyMGNmO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNhNDdiYzE1OS00YTUyLTRlNWMtOGQ0YS1hZDM1M2M1NDA4M2IpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#eef10b"}, {"id"=>2, "pos"=>1, "color"=>"#7e20cf"}] !important;}#s-156c5ddd-3f07-4a74-ab35-56d9ea6c9d3b:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-156c5ddd-3f07-4a74-ab35-56d9ea6c9d3b-root {
    text-align: center;
  }


#s-156c5ddd-3f07-4a74-ab35-56d9ea6c9d3b.shg-btn {
  color: #ffffff;
  font-size: 25px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-156c5ddd-3f07-4a74-ab35-56d9ea6c9d3b-root {
    text-align: center;
  }


#s-156c5ddd-3f07-4a74-ab35-56d9ea6c9d3b.shg-btn {
  color: #ffffff;
  font-size: 25px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-156c5ddd-3f07-4a74-ab35-56d9ea6c9d3b-root {
    text-align: center;
  }


#s-156c5ddd-3f07-4a74-ab35-56d9ea6c9d3b.shg-btn {
  color: #ffffff;
  font-size: 25px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-156c5ddd-3f07-4a74-ab35-56d9ea6c9d3b-root {
    text-align: center;
  }


#s-156c5ddd-3f07-4a74-ab35-56d9ea6c9d3b.shg-btn {
  color: #ffffff;
  font-size: 25px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-156c5ddd-3f07-4a74-ab35-56d9ea6c9d3b-root {
    text-align: center;
  }


#s-156c5ddd-3f07-4a74-ab35-56d9ea6c9d3b.shg-btn {
  color: #ffffff;
  font-size: 25px;
  
  
  
  display:  inline-block ;
}
}
#s-fa9d0056-923c-4c24-8f64-0b514fe31f08 {
  margin-left: auto;
margin-right: auto;
max-width: 2148px;
aspect-ratio: 2148/1986;
text-align: center;
}

#s-fa9d0056-923c-4c24-8f64-0b514fe31f08 {
  margin: 0 !important;
  overflow: visible;
}

#s-fa9d0056-923c-4c24-8f64-0b514fe31f08-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-fa9d0056-923c-4c24-8f64-0b514fe31f08 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-fa9d0056-923c-4c24-8f64-0b514fe31f08 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-fa9d0056-923c-4c24-8f64-0b514fe31f08 img.shogun-image {
  /* Add background color handling */
  
}

#s-fa9d0056-923c-4c24-8f64-0b514fe31f08 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fa9d0056-923c-4c24-8f64-0b514fe31f08 .shg-image-content-wrapper {
      aspect-ratio: 2148/1986;
      min-width: 100%;
      height: auto;
    }

    #s-fa9d0056-923c-4c24-8f64-0b514fe31f08 .shogun-image-link {
      aspect-ratio: 2148/1986;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fa9d0056-923c-4c24-8f64-0b514fe31f08 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fa9d0056-923c-4c24-8f64-0b514fe31f08 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2148px;
  }



  img.s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image {
    
    
    
    max-height: 2148px;
  }


.s-fa9d0056-923c-4c24-8f64-0b514fe31f08 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image {
  box-sizing: border-box;
}



.s-fa9d0056-923c-4c24-8f64-0b514fe31f08 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-fa9d0056-923c-4c24-8f64-0b514fe31f08 {
      --shg-aspect-ratio: calc(2148/1986); 
    }

    .s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image-container {
      position: relative;
    }

    .s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fa9d0056-923c-4c24-8f64-0b514fe31f08 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2148px;
    }
  }

@media (min-width: 1200px){#s-fa9d0056-923c-4c24-8f64-0b514fe31f08 {
  margin: 0 !important;
  overflow: visible;
}

#s-fa9d0056-923c-4c24-8f64-0b514fe31f08-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-fa9d0056-923c-4c24-8f64-0b514fe31f08 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-fa9d0056-923c-4c24-8f64-0b514fe31f08 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-fa9d0056-923c-4c24-8f64-0b514fe31f08 img.shogun-image {
  /* Add background color handling */
  
}

#s-fa9d0056-923c-4c24-8f64-0b514fe31f08 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fa9d0056-923c-4c24-8f64-0b514fe31f08 .shg-image-content-wrapper {
      aspect-ratio: 2148/1986;
      min-width: 100%;
      height: auto;
    }

    #s-fa9d0056-923c-4c24-8f64-0b514fe31f08 .shogun-image-link {
      aspect-ratio: 2148/1986;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fa9d0056-923c-4c24-8f64-0b514fe31f08 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fa9d0056-923c-4c24-8f64-0b514fe31f08 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2148px;
  }



  img.s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image {
    
    
    
    max-height: 2148px;
  }


.s-fa9d0056-923c-4c24-8f64-0b514fe31f08 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image {
  box-sizing: border-box;
}



.s-fa9d0056-923c-4c24-8f64-0b514fe31f08 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-fa9d0056-923c-4c24-8f64-0b514fe31f08 {
      --shg-aspect-ratio: calc(2148/1986); 
    }

    .s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image-container {
      position: relative;
    }

    .s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fa9d0056-923c-4c24-8f64-0b514fe31f08 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2148px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-fa9d0056-923c-4c24-8f64-0b514fe31f08 {
  margin: 0 !important;
  overflow: visible;
}

#s-fa9d0056-923c-4c24-8f64-0b514fe31f08-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-fa9d0056-923c-4c24-8f64-0b514fe31f08 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-fa9d0056-923c-4c24-8f64-0b514fe31f08 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-fa9d0056-923c-4c24-8f64-0b514fe31f08 img.shogun-image {
  /* Add background color handling */
  
}

#s-fa9d0056-923c-4c24-8f64-0b514fe31f08 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fa9d0056-923c-4c24-8f64-0b514fe31f08 .shg-image-content-wrapper {
      aspect-ratio: 2148/1986;
      min-width: 100%;
      height: auto;
    }

    #s-fa9d0056-923c-4c24-8f64-0b514fe31f08 .shogun-image-link {
      aspect-ratio: 2148/1986;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fa9d0056-923c-4c24-8f64-0b514fe31f08 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fa9d0056-923c-4c24-8f64-0b514fe31f08 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2148px;
  }



  img.s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image {
    
    
    
    max-height: 2148px;
  }


.s-fa9d0056-923c-4c24-8f64-0b514fe31f08 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image {
  box-sizing: border-box;
}



.s-fa9d0056-923c-4c24-8f64-0b514fe31f08 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-fa9d0056-923c-4c24-8f64-0b514fe31f08 {
      --shg-aspect-ratio: calc(2148/1986); 
    }

    .s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image-container {
      position: relative;
    }

    .s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fa9d0056-923c-4c24-8f64-0b514fe31f08 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2148px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-fa9d0056-923c-4c24-8f64-0b514fe31f08 {
  margin: 0 !important;
  overflow: visible;
}

#s-fa9d0056-923c-4c24-8f64-0b514fe31f08-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-fa9d0056-923c-4c24-8f64-0b514fe31f08 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-fa9d0056-923c-4c24-8f64-0b514fe31f08 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-fa9d0056-923c-4c24-8f64-0b514fe31f08 img.shogun-image {
  /* Add background color handling */
  
}

#s-fa9d0056-923c-4c24-8f64-0b514fe31f08 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fa9d0056-923c-4c24-8f64-0b514fe31f08 .shg-image-content-wrapper {
      aspect-ratio: 2148/1986;
      min-width: 100%;
      height: auto;
    }

    #s-fa9d0056-923c-4c24-8f64-0b514fe31f08 .shogun-image-link {
      aspect-ratio: 2148/1986;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fa9d0056-923c-4c24-8f64-0b514fe31f08 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fa9d0056-923c-4c24-8f64-0b514fe31f08 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2148px;
  }



  img.s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image {
    
    
    
    max-height: 2148px;
  }


.s-fa9d0056-923c-4c24-8f64-0b514fe31f08 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image {
  box-sizing: border-box;
}



.s-fa9d0056-923c-4c24-8f64-0b514fe31f08 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-fa9d0056-923c-4c24-8f64-0b514fe31f08 {
      --shg-aspect-ratio: calc(2148/1986); 
    }

    .s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image-container {
      position: relative;
    }

    .s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fa9d0056-923c-4c24-8f64-0b514fe31f08 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2148px;
    }
  }

}@media (max-width: 767px){#s-fa9d0056-923c-4c24-8f64-0b514fe31f08 {
  margin: 0 !important;
  overflow: visible;
}

#s-fa9d0056-923c-4c24-8f64-0b514fe31f08-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-fa9d0056-923c-4c24-8f64-0b514fe31f08 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-fa9d0056-923c-4c24-8f64-0b514fe31f08 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-fa9d0056-923c-4c24-8f64-0b514fe31f08 img.shogun-image {
  /* Add background color handling */
  
}

#s-fa9d0056-923c-4c24-8f64-0b514fe31f08 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fa9d0056-923c-4c24-8f64-0b514fe31f08 .shg-image-content-wrapper {
      aspect-ratio: 2148/1986;
      min-width: 100%;
      height: auto;
    }

    #s-fa9d0056-923c-4c24-8f64-0b514fe31f08 .shogun-image-link {
      aspect-ratio: 2148/1986;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fa9d0056-923c-4c24-8f64-0b514fe31f08 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fa9d0056-923c-4c24-8f64-0b514fe31f08 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2148px;
  }



  img.s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image {
    
    
    
    max-height: 2148px;
  }


.s-fa9d0056-923c-4c24-8f64-0b514fe31f08 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image {
  box-sizing: border-box;
}



.s-fa9d0056-923c-4c24-8f64-0b514fe31f08 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-fa9d0056-923c-4c24-8f64-0b514fe31f08 {
      --shg-aspect-ratio: calc(2148/1986); 
    }

    .s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image-container {
      position: relative;
    }

    .s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fa9d0056-923c-4c24-8f64-0b514fe31f08.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fa9d0056-923c-4c24-8f64-0b514fe31f08 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2148px;
    }
  }

}
#s-2ebcf558-9f47-4ae0-b16a-8641420c8cea {
  margin-left: auto;
margin-right: auto;
max-width: 2118px;
aspect-ratio: 2118/1984;
text-align: center;
}

#s-2ebcf558-9f47-4ae0-b16a-8641420c8cea {
  margin: 0 !important;
  overflow: visible;
}

#s-2ebcf558-9f47-4ae0-b16a-8641420c8cea-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2ebcf558-9f47-4ae0-b16a-8641420c8cea {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2ebcf558-9f47-4ae0-b16a-8641420c8cea {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2ebcf558-9f47-4ae0-b16a-8641420c8cea img.shogun-image {
  /* Add background color handling */
  
}

#s-2ebcf558-9f47-4ae0-b16a-8641420c8cea img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2ebcf558-9f47-4ae0-b16a-8641420c8cea .shg-image-content-wrapper {
      aspect-ratio: 2118/1984;
      min-width: 100%;
      height: auto;
    }

    #s-2ebcf558-9f47-4ae0-b16a-8641420c8cea .shogun-image-link {
      aspect-ratio: 2118/1984;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2ebcf558-9f47-4ae0-b16a-8641420c8cea .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2ebcf558-9f47-4ae0-b16a-8641420c8cea img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2118px;
  }



  img.s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image {
    
    
    
    max-height: 2118px;
  }


.s-2ebcf558-9f47-4ae0-b16a-8641420c8cea .shogun-image-content {
  
    justify-content: center;
  
}

.s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image {
  box-sizing: border-box;
}



.s-2ebcf558-9f47-4ae0-b16a-8641420c8cea img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2ebcf558-9f47-4ae0-b16a-8641420c8cea {
      --shg-aspect-ratio: calc(2118/1984); 
    }

    .s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image-container {
      position: relative;
    }

    .s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2ebcf558-9f47-4ae0-b16a-8641420c8cea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2118px;
    }
  }

@media (min-width: 1200px){#s-2ebcf558-9f47-4ae0-b16a-8641420c8cea {
  margin: 0 !important;
  overflow: visible;
}

#s-2ebcf558-9f47-4ae0-b16a-8641420c8cea-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2ebcf558-9f47-4ae0-b16a-8641420c8cea {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2ebcf558-9f47-4ae0-b16a-8641420c8cea {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2ebcf558-9f47-4ae0-b16a-8641420c8cea img.shogun-image {
  /* Add background color handling */
  
}

#s-2ebcf558-9f47-4ae0-b16a-8641420c8cea img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2ebcf558-9f47-4ae0-b16a-8641420c8cea .shg-image-content-wrapper {
      aspect-ratio: 2118/1984;
      min-width: 100%;
      height: auto;
    }

    #s-2ebcf558-9f47-4ae0-b16a-8641420c8cea .shogun-image-link {
      aspect-ratio: 2118/1984;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2ebcf558-9f47-4ae0-b16a-8641420c8cea .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2ebcf558-9f47-4ae0-b16a-8641420c8cea img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2118px;
  }



  img.s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image {
    
    
    
    max-height: 2118px;
  }


.s-2ebcf558-9f47-4ae0-b16a-8641420c8cea .shogun-image-content {
  
    justify-content: center;
  
}

.s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image {
  box-sizing: border-box;
}



.s-2ebcf558-9f47-4ae0-b16a-8641420c8cea img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2ebcf558-9f47-4ae0-b16a-8641420c8cea {
      --shg-aspect-ratio: calc(2118/1984); 
    }

    .s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image-container {
      position: relative;
    }

    .s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2ebcf558-9f47-4ae0-b16a-8641420c8cea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2118px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-2ebcf558-9f47-4ae0-b16a-8641420c8cea {
  margin: 0 !important;
  overflow: visible;
}

#s-2ebcf558-9f47-4ae0-b16a-8641420c8cea-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2ebcf558-9f47-4ae0-b16a-8641420c8cea {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2ebcf558-9f47-4ae0-b16a-8641420c8cea {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2ebcf558-9f47-4ae0-b16a-8641420c8cea img.shogun-image {
  /* Add background color handling */
  
}

#s-2ebcf558-9f47-4ae0-b16a-8641420c8cea img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2ebcf558-9f47-4ae0-b16a-8641420c8cea .shg-image-content-wrapper {
      aspect-ratio: 2118/1984;
      min-width: 100%;
      height: auto;
    }

    #s-2ebcf558-9f47-4ae0-b16a-8641420c8cea .shogun-image-link {
      aspect-ratio: 2118/1984;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2ebcf558-9f47-4ae0-b16a-8641420c8cea .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2ebcf558-9f47-4ae0-b16a-8641420c8cea img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2118px;
  }



  img.s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image {
    
    
    
    max-height: 2118px;
  }


.s-2ebcf558-9f47-4ae0-b16a-8641420c8cea .shogun-image-content {
  
    justify-content: center;
  
}

.s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image {
  box-sizing: border-box;
}



.s-2ebcf558-9f47-4ae0-b16a-8641420c8cea img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2ebcf558-9f47-4ae0-b16a-8641420c8cea {
      --shg-aspect-ratio: calc(2118/1984); 
    }

    .s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image-container {
      position: relative;
    }

    .s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2ebcf558-9f47-4ae0-b16a-8641420c8cea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2118px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-2ebcf558-9f47-4ae0-b16a-8641420c8cea {
  margin: 0 !important;
  overflow: visible;
}

#s-2ebcf558-9f47-4ae0-b16a-8641420c8cea-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2ebcf558-9f47-4ae0-b16a-8641420c8cea {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2ebcf558-9f47-4ae0-b16a-8641420c8cea {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2ebcf558-9f47-4ae0-b16a-8641420c8cea img.shogun-image {
  /* Add background color handling */
  
}

#s-2ebcf558-9f47-4ae0-b16a-8641420c8cea img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2ebcf558-9f47-4ae0-b16a-8641420c8cea .shg-image-content-wrapper {
      aspect-ratio: 2118/1984;
      min-width: 100%;
      height: auto;
    }

    #s-2ebcf558-9f47-4ae0-b16a-8641420c8cea .shogun-image-link {
      aspect-ratio: 2118/1984;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2ebcf558-9f47-4ae0-b16a-8641420c8cea .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2ebcf558-9f47-4ae0-b16a-8641420c8cea img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2118px;
  }



  img.s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image {
    
    
    
    max-height: 2118px;
  }


.s-2ebcf558-9f47-4ae0-b16a-8641420c8cea .shogun-image-content {
  
    justify-content: center;
  
}

.s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image {
  box-sizing: border-box;
}



.s-2ebcf558-9f47-4ae0-b16a-8641420c8cea img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2ebcf558-9f47-4ae0-b16a-8641420c8cea {
      --shg-aspect-ratio: calc(2118/1984); 
    }

    .s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image-container {
      position: relative;
    }

    .s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2ebcf558-9f47-4ae0-b16a-8641420c8cea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2118px;
    }
  }

}@media (max-width: 767px){#s-2ebcf558-9f47-4ae0-b16a-8641420c8cea {
  margin: 0 !important;
  overflow: visible;
}

#s-2ebcf558-9f47-4ae0-b16a-8641420c8cea-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2ebcf558-9f47-4ae0-b16a-8641420c8cea {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2ebcf558-9f47-4ae0-b16a-8641420c8cea {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2ebcf558-9f47-4ae0-b16a-8641420c8cea img.shogun-image {
  /* Add background color handling */
  
}

#s-2ebcf558-9f47-4ae0-b16a-8641420c8cea img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2ebcf558-9f47-4ae0-b16a-8641420c8cea .shg-image-content-wrapper {
      aspect-ratio: 2118/1984;
      min-width: 100%;
      height: auto;
    }

    #s-2ebcf558-9f47-4ae0-b16a-8641420c8cea .shogun-image-link {
      aspect-ratio: 2118/1984;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2ebcf558-9f47-4ae0-b16a-8641420c8cea .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2ebcf558-9f47-4ae0-b16a-8641420c8cea img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2118px;
  }



  img.s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image {
    
    
    
    max-height: 2118px;
  }


.s-2ebcf558-9f47-4ae0-b16a-8641420c8cea .shogun-image-content {
  
    justify-content: center;
  
}

.s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image {
  box-sizing: border-box;
}



.s-2ebcf558-9f47-4ae0-b16a-8641420c8cea img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2ebcf558-9f47-4ae0-b16a-8641420c8cea {
      --shg-aspect-ratio: calc(2118/1984); 
    }

    .s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image-container {
      position: relative;
    }

    .s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2ebcf558-9f47-4ae0-b16a-8641420c8cea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2ebcf558-9f47-4ae0-b16a-8641420c8cea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2118px;
    }
  }

}
#s-bd87e3b7-31de-49c3-841f-888b8742930e {
  margin-left: auto;
margin-right: auto;
max-width: 2154px;
aspect-ratio: 2154/1984;
text-align: center;
}

#s-bd87e3b7-31de-49c3-841f-888b8742930e {
  margin: 0 !important;
  overflow: visible;
}

#s-bd87e3b7-31de-49c3-841f-888b8742930e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bd87e3b7-31de-49c3-841f-888b8742930e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bd87e3b7-31de-49c3-841f-888b8742930e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bd87e3b7-31de-49c3-841f-888b8742930e img.shogun-image {
  /* Add background color handling */
  
}

#s-bd87e3b7-31de-49c3-841f-888b8742930e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bd87e3b7-31de-49c3-841f-888b8742930e .shg-image-content-wrapper {
      aspect-ratio: 2154/1984;
      min-width: 100%;
      height: auto;
    }

    #s-bd87e3b7-31de-49c3-841f-888b8742930e .shogun-image-link {
      aspect-ratio: 2154/1984;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bd87e3b7-31de-49c3-841f-888b8742930e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bd87e3b7-31de-49c3-841f-888b8742930e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2154px;
  }



  img.s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image {
    
    
    
    max-height: 2154px;
  }


.s-bd87e3b7-31de-49c3-841f-888b8742930e .shogun-image-content {
  
    justify-content: center;
  
}

.s-bd87e3b7-31de-49c3-841f-888b8742930e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image {
  box-sizing: border-box;
}



.s-bd87e3b7-31de-49c3-841f-888b8742930e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bd87e3b7-31de-49c3-841f-888b8742930e {
      --shg-aspect-ratio: calc(2154/1984); 
    }

    .s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image-container {
      position: relative;
    }

    .s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bd87e3b7-31de-49c3-841f-888b8742930e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2154px;
    }
  }

@media (min-width: 1200px){#s-bd87e3b7-31de-49c3-841f-888b8742930e {
  margin: 0 !important;
  overflow: visible;
}

#s-bd87e3b7-31de-49c3-841f-888b8742930e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bd87e3b7-31de-49c3-841f-888b8742930e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bd87e3b7-31de-49c3-841f-888b8742930e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bd87e3b7-31de-49c3-841f-888b8742930e img.shogun-image {
  /* Add background color handling */
  
}

#s-bd87e3b7-31de-49c3-841f-888b8742930e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bd87e3b7-31de-49c3-841f-888b8742930e .shg-image-content-wrapper {
      aspect-ratio: 2154/1984;
      min-width: 100%;
      height: auto;
    }

    #s-bd87e3b7-31de-49c3-841f-888b8742930e .shogun-image-link {
      aspect-ratio: 2154/1984;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bd87e3b7-31de-49c3-841f-888b8742930e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bd87e3b7-31de-49c3-841f-888b8742930e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2154px;
  }



  img.s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image {
    
    
    
    max-height: 2154px;
  }


.s-bd87e3b7-31de-49c3-841f-888b8742930e .shogun-image-content {
  
    justify-content: center;
  
}

.s-bd87e3b7-31de-49c3-841f-888b8742930e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image {
  box-sizing: border-box;
}



.s-bd87e3b7-31de-49c3-841f-888b8742930e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bd87e3b7-31de-49c3-841f-888b8742930e {
      --shg-aspect-ratio: calc(2154/1984); 
    }

    .s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image-container {
      position: relative;
    }

    .s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bd87e3b7-31de-49c3-841f-888b8742930e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2154px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-bd87e3b7-31de-49c3-841f-888b8742930e {
  margin: 0 !important;
  overflow: visible;
}

#s-bd87e3b7-31de-49c3-841f-888b8742930e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bd87e3b7-31de-49c3-841f-888b8742930e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bd87e3b7-31de-49c3-841f-888b8742930e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bd87e3b7-31de-49c3-841f-888b8742930e img.shogun-image {
  /* Add background color handling */
  
}

#s-bd87e3b7-31de-49c3-841f-888b8742930e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bd87e3b7-31de-49c3-841f-888b8742930e .shg-image-content-wrapper {
      aspect-ratio: 2154/1984;
      min-width: 100%;
      height: auto;
    }

    #s-bd87e3b7-31de-49c3-841f-888b8742930e .shogun-image-link {
      aspect-ratio: 2154/1984;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bd87e3b7-31de-49c3-841f-888b8742930e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bd87e3b7-31de-49c3-841f-888b8742930e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2154px;
  }



  img.s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image {
    
    
    
    max-height: 2154px;
  }


.s-bd87e3b7-31de-49c3-841f-888b8742930e .shogun-image-content {
  
    justify-content: center;
  
}

.s-bd87e3b7-31de-49c3-841f-888b8742930e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image {
  box-sizing: border-box;
}



.s-bd87e3b7-31de-49c3-841f-888b8742930e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bd87e3b7-31de-49c3-841f-888b8742930e {
      --shg-aspect-ratio: calc(2154/1984); 
    }

    .s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image-container {
      position: relative;
    }

    .s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bd87e3b7-31de-49c3-841f-888b8742930e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2154px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-bd87e3b7-31de-49c3-841f-888b8742930e {
  margin: 0 !important;
  overflow: visible;
}

#s-bd87e3b7-31de-49c3-841f-888b8742930e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bd87e3b7-31de-49c3-841f-888b8742930e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bd87e3b7-31de-49c3-841f-888b8742930e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bd87e3b7-31de-49c3-841f-888b8742930e img.shogun-image {
  /* Add background color handling */
  
}

#s-bd87e3b7-31de-49c3-841f-888b8742930e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bd87e3b7-31de-49c3-841f-888b8742930e .shg-image-content-wrapper {
      aspect-ratio: 2154/1984;
      min-width: 100%;
      height: auto;
    }

    #s-bd87e3b7-31de-49c3-841f-888b8742930e .shogun-image-link {
      aspect-ratio: 2154/1984;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bd87e3b7-31de-49c3-841f-888b8742930e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bd87e3b7-31de-49c3-841f-888b8742930e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2154px;
  }



  img.s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image {
    
    
    
    max-height: 2154px;
  }


.s-bd87e3b7-31de-49c3-841f-888b8742930e .shogun-image-content {
  
    justify-content: center;
  
}

.s-bd87e3b7-31de-49c3-841f-888b8742930e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image {
  box-sizing: border-box;
}



.s-bd87e3b7-31de-49c3-841f-888b8742930e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bd87e3b7-31de-49c3-841f-888b8742930e {
      --shg-aspect-ratio: calc(2154/1984); 
    }

    .s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image-container {
      position: relative;
    }

    .s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bd87e3b7-31de-49c3-841f-888b8742930e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2154px;
    }
  }

}@media (max-width: 767px){#s-bd87e3b7-31de-49c3-841f-888b8742930e {
  margin: 0 !important;
  overflow: visible;
}

#s-bd87e3b7-31de-49c3-841f-888b8742930e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bd87e3b7-31de-49c3-841f-888b8742930e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bd87e3b7-31de-49c3-841f-888b8742930e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bd87e3b7-31de-49c3-841f-888b8742930e img.shogun-image {
  /* Add background color handling */
  
}

#s-bd87e3b7-31de-49c3-841f-888b8742930e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bd87e3b7-31de-49c3-841f-888b8742930e .shg-image-content-wrapper {
      aspect-ratio: 2154/1984;
      min-width: 100%;
      height: auto;
    }

    #s-bd87e3b7-31de-49c3-841f-888b8742930e .shogun-image-link {
      aspect-ratio: 2154/1984;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bd87e3b7-31de-49c3-841f-888b8742930e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bd87e3b7-31de-49c3-841f-888b8742930e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2154px;
  }



  img.s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image {
    
    
    
    max-height: 2154px;
  }


.s-bd87e3b7-31de-49c3-841f-888b8742930e .shogun-image-content {
  
    justify-content: center;
  
}

.s-bd87e3b7-31de-49c3-841f-888b8742930e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image {
  box-sizing: border-box;
}



.s-bd87e3b7-31de-49c3-841f-888b8742930e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bd87e3b7-31de-49c3-841f-888b8742930e {
      --shg-aspect-ratio: calc(2154/1984); 
    }

    .s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image-container {
      position: relative;
    }

    .s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bd87e3b7-31de-49c3-841f-888b8742930e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bd87e3b7-31de-49c3-841f-888b8742930e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2154px;
    }
  }

}
#s-b7654e27-6984-4c7f-9d54-c91e80162492 {
  margin-left: auto;
margin-right: auto;
max-width: 2156px;
aspect-ratio: 2156/2020;
text-align: center;
}

#s-b7654e27-6984-4c7f-9d54-c91e80162492 {
  margin: 0 !important;
  overflow: visible;
}

#s-b7654e27-6984-4c7f-9d54-c91e80162492-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b7654e27-6984-4c7f-9d54-c91e80162492 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b7654e27-6984-4c7f-9d54-c91e80162492 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b7654e27-6984-4c7f-9d54-c91e80162492 img.shogun-image {
  /* Add background color handling */
  
}

#s-b7654e27-6984-4c7f-9d54-c91e80162492 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b7654e27-6984-4c7f-9d54-c91e80162492 .shg-image-content-wrapper {
      aspect-ratio: 2156/2020;
      min-width: 100%;
      height: auto;
    }

    #s-b7654e27-6984-4c7f-9d54-c91e80162492 .shogun-image-link {
      aspect-ratio: 2156/2020;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b7654e27-6984-4c7f-9d54-c91e80162492 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b7654e27-6984-4c7f-9d54-c91e80162492 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2156px;
  }



  img.s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image {
    
    
    
    max-height: 2156px;
  }


.s-b7654e27-6984-4c7f-9d54-c91e80162492 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b7654e27-6984-4c7f-9d54-c91e80162492.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image {
  box-sizing: border-box;
}



.s-b7654e27-6984-4c7f-9d54-c91e80162492 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b7654e27-6984-4c7f-9d54-c91e80162492 {
      --shg-aspect-ratio: calc(2156/2020); 
    }

    .s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image-container {
      position: relative;
    }

    .s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b7654e27-6984-4c7f-9d54-c91e80162492 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2156px;
    }
  }

@media (min-width: 1200px){#s-b7654e27-6984-4c7f-9d54-c91e80162492 {
  margin: 0 !important;
  overflow: visible;
}

#s-b7654e27-6984-4c7f-9d54-c91e80162492-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b7654e27-6984-4c7f-9d54-c91e80162492 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b7654e27-6984-4c7f-9d54-c91e80162492 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b7654e27-6984-4c7f-9d54-c91e80162492 img.shogun-image {
  /* Add background color handling */
  
}

#s-b7654e27-6984-4c7f-9d54-c91e80162492 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b7654e27-6984-4c7f-9d54-c91e80162492 .shg-image-content-wrapper {
      aspect-ratio: 2156/2020;
      min-width: 100%;
      height: auto;
    }

    #s-b7654e27-6984-4c7f-9d54-c91e80162492 .shogun-image-link {
      aspect-ratio: 2156/2020;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b7654e27-6984-4c7f-9d54-c91e80162492 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b7654e27-6984-4c7f-9d54-c91e80162492 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2156px;
  }



  img.s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image {
    
    
    
    max-height: 2156px;
  }


.s-b7654e27-6984-4c7f-9d54-c91e80162492 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b7654e27-6984-4c7f-9d54-c91e80162492.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image {
  box-sizing: border-box;
}



.s-b7654e27-6984-4c7f-9d54-c91e80162492 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b7654e27-6984-4c7f-9d54-c91e80162492 {
      --shg-aspect-ratio: calc(2156/2020); 
    }

    .s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image-container {
      position: relative;
    }

    .s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b7654e27-6984-4c7f-9d54-c91e80162492 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2156px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-b7654e27-6984-4c7f-9d54-c91e80162492 {
  margin: 0 !important;
  overflow: visible;
}

#s-b7654e27-6984-4c7f-9d54-c91e80162492-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b7654e27-6984-4c7f-9d54-c91e80162492 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b7654e27-6984-4c7f-9d54-c91e80162492 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b7654e27-6984-4c7f-9d54-c91e80162492 img.shogun-image {
  /* Add background color handling */
  
}

#s-b7654e27-6984-4c7f-9d54-c91e80162492 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b7654e27-6984-4c7f-9d54-c91e80162492 .shg-image-content-wrapper {
      aspect-ratio: 2156/2020;
      min-width: 100%;
      height: auto;
    }

    #s-b7654e27-6984-4c7f-9d54-c91e80162492 .shogun-image-link {
      aspect-ratio: 2156/2020;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b7654e27-6984-4c7f-9d54-c91e80162492 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b7654e27-6984-4c7f-9d54-c91e80162492 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2156px;
  }



  img.s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image {
    
    
    
    max-height: 2156px;
  }


.s-b7654e27-6984-4c7f-9d54-c91e80162492 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b7654e27-6984-4c7f-9d54-c91e80162492.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image {
  box-sizing: border-box;
}



.s-b7654e27-6984-4c7f-9d54-c91e80162492 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b7654e27-6984-4c7f-9d54-c91e80162492 {
      --shg-aspect-ratio: calc(2156/2020); 
    }

    .s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image-container {
      position: relative;
    }

    .s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b7654e27-6984-4c7f-9d54-c91e80162492 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2156px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-b7654e27-6984-4c7f-9d54-c91e80162492 {
  margin: 0 !important;
  overflow: visible;
}

#s-b7654e27-6984-4c7f-9d54-c91e80162492-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b7654e27-6984-4c7f-9d54-c91e80162492 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b7654e27-6984-4c7f-9d54-c91e80162492 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b7654e27-6984-4c7f-9d54-c91e80162492 img.shogun-image {
  /* Add background color handling */
  
}

#s-b7654e27-6984-4c7f-9d54-c91e80162492 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b7654e27-6984-4c7f-9d54-c91e80162492 .shg-image-content-wrapper {
      aspect-ratio: 2156/2020;
      min-width: 100%;
      height: auto;
    }

    #s-b7654e27-6984-4c7f-9d54-c91e80162492 .shogun-image-link {
      aspect-ratio: 2156/2020;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b7654e27-6984-4c7f-9d54-c91e80162492 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b7654e27-6984-4c7f-9d54-c91e80162492 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2156px;
  }



  img.s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image {
    
    
    
    max-height: 2156px;
  }


.s-b7654e27-6984-4c7f-9d54-c91e80162492 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b7654e27-6984-4c7f-9d54-c91e80162492.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image {
  box-sizing: border-box;
}



.s-b7654e27-6984-4c7f-9d54-c91e80162492 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b7654e27-6984-4c7f-9d54-c91e80162492 {
      --shg-aspect-ratio: calc(2156/2020); 
    }

    .s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image-container {
      position: relative;
    }

    .s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b7654e27-6984-4c7f-9d54-c91e80162492 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2156px;
    }
  }

}@media (max-width: 767px){#s-b7654e27-6984-4c7f-9d54-c91e80162492 {
  margin: 0 !important;
  overflow: visible;
}

#s-b7654e27-6984-4c7f-9d54-c91e80162492-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b7654e27-6984-4c7f-9d54-c91e80162492 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b7654e27-6984-4c7f-9d54-c91e80162492 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b7654e27-6984-4c7f-9d54-c91e80162492 img.shogun-image {
  /* Add background color handling */
  
}

#s-b7654e27-6984-4c7f-9d54-c91e80162492 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b7654e27-6984-4c7f-9d54-c91e80162492 .shg-image-content-wrapper {
      aspect-ratio: 2156/2020;
      min-width: 100%;
      height: auto;
    }

    #s-b7654e27-6984-4c7f-9d54-c91e80162492 .shogun-image-link {
      aspect-ratio: 2156/2020;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b7654e27-6984-4c7f-9d54-c91e80162492 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b7654e27-6984-4c7f-9d54-c91e80162492 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2156px;
  }



  img.s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image {
    
    
    
    max-height: 2156px;
  }


.s-b7654e27-6984-4c7f-9d54-c91e80162492 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b7654e27-6984-4c7f-9d54-c91e80162492.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image {
  box-sizing: border-box;
}



.s-b7654e27-6984-4c7f-9d54-c91e80162492 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b7654e27-6984-4c7f-9d54-c91e80162492 {
      --shg-aspect-ratio: calc(2156/2020); 
    }

    .s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image-container {
      position: relative;
    }

    .s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b7654e27-6984-4c7f-9d54-c91e80162492.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b7654e27-6984-4c7f-9d54-c91e80162492 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2156px;
    }
  }

}
#s-c56923ca-28b7-44b2-93dc-900336c2b0bc {
  margin-left: auto;
margin-right: auto;
max-width: 2140px;
aspect-ratio: 2140/1970;
text-align: center;
}

#s-c56923ca-28b7-44b2-93dc-900336c2b0bc {
  margin: 0 !important;
  overflow: visible;
}

#s-c56923ca-28b7-44b2-93dc-900336c2b0bc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c56923ca-28b7-44b2-93dc-900336c2b0bc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c56923ca-28b7-44b2-93dc-900336c2b0bc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c56923ca-28b7-44b2-93dc-900336c2b0bc img.shogun-image {
  /* Add background color handling */
  
}

#s-c56923ca-28b7-44b2-93dc-900336c2b0bc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c56923ca-28b7-44b2-93dc-900336c2b0bc .shg-image-content-wrapper {
      aspect-ratio: 2140/1970;
      min-width: 100%;
      height: auto;
    }

    #s-c56923ca-28b7-44b2-93dc-900336c2b0bc .shogun-image-link {
      aspect-ratio: 2140/1970;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c56923ca-28b7-44b2-93dc-900336c2b0bc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c56923ca-28b7-44b2-93dc-900336c2b0bc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2140px;
  }



  img.s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image {
    
    
    
    max-height: 2140px;
  }


.s-c56923ca-28b7-44b2-93dc-900336c2b0bc .shogun-image-content {
  
    justify-content: center;
  
}

.s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image {
  box-sizing: border-box;
}



.s-c56923ca-28b7-44b2-93dc-900336c2b0bc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c56923ca-28b7-44b2-93dc-900336c2b0bc {
      --shg-aspect-ratio: calc(2140/1970); 
    }

    .s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image-container {
      position: relative;
    }

    .s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c56923ca-28b7-44b2-93dc-900336c2b0bc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2140px;
    }
  }

@media (min-width: 1200px){#s-c56923ca-28b7-44b2-93dc-900336c2b0bc {
  margin: 0 !important;
  overflow: visible;
}

#s-c56923ca-28b7-44b2-93dc-900336c2b0bc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c56923ca-28b7-44b2-93dc-900336c2b0bc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c56923ca-28b7-44b2-93dc-900336c2b0bc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c56923ca-28b7-44b2-93dc-900336c2b0bc img.shogun-image {
  /* Add background color handling */
  
}

#s-c56923ca-28b7-44b2-93dc-900336c2b0bc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c56923ca-28b7-44b2-93dc-900336c2b0bc .shg-image-content-wrapper {
      aspect-ratio: 2140/1970;
      min-width: 100%;
      height: auto;
    }

    #s-c56923ca-28b7-44b2-93dc-900336c2b0bc .shogun-image-link {
      aspect-ratio: 2140/1970;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c56923ca-28b7-44b2-93dc-900336c2b0bc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c56923ca-28b7-44b2-93dc-900336c2b0bc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2140px;
  }



  img.s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image {
    
    
    
    max-height: 2140px;
  }


.s-c56923ca-28b7-44b2-93dc-900336c2b0bc .shogun-image-content {
  
    justify-content: center;
  
}

.s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image {
  box-sizing: border-box;
}



.s-c56923ca-28b7-44b2-93dc-900336c2b0bc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c56923ca-28b7-44b2-93dc-900336c2b0bc {
      --shg-aspect-ratio: calc(2140/1970); 
    }

    .s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image-container {
      position: relative;
    }

    .s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c56923ca-28b7-44b2-93dc-900336c2b0bc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2140px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-c56923ca-28b7-44b2-93dc-900336c2b0bc {
  margin: 0 !important;
  overflow: visible;
}

#s-c56923ca-28b7-44b2-93dc-900336c2b0bc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c56923ca-28b7-44b2-93dc-900336c2b0bc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c56923ca-28b7-44b2-93dc-900336c2b0bc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c56923ca-28b7-44b2-93dc-900336c2b0bc img.shogun-image {
  /* Add background color handling */
  
}

#s-c56923ca-28b7-44b2-93dc-900336c2b0bc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c56923ca-28b7-44b2-93dc-900336c2b0bc .shg-image-content-wrapper {
      aspect-ratio: 2140/1970;
      min-width: 100%;
      height: auto;
    }

    #s-c56923ca-28b7-44b2-93dc-900336c2b0bc .shogun-image-link {
      aspect-ratio: 2140/1970;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c56923ca-28b7-44b2-93dc-900336c2b0bc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c56923ca-28b7-44b2-93dc-900336c2b0bc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2140px;
  }



  img.s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image {
    
    
    
    max-height: 2140px;
  }


.s-c56923ca-28b7-44b2-93dc-900336c2b0bc .shogun-image-content {
  
    justify-content: center;
  
}

.s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image {
  box-sizing: border-box;
}



.s-c56923ca-28b7-44b2-93dc-900336c2b0bc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c56923ca-28b7-44b2-93dc-900336c2b0bc {
      --shg-aspect-ratio: calc(2140/1970); 
    }

    .s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image-container {
      position: relative;
    }

    .s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c56923ca-28b7-44b2-93dc-900336c2b0bc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2140px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-c56923ca-28b7-44b2-93dc-900336c2b0bc {
  margin: 0 !important;
  overflow: visible;
}

#s-c56923ca-28b7-44b2-93dc-900336c2b0bc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c56923ca-28b7-44b2-93dc-900336c2b0bc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c56923ca-28b7-44b2-93dc-900336c2b0bc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c56923ca-28b7-44b2-93dc-900336c2b0bc img.shogun-image {
  /* Add background color handling */
  
}

#s-c56923ca-28b7-44b2-93dc-900336c2b0bc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c56923ca-28b7-44b2-93dc-900336c2b0bc .shg-image-content-wrapper {
      aspect-ratio: 2140/1970;
      min-width: 100%;
      height: auto;
    }

    #s-c56923ca-28b7-44b2-93dc-900336c2b0bc .shogun-image-link {
      aspect-ratio: 2140/1970;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c56923ca-28b7-44b2-93dc-900336c2b0bc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c56923ca-28b7-44b2-93dc-900336c2b0bc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2140px;
  }



  img.s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image {
    
    
    
    max-height: 2140px;
  }


.s-c56923ca-28b7-44b2-93dc-900336c2b0bc .shogun-image-content {
  
    justify-content: center;
  
}

.s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image {
  box-sizing: border-box;
}



.s-c56923ca-28b7-44b2-93dc-900336c2b0bc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c56923ca-28b7-44b2-93dc-900336c2b0bc {
      --shg-aspect-ratio: calc(2140/1970); 
    }

    .s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image-container {
      position: relative;
    }

    .s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c56923ca-28b7-44b2-93dc-900336c2b0bc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2140px;
    }
  }

}@media (max-width: 767px){#s-c56923ca-28b7-44b2-93dc-900336c2b0bc {
  margin: 0 !important;
  overflow: visible;
}

#s-c56923ca-28b7-44b2-93dc-900336c2b0bc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c56923ca-28b7-44b2-93dc-900336c2b0bc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c56923ca-28b7-44b2-93dc-900336c2b0bc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c56923ca-28b7-44b2-93dc-900336c2b0bc img.shogun-image {
  /* Add background color handling */
  
}

#s-c56923ca-28b7-44b2-93dc-900336c2b0bc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c56923ca-28b7-44b2-93dc-900336c2b0bc .shg-image-content-wrapper {
      aspect-ratio: 2140/1970;
      min-width: 100%;
      height: auto;
    }

    #s-c56923ca-28b7-44b2-93dc-900336c2b0bc .shogun-image-link {
      aspect-ratio: 2140/1970;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c56923ca-28b7-44b2-93dc-900336c2b0bc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c56923ca-28b7-44b2-93dc-900336c2b0bc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2140px;
  }



  img.s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image {
    
    
    
    max-height: 2140px;
  }


.s-c56923ca-28b7-44b2-93dc-900336c2b0bc .shogun-image-content {
  
    justify-content: center;
  
}

.s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image {
  box-sizing: border-box;
}



.s-c56923ca-28b7-44b2-93dc-900336c2b0bc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c56923ca-28b7-44b2-93dc-900336c2b0bc {
      --shg-aspect-ratio: calc(2140/1970); 
    }

    .s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image-container {
      position: relative;
    }

    .s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c56923ca-28b7-44b2-93dc-900336c2b0bc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c56923ca-28b7-44b2-93dc-900336c2b0bc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2140px;
    }
  }

}
#s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 {
  margin-left: auto;
margin-right: auto;
max-width: 2142px;
aspect-ratio: 2142/1984;
text-align: center;
}

#s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 {
  margin: 0 !important;
  overflow: visible;
}

#s-b5fbdfdf-2f18-441f-9652-7344a8b31c40-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 img.shogun-image {
  /* Add background color handling */
  
}

#s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 .shg-image-content-wrapper {
      aspect-ratio: 2142/1984;
      min-width: 100%;
      height: auto;
    }

    #s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 .shogun-image-link {
      aspect-ratio: 2142/1984;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2142px;
  }



  img.s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image {
    
    
    
    max-height: 2142px;
  }


.s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image {
  box-sizing: border-box;
}



.s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 {
      --shg-aspect-ratio: calc(2142/1984); 
    }

    .s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image-container {
      position: relative;
    }

    .s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2142px;
    }
  }

@media (min-width: 1200px){#s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 {
  margin: 0 !important;
  overflow: visible;
}

#s-b5fbdfdf-2f18-441f-9652-7344a8b31c40-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 img.shogun-image {
  /* Add background color handling */
  
}

#s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 .shg-image-content-wrapper {
      aspect-ratio: 2142/1984;
      min-width: 100%;
      height: auto;
    }

    #s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 .shogun-image-link {
      aspect-ratio: 2142/1984;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2142px;
  }



  img.s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image {
    
    
    
    max-height: 2142px;
  }


.s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image {
  box-sizing: border-box;
}



.s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 {
      --shg-aspect-ratio: calc(2142/1984); 
    }

    .s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image-container {
      position: relative;
    }

    .s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2142px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 {
  margin: 0 !important;
  overflow: visible;
}

#s-b5fbdfdf-2f18-441f-9652-7344a8b31c40-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 img.shogun-image {
  /* Add background color handling */
  
}

#s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 .shg-image-content-wrapper {
      aspect-ratio: 2142/1984;
      min-width: 100%;
      height: auto;
    }

    #s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 .shogun-image-link {
      aspect-ratio: 2142/1984;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2142px;
  }



  img.s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image {
    
    
    
    max-height: 2142px;
  }


.s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image {
  box-sizing: border-box;
}



.s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 {
      --shg-aspect-ratio: calc(2142/1984); 
    }

    .s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image-container {
      position: relative;
    }

    .s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2142px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 {
  margin: 0 !important;
  overflow: visible;
}

#s-b5fbdfdf-2f18-441f-9652-7344a8b31c40-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 img.shogun-image {
  /* Add background color handling */
  
}

#s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 .shg-image-content-wrapper {
      aspect-ratio: 2142/1984;
      min-width: 100%;
      height: auto;
    }

    #s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 .shogun-image-link {
      aspect-ratio: 2142/1984;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2142px;
  }



  img.s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image {
    
    
    
    max-height: 2142px;
  }


.s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image {
  box-sizing: border-box;
}



.s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 {
      --shg-aspect-ratio: calc(2142/1984); 
    }

    .s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image-container {
      position: relative;
    }

    .s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2142px;
    }
  }

}@media (max-width: 767px){#s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 {
  margin: 0 !important;
  overflow: visible;
}

#s-b5fbdfdf-2f18-441f-9652-7344a8b31c40-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 img.shogun-image {
  /* Add background color handling */
  
}

#s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 .shg-image-content-wrapper {
      aspect-ratio: 2142/1984;
      min-width: 100%;
      height: auto;
    }

    #s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 .shogun-image-link {
      aspect-ratio: 2142/1984;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2142px;
  }



  img.s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image {
    
    
    
    max-height: 2142px;
  }


.s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image {
  box-sizing: border-box;
}



.s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 {
      --shg-aspect-ratio: calc(2142/1984); 
    }

    .s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image-container {
      position: relative;
    }

    .s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b5fbdfdf-2f18-441f-9652-7344a8b31c40.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b5fbdfdf-2f18-441f-9652-7344a8b31c40 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2142px;
    }
  }

}
#s-80a8cab3-1c11-42b1-b448-9369fa704098 {
  margin-left: auto;
margin-right: auto;
max-width: 2242px;
aspect-ratio: 2242/2004;
text-align: center;
}

#s-80a8cab3-1c11-42b1-b448-9369fa704098 {
  margin: 0 !important;
  overflow: visible;
}

#s-80a8cab3-1c11-42b1-b448-9369fa704098-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-80a8cab3-1c11-42b1-b448-9369fa704098 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-80a8cab3-1c11-42b1-b448-9369fa704098 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-80a8cab3-1c11-42b1-b448-9369fa704098 img.shogun-image {
  /* Add background color handling */
  
}

#s-80a8cab3-1c11-42b1-b448-9369fa704098 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-80a8cab3-1c11-42b1-b448-9369fa704098 .shg-image-content-wrapper {
      aspect-ratio: 2242/2004;
      min-width: 100%;
      height: auto;
    }

    #s-80a8cab3-1c11-42b1-b448-9369fa704098 .shogun-image-link {
      aspect-ratio: 2242/2004;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-80a8cab3-1c11-42b1-b448-9369fa704098 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-80a8cab3-1c11-42b1-b448-9369fa704098 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2242px;
  }



  img.s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image {
    
    
    
    max-height: 2242px;
  }


.s-80a8cab3-1c11-42b1-b448-9369fa704098 .shogun-image-content {
  
    justify-content: center;
  
}

.s-80a8cab3-1c11-42b1-b448-9369fa704098.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image {
  box-sizing: border-box;
}



.s-80a8cab3-1c11-42b1-b448-9369fa704098 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-80a8cab3-1c11-42b1-b448-9369fa704098 {
      --shg-aspect-ratio: calc(2242/2004); 
    }

    .s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image-container {
      position: relative;
    }

    .s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-80a8cab3-1c11-42b1-b448-9369fa704098 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2242px;
    }
  }

@media (min-width: 1200px){#s-80a8cab3-1c11-42b1-b448-9369fa704098 {
  margin: 0 !important;
  overflow: visible;
}

#s-80a8cab3-1c11-42b1-b448-9369fa704098-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-80a8cab3-1c11-42b1-b448-9369fa704098 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-80a8cab3-1c11-42b1-b448-9369fa704098 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-80a8cab3-1c11-42b1-b448-9369fa704098 img.shogun-image {
  /* Add background color handling */
  
}

#s-80a8cab3-1c11-42b1-b448-9369fa704098 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-80a8cab3-1c11-42b1-b448-9369fa704098 .shg-image-content-wrapper {
      aspect-ratio: 2242/2004;
      min-width: 100%;
      height: auto;
    }

    #s-80a8cab3-1c11-42b1-b448-9369fa704098 .shogun-image-link {
      aspect-ratio: 2242/2004;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-80a8cab3-1c11-42b1-b448-9369fa704098 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-80a8cab3-1c11-42b1-b448-9369fa704098 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2242px;
  }



  img.s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image {
    
    
    
    max-height: 2242px;
  }


.s-80a8cab3-1c11-42b1-b448-9369fa704098 .shogun-image-content {
  
    justify-content: center;
  
}

.s-80a8cab3-1c11-42b1-b448-9369fa704098.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image {
  box-sizing: border-box;
}



.s-80a8cab3-1c11-42b1-b448-9369fa704098 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-80a8cab3-1c11-42b1-b448-9369fa704098 {
      --shg-aspect-ratio: calc(2242/2004); 
    }

    .s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image-container {
      position: relative;
    }

    .s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-80a8cab3-1c11-42b1-b448-9369fa704098 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2242px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-80a8cab3-1c11-42b1-b448-9369fa704098 {
  margin: 0 !important;
  overflow: visible;
}

#s-80a8cab3-1c11-42b1-b448-9369fa704098-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-80a8cab3-1c11-42b1-b448-9369fa704098 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-80a8cab3-1c11-42b1-b448-9369fa704098 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-80a8cab3-1c11-42b1-b448-9369fa704098 img.shogun-image {
  /* Add background color handling */
  
}

#s-80a8cab3-1c11-42b1-b448-9369fa704098 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-80a8cab3-1c11-42b1-b448-9369fa704098 .shg-image-content-wrapper {
      aspect-ratio: 2242/2004;
      min-width: 100%;
      height: auto;
    }

    #s-80a8cab3-1c11-42b1-b448-9369fa704098 .shogun-image-link {
      aspect-ratio: 2242/2004;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-80a8cab3-1c11-42b1-b448-9369fa704098 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-80a8cab3-1c11-42b1-b448-9369fa704098 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2242px;
  }



  img.s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image {
    
    
    
    max-height: 2242px;
  }


.s-80a8cab3-1c11-42b1-b448-9369fa704098 .shogun-image-content {
  
    justify-content: center;
  
}

.s-80a8cab3-1c11-42b1-b448-9369fa704098.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image {
  box-sizing: border-box;
}



.s-80a8cab3-1c11-42b1-b448-9369fa704098 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-80a8cab3-1c11-42b1-b448-9369fa704098 {
      --shg-aspect-ratio: calc(2242/2004); 
    }

    .s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image-container {
      position: relative;
    }

    .s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-80a8cab3-1c11-42b1-b448-9369fa704098 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2242px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-80a8cab3-1c11-42b1-b448-9369fa704098 {
  margin: 0 !important;
  overflow: visible;
}

#s-80a8cab3-1c11-42b1-b448-9369fa704098-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-80a8cab3-1c11-42b1-b448-9369fa704098 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-80a8cab3-1c11-42b1-b448-9369fa704098 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-80a8cab3-1c11-42b1-b448-9369fa704098 img.shogun-image {
  /* Add background color handling */
  
}

#s-80a8cab3-1c11-42b1-b448-9369fa704098 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-80a8cab3-1c11-42b1-b448-9369fa704098 .shg-image-content-wrapper {
      aspect-ratio: 2242/2004;
      min-width: 100%;
      height: auto;
    }

    #s-80a8cab3-1c11-42b1-b448-9369fa704098 .shogun-image-link {
      aspect-ratio: 2242/2004;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-80a8cab3-1c11-42b1-b448-9369fa704098 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-80a8cab3-1c11-42b1-b448-9369fa704098 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2242px;
  }



  img.s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image {
    
    
    
    max-height: 2242px;
  }


.s-80a8cab3-1c11-42b1-b448-9369fa704098 .shogun-image-content {
  
    justify-content: center;
  
}

.s-80a8cab3-1c11-42b1-b448-9369fa704098.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image {
  box-sizing: border-box;
}



.s-80a8cab3-1c11-42b1-b448-9369fa704098 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-80a8cab3-1c11-42b1-b448-9369fa704098 {
      --shg-aspect-ratio: calc(2242/2004); 
    }

    .s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image-container {
      position: relative;
    }

    .s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-80a8cab3-1c11-42b1-b448-9369fa704098 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2242px;
    }
  }

}@media (max-width: 767px){#s-80a8cab3-1c11-42b1-b448-9369fa704098 {
  margin: 0 !important;
  overflow: visible;
}

#s-80a8cab3-1c11-42b1-b448-9369fa704098-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-80a8cab3-1c11-42b1-b448-9369fa704098 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-80a8cab3-1c11-42b1-b448-9369fa704098 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-80a8cab3-1c11-42b1-b448-9369fa704098 img.shogun-image {
  /* Add background color handling */
  
}

#s-80a8cab3-1c11-42b1-b448-9369fa704098 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-80a8cab3-1c11-42b1-b448-9369fa704098 .shg-image-content-wrapper {
      aspect-ratio: 2242/2004;
      min-width: 100%;
      height: auto;
    }

    #s-80a8cab3-1c11-42b1-b448-9369fa704098 .shogun-image-link {
      aspect-ratio: 2242/2004;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-80a8cab3-1c11-42b1-b448-9369fa704098 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-80a8cab3-1c11-42b1-b448-9369fa704098 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2242px;
  }



  img.s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image {
    
    
    
    max-height: 2242px;
  }


.s-80a8cab3-1c11-42b1-b448-9369fa704098 .shogun-image-content {
  
    justify-content: center;
  
}

.s-80a8cab3-1c11-42b1-b448-9369fa704098.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image {
  box-sizing: border-box;
}



.s-80a8cab3-1c11-42b1-b448-9369fa704098 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-80a8cab3-1c11-42b1-b448-9369fa704098 {
      --shg-aspect-ratio: calc(2242/2004); 
    }

    .s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image-container {
      position: relative;
    }

    .s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-80a8cab3-1c11-42b1-b448-9369fa704098.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-80a8cab3-1c11-42b1-b448-9369fa704098 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2242px;
    }
  }

}
#s-451ed690-27b9-41bf-9d75-ba31ef58ed35 {
  margin-left: auto;
margin-right: auto;
max-width: 2392px;
aspect-ratio: 2392/1948;
text-align: center;
}

#s-451ed690-27b9-41bf-9d75-ba31ef58ed35 {
  margin: 0 !important;
  overflow: visible;
}

#s-451ed690-27b9-41bf-9d75-ba31ef58ed35-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-451ed690-27b9-41bf-9d75-ba31ef58ed35 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-451ed690-27b9-41bf-9d75-ba31ef58ed35 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-451ed690-27b9-41bf-9d75-ba31ef58ed35 img.shogun-image {
  /* Add background color handling */
  
}

#s-451ed690-27b9-41bf-9d75-ba31ef58ed35 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-451ed690-27b9-41bf-9d75-ba31ef58ed35 .shg-image-content-wrapper {
      aspect-ratio: 2392/1948;
      min-width: 100%;
      height: auto;
    }

    #s-451ed690-27b9-41bf-9d75-ba31ef58ed35 .shogun-image-link {
      aspect-ratio: 2392/1948;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-451ed690-27b9-41bf-9d75-ba31ef58ed35 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-451ed690-27b9-41bf-9d75-ba31ef58ed35 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2392px;
  }



  img.s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image {
    
    
    
    max-height: 2392px;
  }


.s-451ed690-27b9-41bf-9d75-ba31ef58ed35 .shogun-image-content {
  
    justify-content: center;
  
}

.s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shg-align-container {
  display: flex;
  justify-content: center
}

.s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image {
  box-sizing: border-box;
}



.s-451ed690-27b9-41bf-9d75-ba31ef58ed35 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-451ed690-27b9-41bf-9d75-ba31ef58ed35 {
      --shg-aspect-ratio: calc(2392/1948); 
    }

    .s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image-container {
      position: relative;
    }

    .s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-451ed690-27b9-41bf-9d75-ba31ef58ed35 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2392px;
    }
  }

@media (min-width: 1200px){#s-451ed690-27b9-41bf-9d75-ba31ef58ed35 {
  margin: 0 !important;
  overflow: visible;
}

#s-451ed690-27b9-41bf-9d75-ba31ef58ed35-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-451ed690-27b9-41bf-9d75-ba31ef58ed35 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-451ed690-27b9-41bf-9d75-ba31ef58ed35 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-451ed690-27b9-41bf-9d75-ba31ef58ed35 img.shogun-image {
  /* Add background color handling */
  
}

#s-451ed690-27b9-41bf-9d75-ba31ef58ed35 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-451ed690-27b9-41bf-9d75-ba31ef58ed35 .shg-image-content-wrapper {
      aspect-ratio: 2392/1948;
      min-width: 100%;
      height: auto;
    }

    #s-451ed690-27b9-41bf-9d75-ba31ef58ed35 .shogun-image-link {
      aspect-ratio: 2392/1948;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-451ed690-27b9-41bf-9d75-ba31ef58ed35 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-451ed690-27b9-41bf-9d75-ba31ef58ed35 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2392px;
  }



  img.s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image {
    
    
    
    max-height: 2392px;
  }


.s-451ed690-27b9-41bf-9d75-ba31ef58ed35 .shogun-image-content {
  
    justify-content: center;
  
}

.s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shg-align-container {
  display: flex;
  justify-content: center
}

.s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image {
  box-sizing: border-box;
}



.s-451ed690-27b9-41bf-9d75-ba31ef58ed35 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-451ed690-27b9-41bf-9d75-ba31ef58ed35 {
      --shg-aspect-ratio: calc(2392/1948); 
    }

    .s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image-container {
      position: relative;
    }

    .s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-451ed690-27b9-41bf-9d75-ba31ef58ed35 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2392px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-451ed690-27b9-41bf-9d75-ba31ef58ed35 {
  margin: 0 !important;
  overflow: visible;
}

#s-451ed690-27b9-41bf-9d75-ba31ef58ed35-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-451ed690-27b9-41bf-9d75-ba31ef58ed35 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-451ed690-27b9-41bf-9d75-ba31ef58ed35 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-451ed690-27b9-41bf-9d75-ba31ef58ed35 img.shogun-image {
  /* Add background color handling */
  
}

#s-451ed690-27b9-41bf-9d75-ba31ef58ed35 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-451ed690-27b9-41bf-9d75-ba31ef58ed35 .shg-image-content-wrapper {
      aspect-ratio: 2392/1948;
      min-width: 100%;
      height: auto;
    }

    #s-451ed690-27b9-41bf-9d75-ba31ef58ed35 .shogun-image-link {
      aspect-ratio: 2392/1948;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-451ed690-27b9-41bf-9d75-ba31ef58ed35 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-451ed690-27b9-41bf-9d75-ba31ef58ed35 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2392px;
  }



  img.s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image {
    
    
    
    max-height: 2392px;
  }


.s-451ed690-27b9-41bf-9d75-ba31ef58ed35 .shogun-image-content {
  
    justify-content: center;
  
}

.s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shg-align-container {
  display: flex;
  justify-content: center
}

.s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image {
  box-sizing: border-box;
}



.s-451ed690-27b9-41bf-9d75-ba31ef58ed35 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-451ed690-27b9-41bf-9d75-ba31ef58ed35 {
      --shg-aspect-ratio: calc(2392/1948); 
    }

    .s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image-container {
      position: relative;
    }

    .s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-451ed690-27b9-41bf-9d75-ba31ef58ed35 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2392px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-451ed690-27b9-41bf-9d75-ba31ef58ed35 {
  margin: 0 !important;
  overflow: visible;
}

#s-451ed690-27b9-41bf-9d75-ba31ef58ed35-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-451ed690-27b9-41bf-9d75-ba31ef58ed35 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-451ed690-27b9-41bf-9d75-ba31ef58ed35 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-451ed690-27b9-41bf-9d75-ba31ef58ed35 img.shogun-image {
  /* Add background color handling */
  
}

#s-451ed690-27b9-41bf-9d75-ba31ef58ed35 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-451ed690-27b9-41bf-9d75-ba31ef58ed35 .shg-image-content-wrapper {
      aspect-ratio: 2392/1948;
      min-width: 100%;
      height: auto;
    }

    #s-451ed690-27b9-41bf-9d75-ba31ef58ed35 .shogun-image-link {
      aspect-ratio: 2392/1948;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-451ed690-27b9-41bf-9d75-ba31ef58ed35 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-451ed690-27b9-41bf-9d75-ba31ef58ed35 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2392px;
  }



  img.s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image {
    
    
    
    max-height: 2392px;
  }


.s-451ed690-27b9-41bf-9d75-ba31ef58ed35 .shogun-image-content {
  
    justify-content: center;
  
}

.s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shg-align-container {
  display: flex;
  justify-content: center
}

.s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image {
  box-sizing: border-box;
}



.s-451ed690-27b9-41bf-9d75-ba31ef58ed35 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-451ed690-27b9-41bf-9d75-ba31ef58ed35 {
      --shg-aspect-ratio: calc(2392/1948); 
    }

    .s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image-container {
      position: relative;
    }

    .s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-451ed690-27b9-41bf-9d75-ba31ef58ed35 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2392px;
    }
  }

}@media (max-width: 767px){#s-451ed690-27b9-41bf-9d75-ba31ef58ed35 {
  margin: 0 !important;
  overflow: visible;
}

#s-451ed690-27b9-41bf-9d75-ba31ef58ed35-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-451ed690-27b9-41bf-9d75-ba31ef58ed35 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-451ed690-27b9-41bf-9d75-ba31ef58ed35 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-451ed690-27b9-41bf-9d75-ba31ef58ed35 img.shogun-image {
  /* Add background color handling */
  
}

#s-451ed690-27b9-41bf-9d75-ba31ef58ed35 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-451ed690-27b9-41bf-9d75-ba31ef58ed35 .shg-image-content-wrapper {
      aspect-ratio: 2392/1948;
      min-width: 100%;
      height: auto;
    }

    #s-451ed690-27b9-41bf-9d75-ba31ef58ed35 .shogun-image-link {
      aspect-ratio: 2392/1948;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-451ed690-27b9-41bf-9d75-ba31ef58ed35 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-451ed690-27b9-41bf-9d75-ba31ef58ed35 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2392px;
  }



  img.s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image {
    
    
    
    max-height: 2392px;
  }


.s-451ed690-27b9-41bf-9d75-ba31ef58ed35 .shogun-image-content {
  
    justify-content: center;
  
}

.s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shg-align-container {
  display: flex;
  justify-content: center
}

.s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image {
  box-sizing: border-box;
}



.s-451ed690-27b9-41bf-9d75-ba31ef58ed35 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-451ed690-27b9-41bf-9d75-ba31ef58ed35 {
      --shg-aspect-ratio: calc(2392/1948); 
    }

    .s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image-container {
      position: relative;
    }

    .s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-451ed690-27b9-41bf-9d75-ba31ef58ed35.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-451ed690-27b9-41bf-9d75-ba31ef58ed35 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2392px;
    }
  }

}
#s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 {
  margin-left: auto;
margin-right: auto;
max-width: 2312px;
aspect-ratio: 2312/2284;
text-align: center;
}

#s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 {
  margin: 0 !important;
  overflow: visible;
}

#s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 img.shogun-image {
  /* Add background color handling */
  
}

#s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 .shg-image-content-wrapper {
      aspect-ratio: 2312/2284;
      min-width: 100%;
      height: auto;
    }

    #s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 .shogun-image-link {
      aspect-ratio: 2312/2284;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2312px;
  }



  img.s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image {
    
    
    
    max-height: 2312px;
  }


.s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image {
  box-sizing: border-box;
}



.s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 {
      --shg-aspect-ratio: calc(2312/2284); 
    }

    .s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image-container {
      position: relative;
    }

    .s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2312px;
    }
  }

@media (min-width: 1200px){#s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 {
  margin: 0 !important;
  overflow: visible;
}

#s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 img.shogun-image {
  /* Add background color handling */
  
}

#s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 .shg-image-content-wrapper {
      aspect-ratio: 2312/2284;
      min-width: 100%;
      height: auto;
    }

    #s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 .shogun-image-link {
      aspect-ratio: 2312/2284;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2312px;
  }



  img.s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image {
    
    
    
    max-height: 2312px;
  }


.s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image {
  box-sizing: border-box;
}



.s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 {
      --shg-aspect-ratio: calc(2312/2284); 
    }

    .s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image-container {
      position: relative;
    }

    .s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2312px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 {
  margin: 0 !important;
  overflow: visible;
}

#s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 img.shogun-image {
  /* Add background color handling */
  
}

#s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 .shg-image-content-wrapper {
      aspect-ratio: 2312/2284;
      min-width: 100%;
      height: auto;
    }

    #s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 .shogun-image-link {
      aspect-ratio: 2312/2284;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2312px;
  }



  img.s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image {
    
    
    
    max-height: 2312px;
  }


.s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image {
  box-sizing: border-box;
}



.s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 {
      --shg-aspect-ratio: calc(2312/2284); 
    }

    .s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image-container {
      position: relative;
    }

    .s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2312px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 {
  margin: 0 !important;
  overflow: visible;
}

#s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 img.shogun-image {
  /* Add background color handling */
  
}

#s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 .shg-image-content-wrapper {
      aspect-ratio: 2312/2284;
      min-width: 100%;
      height: auto;
    }

    #s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 .shogun-image-link {
      aspect-ratio: 2312/2284;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2312px;
  }



  img.s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image {
    
    
    
    max-height: 2312px;
  }


.s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image {
  box-sizing: border-box;
}



.s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 {
      --shg-aspect-ratio: calc(2312/2284); 
    }

    .s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image-container {
      position: relative;
    }

    .s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2312px;
    }
  }

}@media (max-width: 767px){#s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 {
  margin: 0 !important;
  overflow: visible;
}

#s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 img.shogun-image {
  /* Add background color handling */
  
}

#s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 .shg-image-content-wrapper {
      aspect-ratio: 2312/2284;
      min-width: 100%;
      height: auto;
    }

    #s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 .shogun-image-link {
      aspect-ratio: 2312/2284;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2312px;
  }



  img.s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image {
    
    
    
    max-height: 2312px;
  }


.s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image {
  box-sizing: border-box;
}



.s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 {
      --shg-aspect-ratio: calc(2312/2284); 
    }

    .s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image-container {
      position: relative;
    }

    .s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3dc4f6f0-8ad3-4f28-9f82-41c235065bc1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2312px;
    }
  }

}
#s-33709865-6aa9-4de2-a765-9ceb277053f1 {
  margin-left: auto;
margin-right: auto;
max-width: 2272px;
aspect-ratio: 2272/1958;
text-align: center;
}

#s-33709865-6aa9-4de2-a765-9ceb277053f1 {
  margin: 0 !important;
  overflow: visible;
}

#s-33709865-6aa9-4de2-a765-9ceb277053f1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-33709865-6aa9-4de2-a765-9ceb277053f1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-33709865-6aa9-4de2-a765-9ceb277053f1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-33709865-6aa9-4de2-a765-9ceb277053f1 img.shogun-image {
  /* Add background color handling */
  
}

#s-33709865-6aa9-4de2-a765-9ceb277053f1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-33709865-6aa9-4de2-a765-9ceb277053f1 .shg-image-content-wrapper {
      aspect-ratio: 2272/1958;
      min-width: 100%;
      height: auto;
    }

    #s-33709865-6aa9-4de2-a765-9ceb277053f1 .shogun-image-link {
      aspect-ratio: 2272/1958;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-33709865-6aa9-4de2-a765-9ceb277053f1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-33709865-6aa9-4de2-a765-9ceb277053f1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2272px;
  }



  img.s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image {
    
    
    
    max-height: 2272px;
  }


.s-33709865-6aa9-4de2-a765-9ceb277053f1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-33709865-6aa9-4de2-a765-9ceb277053f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image {
  box-sizing: border-box;
}



.s-33709865-6aa9-4de2-a765-9ceb277053f1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-33709865-6aa9-4de2-a765-9ceb277053f1 {
      --shg-aspect-ratio: calc(2272/1958); 
    }

    .s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image-container {
      position: relative;
    }

    .s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-33709865-6aa9-4de2-a765-9ceb277053f1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2272px;
    }
  }

@media (min-width: 1200px){#s-33709865-6aa9-4de2-a765-9ceb277053f1 {
  margin: 0 !important;
  overflow: visible;
}

#s-33709865-6aa9-4de2-a765-9ceb277053f1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-33709865-6aa9-4de2-a765-9ceb277053f1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-33709865-6aa9-4de2-a765-9ceb277053f1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-33709865-6aa9-4de2-a765-9ceb277053f1 img.shogun-image {
  /* Add background color handling */
  
}

#s-33709865-6aa9-4de2-a765-9ceb277053f1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-33709865-6aa9-4de2-a765-9ceb277053f1 .shg-image-content-wrapper {
      aspect-ratio: 2272/1958;
      min-width: 100%;
      height: auto;
    }

    #s-33709865-6aa9-4de2-a765-9ceb277053f1 .shogun-image-link {
      aspect-ratio: 2272/1958;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-33709865-6aa9-4de2-a765-9ceb277053f1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-33709865-6aa9-4de2-a765-9ceb277053f1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2272px;
  }



  img.s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image {
    
    
    
    max-height: 2272px;
  }


.s-33709865-6aa9-4de2-a765-9ceb277053f1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-33709865-6aa9-4de2-a765-9ceb277053f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image {
  box-sizing: border-box;
}



.s-33709865-6aa9-4de2-a765-9ceb277053f1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-33709865-6aa9-4de2-a765-9ceb277053f1 {
      --shg-aspect-ratio: calc(2272/1958); 
    }

    .s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image-container {
      position: relative;
    }

    .s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-33709865-6aa9-4de2-a765-9ceb277053f1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2272px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-33709865-6aa9-4de2-a765-9ceb277053f1 {
  margin: 0 !important;
  overflow: visible;
}

#s-33709865-6aa9-4de2-a765-9ceb277053f1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-33709865-6aa9-4de2-a765-9ceb277053f1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-33709865-6aa9-4de2-a765-9ceb277053f1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-33709865-6aa9-4de2-a765-9ceb277053f1 img.shogun-image {
  /* Add background color handling */
  
}

#s-33709865-6aa9-4de2-a765-9ceb277053f1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-33709865-6aa9-4de2-a765-9ceb277053f1 .shg-image-content-wrapper {
      aspect-ratio: 2272/1958;
      min-width: 100%;
      height: auto;
    }

    #s-33709865-6aa9-4de2-a765-9ceb277053f1 .shogun-image-link {
      aspect-ratio: 2272/1958;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-33709865-6aa9-4de2-a765-9ceb277053f1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-33709865-6aa9-4de2-a765-9ceb277053f1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2272px;
  }



  img.s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image {
    
    
    
    max-height: 2272px;
  }


.s-33709865-6aa9-4de2-a765-9ceb277053f1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-33709865-6aa9-4de2-a765-9ceb277053f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image {
  box-sizing: border-box;
}



.s-33709865-6aa9-4de2-a765-9ceb277053f1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-33709865-6aa9-4de2-a765-9ceb277053f1 {
      --shg-aspect-ratio: calc(2272/1958); 
    }

    .s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image-container {
      position: relative;
    }

    .s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-33709865-6aa9-4de2-a765-9ceb277053f1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2272px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-33709865-6aa9-4de2-a765-9ceb277053f1 {
  margin: 0 !important;
  overflow: visible;
}

#s-33709865-6aa9-4de2-a765-9ceb277053f1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-33709865-6aa9-4de2-a765-9ceb277053f1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-33709865-6aa9-4de2-a765-9ceb277053f1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-33709865-6aa9-4de2-a765-9ceb277053f1 img.shogun-image {
  /* Add background color handling */
  
}

#s-33709865-6aa9-4de2-a765-9ceb277053f1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-33709865-6aa9-4de2-a765-9ceb277053f1 .shg-image-content-wrapper {
      aspect-ratio: 2272/1958;
      min-width: 100%;
      height: auto;
    }

    #s-33709865-6aa9-4de2-a765-9ceb277053f1 .shogun-image-link {
      aspect-ratio: 2272/1958;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-33709865-6aa9-4de2-a765-9ceb277053f1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-33709865-6aa9-4de2-a765-9ceb277053f1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2272px;
  }



  img.s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image {
    
    
    
    max-height: 2272px;
  }


.s-33709865-6aa9-4de2-a765-9ceb277053f1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-33709865-6aa9-4de2-a765-9ceb277053f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image {
  box-sizing: border-box;
}



.s-33709865-6aa9-4de2-a765-9ceb277053f1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-33709865-6aa9-4de2-a765-9ceb277053f1 {
      --shg-aspect-ratio: calc(2272/1958); 
    }

    .s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image-container {
      position: relative;
    }

    .s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-33709865-6aa9-4de2-a765-9ceb277053f1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2272px;
    }
  }

}@media (max-width: 767px){#s-33709865-6aa9-4de2-a765-9ceb277053f1 {
  margin: 0 !important;
  overflow: visible;
}

#s-33709865-6aa9-4de2-a765-9ceb277053f1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-33709865-6aa9-4de2-a765-9ceb277053f1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-33709865-6aa9-4de2-a765-9ceb277053f1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-33709865-6aa9-4de2-a765-9ceb277053f1 img.shogun-image {
  /* Add background color handling */
  
}

#s-33709865-6aa9-4de2-a765-9ceb277053f1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-33709865-6aa9-4de2-a765-9ceb277053f1 .shg-image-content-wrapper {
      aspect-ratio: 2272/1958;
      min-width: 100%;
      height: auto;
    }

    #s-33709865-6aa9-4de2-a765-9ceb277053f1 .shogun-image-link {
      aspect-ratio: 2272/1958;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-33709865-6aa9-4de2-a765-9ceb277053f1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-33709865-6aa9-4de2-a765-9ceb277053f1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 2272px;
  }



  img.s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image {
    
    
    
    max-height: 2272px;
  }


.s-33709865-6aa9-4de2-a765-9ceb277053f1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-33709865-6aa9-4de2-a765-9ceb277053f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image {
  box-sizing: border-box;
}



.s-33709865-6aa9-4de2-a765-9ceb277053f1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-33709865-6aa9-4de2-a765-9ceb277053f1 {
      --shg-aspect-ratio: calc(2272/1958); 
    }

    .s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image-container {
      position: relative;
    }

    .s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-33709865-6aa9-4de2-a765-9ceb277053f1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-33709865-6aa9-4de2-a765-9ceb277053f1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2272px;
    }
  }

}
#s-5b412ffe-d46e-410b-93a5-d1cd2d3aaff8 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(14, 14, 14, 1);
}

#s-5b412ffe-d46e-410b-93a5-d1cd2d3aaff8 .shogun-heading-component h1 {
  color: rgba(245, 243, 243, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



.shogun-accordion-wrapper .shogun-accordion {
  margin-bottom: 0;
  border-radius: 4px;
}

.shogun-accordion {
  margin-bottom: 20px;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.shogun-accordion-wrapper .shogun-accordion + .shogun-accordion {
  margin-top: 5px;
}

.shogun-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.shogun-accordion-heading {
  color: #333;
  border-bottom: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  cursor: pointer;
}

.shogun-accordion-title {
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer;
  text-decoration: none;
  flex: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.shogun-accordion-body {
  display: none;
  opacity: 0;
  transition: opacity 0.5s linear;
}

.shogun-accordion-body.shogun-accordion-active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.shogun-accordion-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1.2em;
}

.shogun-accordion-icon > span {
  transition: 0.3s transform;
  position: absolute;
  right: 0;
  font-size: 1.2em;
}

.shogun-accordion-icon.shogun-icon-chevron > span::after {
  content: "▸";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-chevron
  > span {
  transform: rotate(90deg);
}

.shogun-accordion-icon.shogun-icon-plus > span::after {
  content: "＋";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-plus
  > span {
  transform: rotate(-225deg);
}

#s-40ae8783-1412-4366-bdbf-82456ea962dd {
  margin-left: auto;
margin-right: auto;
}

#s-40ae8783-1412-4366-bdbf-82456ea962dd > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-40ae8783-1412-4366-bdbf-82456ea962dd > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-40ae8783-1412-4366-bdbf-82456ea962dd > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(121, 117, 117, 1);
}

#s-40ae8783-1412-4366-bdbf-82456ea962dd > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-40ae8783-1412-4366-bdbf-82456ea962dd > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(121, 117, 117, 1);
  text-align: left;
  
  
  
  font-size: 16px;
}

#s-40ae8783-1412-4366-bdbf-82456ea962dd > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
#s-4a4bbe19-22e9-417c-a694-0076683d0463 {
  margin-left: auto;
margin-right: auto;
}

#s-679f05c4-3cfc-4f64-9a95-f83e2a0c388c {
  margin-left: auto;
margin-right: auto;
}

#s-82be2a1f-7375-4af7-b415-d6a235df1e26 {
  margin-left: auto;
margin-right: auto;
}

#s-2e47b7fe-3011-4da6-87d9-9a83117c64bb {
  margin-left: auto;
margin-right: auto;
}

#s-ec6a3d16-8f60-4b8f-a7a6-f8bcb5b2f455 {
  margin-left: auto;
margin-right: auto;
}

#s-d7e2b202-4f4e-439f-8fb9-2515d33e92ed {
  margin-left: auto;
margin-right: auto;
}

#s-83a125df-7f1b-430c-83cb-c0719b1ba74f {
  margin-left: auto;
margin-right: auto;
}

#s-ff734da5-a316-4a27-a700-0b4683914d31 {
  margin-left: auto;
margin-right: auto;
}

#s-c2fceca0-52ec-457e-81b1-ef67b57c3c3e {
  margin-left: auto;
margin-right: auto;
}

#s-a32bbfcb-527b-40b7-9121-1c6793c1b853 {
  margin-left: auto;
margin-right: auto;
}

.shg-hr-wrapper {
  padding: 30px 0;
}

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

#s-1121d8a4-4ee2-4bfc-89a0-11a0662bd0fa {
  margin-left: auto;
margin-right: auto;
}

#s-1121d8a4-4ee2-4bfc-89a0-11a0662bd0fa hr {
  border-top: 2px solid #ddd;
}

#s-8052c513-eebe-4820-a170-61a4196b572f {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8052c513-eebe-4820-a170-61a4196b572f .shogun-heading-component h1 {
  
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-161cf8df-dbcf-4ed3-844b-6b990bf7d678 {
  margin-left: auto;
margin-right: auto;
}

.shg-product-image-wrapper a.shogun-product-image-url {
  display: inline-block;
}

.shg-product-image-wrapper img.shogun-image,
.shogun-component img.shogun-image {
  display: inline-block;
  vertical-align: middle;
}

.shg-product-img-placeholder img {
  padding: 3rem;
  background: rgba(0, 0, 0, 0.1);
  max-width: -moz-max-content;
  max-width: max-content;
}

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

.shg-product-image-wrapper.visible {
  display: inline-block;
}

.shg-product-image-wrapper .shg-product-image-wrapper a {
  text-decoration: none !important;
  border-bottom: 0 !important;
}

.shg-product-image-wrapper .shg-image-zoom {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  max-width: 100%;
  min-height: 100%;
}

.shg-c.shg-align-center .shg-image-zoom {
  margin: 0 auto;
}

.shg-c.shg-align-right .shg-image-zoom {
  margin-left: auto;
}

.shg-image-zoom .shg-image-zoom-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform 0.5s ease-out;
  transform: scale(1);
}

/**
  Fix for IE11, as min-width does not works there.
**/
@media screen\0 {
  .shg-product-image-wrapper > .shogun-image {
    width: 100%;
  }
}

#s-e698a03f-e43a-4556-bee9-0d4c59149ee3 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-e698a03f-e43a-4556-bee9-0d4c59149ee3 .shg-image-zoom {
  width:  2674; 
  height:  100%; 
}





@media (min-width: 1200px){

.shg-c#s-e698a03f-e43a-4556-bee9-0d4c59149ee3 .shg-image-zoom {
  width:  2674; 
  height:  100%; 
}





}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-e698a03f-e43a-4556-bee9-0d4c59149ee3 .shg-image-zoom {
  width:  2674; 
  height:  100%; 
}





}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-e698a03f-e43a-4556-bee9-0d4c59149ee3 .shg-image-zoom {
  width:  2674; 
  height:  100%; 
}





}@media (max-width: 767px){

.shg-c#s-e698a03f-e43a-4556-bee9-0d4c59149ee3 .shg-image-zoom {
  width:  2674; 
  height:  100%; 
}





}
#s-6510f181-1e1b-4715-b56e-0fff1f1ffef6 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-6510f181-1e1b-4715-b56e-0fff1f1ffef6:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-6510f181-1e1b-4715-b56e-0fff1f1ffef6:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-6510f181-1e1b-4715-b56e-0fff1f1ffef6-root {
    text-align: center;
  }


#s-6510f181-1e1b-4715-b56e-0fff1f1ffef6.shg-btn {
  color: #ffffff;
  font-size: 25px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-6510f181-1e1b-4715-b56e-0fff1f1ffef6-root {
    text-align: center;
  }


#s-6510f181-1e1b-4715-b56e-0fff1f1ffef6.shg-btn {
  color: #ffffff;
  font-size: 25px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6510f181-1e1b-4715-b56e-0fff1f1ffef6-root {
    text-align: center;
  }


#s-6510f181-1e1b-4715-b56e-0fff1f1ffef6.shg-btn {
  color: #ffffff;
  font-size: 25px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6510f181-1e1b-4715-b56e-0fff1f1ffef6-root {
    text-align: center;
  }


#s-6510f181-1e1b-4715-b56e-0fff1f1ffef6.shg-btn {
  color: #ffffff;
  font-size: 25px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-6510f181-1e1b-4715-b56e-0fff1f1ffef6-root {
    text-align: center;
  }


#s-6510f181-1e1b-4715-b56e-0fff1f1ffef6.shg-btn {
  color: #ffffff;
  font-size: 25px;
  
  
  
  display:  block ;
}
}
#s-2b5e9e23-1c51-4ffd-8ebe-c5ce91c4814b {
  margin-left: auto;
margin-right: auto;
}

#s-2b5e9e23-1c51-4ffd-8ebe-c5ce91c4814b hr {
  border-top: 2px solid #ddd;
}

#s-44e14f34-26c9-4ed9-b523-e304836366f7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-44e14f34-26c9-4ed9-b523-e304836366f7 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 50px;
  
  
  
}


#s-44e14f34-26c9-4ed9-b523-e304836366f7 .shogun-heading-component h1 a {
  color: #000;
}


#s-b0016e5c-95cb-40bd-8cbf-4f8a5b9c51be {
  text-align: center;
}

#s-b0016e5c-95cb-40bd-8cbf-4f8a5b9c51be {
  overflow: hidden;
  
  
}







  #s-b0016e5c-95cb-40bd-8cbf-4f8a5b9c51be img.shogun-image {
    

    
    
    
  }


#s-b0016e5c-95cb-40bd-8cbf-4f8a5b9c51be .shogun-image-content {
  
    justify-content: center;
  
}

#s-9b7b5ccd-ff61-46e1-a933-001844721eab {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9b7b5ccd-ff61-46e1-a933-001844721eab .shogun-heading-component h1 {
  
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-2ce23f37-baf6-4544-b9da-bb1d515ffae3 {
  margin-left: auto;
margin-right: auto;
}

#s-4b62cc89-48d6-4a44-9986-21a18138e667 {
  margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-4b62cc89-48d6-4a44-9986-21a18138e667 {
  display: none;
}
#s-4b62cc89-48d6-4a44-9986-21a18138e667, #wrap-s-4b62cc89-48d6-4a44-9986-21a18138e667, #wrap-content-s-4b62cc89-48d6-4a44-9986-21a18138e667 { display: none !important; }}
#s-4b62cc89-48d6-4a44-9986-21a18138e667 hr {
  border-top: 2px solid #ddd;
}

/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}

.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty:not(.shopify-section *):not([id^="wistia"]) {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}

/* <-- User Content Animations */

.shogun-form-error-msg,
.shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}
