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

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

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

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

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

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

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

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

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

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

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

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

#s-b2796064-bc34-4438-bc69-10bc62a8c807 {
  margin-left: auto;
margin-right: auto;
padding-left: 0%;
padding-right: 0%;
min-height: 50px;
max-width: 82%;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-b2796064-bc34-4438-bc69-10bc62a8c807 {
  max-width: 95%;
}
}







#s-b2796064-bc34-4438-bc69-10bc62a8c807 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b2796064-bc34-4438-bc69-10bc62a8c807.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7504d88d-0a66-4388-b849-d07305a9551b {
  margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
min-height: 50px;
max-width: 1920px;
}








#s-7504d88d-0a66-4388-b849-d07305a9551b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7504d88d-0a66-4388-b849-d07305a9551b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-content {
  display: flex;
  flex-direction: column;
  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;
}

.shg-image-content-wrapper .shogun-image.hover~* {
  z-index: 1;
}
#s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 {
  margin-top: 25px;
margin-bottom: 25px;
max-width: 1920px;
aspect-ratio: 1920/350;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 {
  display: none;
}
#s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428, #wrap-s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428, #wrap-content-s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 { display: none !important; }}@media (max-width: 767px){#s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 {
  display: none;
}
#s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428, #wrap-s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428, #wrap-content-s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 { display: none !important; }}
#s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 {
  margin: 0 !important;
}

#s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428-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-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 25px;
  margin-bottom: 25px;
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  margin-top: 25px;
  margin-bottom: 25px;
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 .shg-image-content-wrapper {
      aspect-ratio: 1920/350;
      min-width: 100%;
      height: auto;
    }

    #s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 .shogun-image-link {
      aspect-ratio: 1920/350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 .shogun-image-content {
  
    justify-content: center;
  
}

.s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shg-align-container {
  display: flex;
  justify-content: center
}

.s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 {
      --shg-aspect-ratio: calc(1920/350); 
    }

    .s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image-container {
      position: relative;
    }

    .s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

@media (min-width: 1200px){#s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 {
  margin: 0 !important;
}

#s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428-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-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 .shg-image-content-wrapper {
      aspect-ratio: 1920/350;
      min-width: 100%;
      height: auto;
    }

    #s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 .shogun-image-link {
      aspect-ratio: 1920/350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 .shogun-image-content {
  
    justify-content: center;
  
}

.s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shg-align-container {
  display: flex;
  justify-content: center
}

.s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 {
      --shg-aspect-ratio: calc(1920/350); 
    }

    .s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image-container {
      position: relative;
    }

    .s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 {
  margin: 0 !important;
}

#s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428-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-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 .shg-image-content-wrapper {
      aspect-ratio: 1920/350;
      min-width: 100%;
      height: auto;
    }

    #s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 .shogun-image-link {
      aspect-ratio: 1920/350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 .shogun-image-content {
  
    justify-content: center;
  
}

.s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shg-align-container {
  display: flex;
  justify-content: center
}

.s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 {
      --shg-aspect-ratio: calc(1920/350); 
    }

    .s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image-container {
      position: relative;
    }

    .s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 {
  margin: 0 !important;
}

#s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428-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-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 .shg-image-content-wrapper {
      aspect-ratio: 1920/350;
      min-width: 100%;
      height: auto;
    }

    #s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 .shogun-image-link {
      aspect-ratio: 1920/350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 .shogun-image-content {
  
    justify-content: center;
  
}

.s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shg-align-container {
  display: flex;
  justify-content: center
}

.s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 {
      --shg-aspect-ratio: calc(1920/350); 
    }

    .s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image-container {
      position: relative;
    }

    .s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (max-width: 767px){#s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 {
  margin: 0 !important;
}

#s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428-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-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 .shg-image-content-wrapper {
      aspect-ratio: 1920/350;
      min-width: 100%;
      height: auto;
    }

    #s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 .shogun-image-link {
      aspect-ratio: 1920/350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 .shogun-image-content {
  
    justify-content: center;
  
}

.s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shg-align-container {
  display: flex;
  justify-content: center
}

.s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 {
      --shg-aspect-ratio: calc(1920/350); 
    }

    .s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image-container {
      position: relative;
    }

    .s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-90194a3f-9ca6-4d8e-87fa-cc2ebc643428 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}
#s-e59ca1dc-4520-4676-9b33-4b13499f81d2 {
  margin-top: 20px;
margin-bottom: 20px;
max-width: 760px;
aspect-ratio: 760/300;
text-align: center;
}
@media (min-width: 1200px){#s-e59ca1dc-4520-4676-9b33-4b13499f81d2 {
  display: none;
}
#s-e59ca1dc-4520-4676-9b33-4b13499f81d2, #wrap-s-e59ca1dc-4520-4676-9b33-4b13499f81d2, #wrap-content-s-e59ca1dc-4520-4676-9b33-4b13499f81d2 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e59ca1dc-4520-4676-9b33-4b13499f81d2 {
  display: none;
}
#s-e59ca1dc-4520-4676-9b33-4b13499f81d2, #wrap-s-e59ca1dc-4520-4676-9b33-4b13499f81d2, #wrap-content-s-e59ca1dc-4520-4676-9b33-4b13499f81d2 { display: none !important; }}
#s-e59ca1dc-4520-4676-9b33-4b13499f81d2 {
  margin: 0 !important;
}

#s-e59ca1dc-4520-4676-9b33-4b13499f81d2-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-e59ca1dc-4520-4676-9b33-4b13499f81d2 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 20px;
  margin-bottom: 20px;
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-e59ca1dc-4520-4676-9b33-4b13499f81d2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  margin-top: 20px;
  margin-bottom: 20px;
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e59ca1dc-4520-4676-9b33-4b13499f81d2 .shg-image-content-wrapper {
      aspect-ratio: 760/300;
      min-width: 100%;
      height: auto;
    }

    #s-e59ca1dc-4520-4676-9b33-4b13499f81d2 .shogun-image-link {
      aspect-ratio: 760/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e59ca1dc-4520-4676-9b33-4b13499f81d2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e59ca1dc-4520-4676-9b33-4b13499f81d2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 760px;
  }



  img.s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image {
    
    
    
    max-height: 760px;
  }


.s-e59ca1dc-4520-4676-9b33-4b13499f81d2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e59ca1dc-4520-4676-9b33-4b13499f81d2 {
      --shg-aspect-ratio: calc(760/300); 
    }

    .s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image-container {
      position: relative;
    }

    .s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e59ca1dc-4520-4676-9b33-4b13499f81d2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 760px;
    }
  }

@media (min-width: 1200px){#s-e59ca1dc-4520-4676-9b33-4b13499f81d2 {
  margin: 0 !important;
}

#s-e59ca1dc-4520-4676-9b33-4b13499f81d2-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-e59ca1dc-4520-4676-9b33-4b13499f81d2 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-e59ca1dc-4520-4676-9b33-4b13499f81d2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e59ca1dc-4520-4676-9b33-4b13499f81d2 .shg-image-content-wrapper {
      aspect-ratio: 760/300;
      min-width: 100%;
      height: auto;
    }

    #s-e59ca1dc-4520-4676-9b33-4b13499f81d2 .shogun-image-link {
      aspect-ratio: 760/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e59ca1dc-4520-4676-9b33-4b13499f81d2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e59ca1dc-4520-4676-9b33-4b13499f81d2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 760px;
  }



  img.s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image {
    
    
    
    max-height: 760px;
  }


.s-e59ca1dc-4520-4676-9b33-4b13499f81d2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e59ca1dc-4520-4676-9b33-4b13499f81d2 {
      --shg-aspect-ratio: calc(760/300); 
    }

    .s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image-container {
      position: relative;
    }

    .s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e59ca1dc-4520-4676-9b33-4b13499f81d2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 760px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-e59ca1dc-4520-4676-9b33-4b13499f81d2 {
  margin: 0 !important;
}

#s-e59ca1dc-4520-4676-9b33-4b13499f81d2-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-e59ca1dc-4520-4676-9b33-4b13499f81d2 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-e59ca1dc-4520-4676-9b33-4b13499f81d2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e59ca1dc-4520-4676-9b33-4b13499f81d2 .shg-image-content-wrapper {
      aspect-ratio: 760/300;
      min-width: 100%;
      height: auto;
    }

    #s-e59ca1dc-4520-4676-9b33-4b13499f81d2 .shogun-image-link {
      aspect-ratio: 760/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e59ca1dc-4520-4676-9b33-4b13499f81d2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e59ca1dc-4520-4676-9b33-4b13499f81d2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 760px;
  }



  img.s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image {
    
    
    
    max-height: 760px;
  }


.s-e59ca1dc-4520-4676-9b33-4b13499f81d2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e59ca1dc-4520-4676-9b33-4b13499f81d2 {
      --shg-aspect-ratio: calc(760/300); 
    }

    .s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image-container {
      position: relative;
    }

    .s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e59ca1dc-4520-4676-9b33-4b13499f81d2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 760px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-e59ca1dc-4520-4676-9b33-4b13499f81d2 {
  margin: 0 !important;
}

#s-e59ca1dc-4520-4676-9b33-4b13499f81d2-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-e59ca1dc-4520-4676-9b33-4b13499f81d2 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-e59ca1dc-4520-4676-9b33-4b13499f81d2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e59ca1dc-4520-4676-9b33-4b13499f81d2 .shg-image-content-wrapper {
      aspect-ratio: 760/300;
      min-width: 100%;
      height: auto;
    }

    #s-e59ca1dc-4520-4676-9b33-4b13499f81d2 .shogun-image-link {
      aspect-ratio: 760/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e59ca1dc-4520-4676-9b33-4b13499f81d2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e59ca1dc-4520-4676-9b33-4b13499f81d2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 760px;
  }



  img.s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image {
    
    
    
    max-height: 760px;
  }


.s-e59ca1dc-4520-4676-9b33-4b13499f81d2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e59ca1dc-4520-4676-9b33-4b13499f81d2 {
      --shg-aspect-ratio: calc(760/300); 
    }

    .s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image-container {
      position: relative;
    }

    .s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e59ca1dc-4520-4676-9b33-4b13499f81d2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 760px;
    }
  }

}@media (max-width: 767px){#s-e59ca1dc-4520-4676-9b33-4b13499f81d2 {
  margin: 0 !important;
}

#s-e59ca1dc-4520-4676-9b33-4b13499f81d2-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-e59ca1dc-4520-4676-9b33-4b13499f81d2 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-e59ca1dc-4520-4676-9b33-4b13499f81d2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e59ca1dc-4520-4676-9b33-4b13499f81d2 .shg-image-content-wrapper {
      aspect-ratio: 760/300;
      min-width: 100%;
      height: auto;
    }

    #s-e59ca1dc-4520-4676-9b33-4b13499f81d2 .shogun-image-link {
      aspect-ratio: 760/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e59ca1dc-4520-4676-9b33-4b13499f81d2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e59ca1dc-4520-4676-9b33-4b13499f81d2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 760px;
  }



  img.s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image {
    
    
    
    max-height: 760px;
  }


.s-e59ca1dc-4520-4676-9b33-4b13499f81d2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e59ca1dc-4520-4676-9b33-4b13499f81d2 {
      --shg-aspect-ratio: calc(760/300); 
    }

    .s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image-container {
      position: relative;
    }

    .s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e59ca1dc-4520-4676-9b33-4b13499f81d2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e59ca1dc-4520-4676-9b33-4b13499f81d2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 760px;
    }
  }

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

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

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

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

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

#s-682dd095-a536-4329-bea9-f5aaa34718b9 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-682dd095-a536-4329-bea9-f5aaa34718b9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-682dd095-a536-4329-bea9-f5aaa34718b9"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 12.5px);
}

[id="s-682dd095-a536-4329-bea9-f5aaa34718b9"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 12.5px);
}

}

@media (min-width: 992px) {
[id="s-682dd095-a536-4329-bea9-f5aaa34718b9"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 12.5px);
}

[id="s-682dd095-a536-4329-bea9-f5aaa34718b9"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 12.5px);
}

}

@media (min-width: 1200px) {
[id="s-682dd095-a536-4329-bea9-f5aaa34718b9"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 12.5px);
}

[id="s-682dd095-a536-4329-bea9-f5aaa34718b9"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 12.5px);
}

}

#s-7b813a16-e97b-47cd-9a1a-b9e9da1862be {
  margin-left: auto;
margin-right: auto;
aspect-ratio: 1028/722;
text-align: left;
}
@media (min-width: 1200px){#s-7b813a16-e97b-47cd-9a1a-b9e9da1862be {
  text-align: left;
}
}
#s-7b813a16-e97b-47cd-9a1a-b9e9da1862be {
  margin: 0 !important;
}

#s-7b813a16-e97b-47cd-9a1a-b9e9da1862be-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-7b813a16-e97b-47cd-9a1a-b9e9da1862be {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-7b813a16-e97b-47cd-9a1a-b9e9da1862be {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7b813a16-e97b-47cd-9a1a-b9e9da1862be .shg-image-content-wrapper {
      aspect-ratio: 1028/722;
      min-width: 100%;
      height: auto;
    }

    #s-7b813a16-e97b-47cd-9a1a-b9e9da1862be .shogun-image-link {
      aspect-ratio: 1028/722;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7b813a16-e97b-47cd-9a1a-b9e9da1862be .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7b813a16-e97b-47cd-9a1a-b9e9da1862be img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image {
    
    
    
    
  }


.s-7b813a16-e97b-47cd-9a1a-b9e9da1862be .shogun-image-content {
  
    justify-content: center;
  
}

.s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7b813a16-e97b-47cd-9a1a-b9e9da1862be {
      --shg-aspect-ratio: calc(1028/722); 
    }

    .s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image-container {
      position: relative;
    }

    .s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7b813a16-e97b-47cd-9a1a-b9e9da1862be img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

@media (min-width: 1200px){#s-7b813a16-e97b-47cd-9a1a-b9e9da1862be {
  margin: 0 !important;
}

#s-7b813a16-e97b-47cd-9a1a-b9e9da1862be-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-7b813a16-e97b-47cd-9a1a-b9e9da1862be {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-7b813a16-e97b-47cd-9a1a-b9e9da1862be {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7b813a16-e97b-47cd-9a1a-b9e9da1862be .shg-image-content-wrapper {
      aspect-ratio: 1028/722;
      min-width: 100%;
      height: auto;
    }

    #s-7b813a16-e97b-47cd-9a1a-b9e9da1862be .shogun-image-link {
      aspect-ratio: 1028/722;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7b813a16-e97b-47cd-9a1a-b9e9da1862be .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7b813a16-e97b-47cd-9a1a-b9e9da1862be img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image {
    
    
    
    
  }


.s-7b813a16-e97b-47cd-9a1a-b9e9da1862be .shogun-image-content {
  
    justify-content: center;
  
}

.s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7b813a16-e97b-47cd-9a1a-b9e9da1862be {
      --shg-aspect-ratio: calc(1028/722); 
    }

    .s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image-container {
      position: relative;
    }

    .s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7b813a16-e97b-47cd-9a1a-b9e9da1862be img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-7b813a16-e97b-47cd-9a1a-b9e9da1862be {
  margin: 0 !important;
}

#s-7b813a16-e97b-47cd-9a1a-b9e9da1862be-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-7b813a16-e97b-47cd-9a1a-b9e9da1862be {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-7b813a16-e97b-47cd-9a1a-b9e9da1862be {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7b813a16-e97b-47cd-9a1a-b9e9da1862be .shg-image-content-wrapper {
      aspect-ratio: 1028/722;
      min-width: 100%;
      height: auto;
    }

    #s-7b813a16-e97b-47cd-9a1a-b9e9da1862be .shogun-image-link {
      aspect-ratio: 1028/722;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7b813a16-e97b-47cd-9a1a-b9e9da1862be .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7b813a16-e97b-47cd-9a1a-b9e9da1862be img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image {
    
    
    
    
  }


.s-7b813a16-e97b-47cd-9a1a-b9e9da1862be .shogun-image-content {
  
    justify-content: center;
  
}

.s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7b813a16-e97b-47cd-9a1a-b9e9da1862be {
      --shg-aspect-ratio: calc(1028/722); 
    }

    .s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image-container {
      position: relative;
    }

    .s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7b813a16-e97b-47cd-9a1a-b9e9da1862be img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-7b813a16-e97b-47cd-9a1a-b9e9da1862be {
  margin: 0 !important;
}

#s-7b813a16-e97b-47cd-9a1a-b9e9da1862be-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-7b813a16-e97b-47cd-9a1a-b9e9da1862be {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-7b813a16-e97b-47cd-9a1a-b9e9da1862be {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7b813a16-e97b-47cd-9a1a-b9e9da1862be .shg-image-content-wrapper {
      aspect-ratio: 1028/722;
      min-width: 100%;
      height: auto;
    }

    #s-7b813a16-e97b-47cd-9a1a-b9e9da1862be .shogun-image-link {
      aspect-ratio: 1028/722;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7b813a16-e97b-47cd-9a1a-b9e9da1862be .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7b813a16-e97b-47cd-9a1a-b9e9da1862be img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image {
    
    
    
    
  }


.s-7b813a16-e97b-47cd-9a1a-b9e9da1862be .shogun-image-content {
  
    justify-content: center;
  
}

.s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7b813a16-e97b-47cd-9a1a-b9e9da1862be {
      --shg-aspect-ratio: calc(1028/722); 
    }

    .s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image-container {
      position: relative;
    }

    .s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7b813a16-e97b-47cd-9a1a-b9e9da1862be img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}@media (max-width: 767px){#s-7b813a16-e97b-47cd-9a1a-b9e9da1862be {
  margin: 0 !important;
}

#s-7b813a16-e97b-47cd-9a1a-b9e9da1862be-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-7b813a16-e97b-47cd-9a1a-b9e9da1862be {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-7b813a16-e97b-47cd-9a1a-b9e9da1862be {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7b813a16-e97b-47cd-9a1a-b9e9da1862be .shg-image-content-wrapper {
      aspect-ratio: 1028/722;
      min-width: 100%;
      height: auto;
    }

    #s-7b813a16-e97b-47cd-9a1a-b9e9da1862be .shogun-image-link {
      aspect-ratio: 1028/722;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7b813a16-e97b-47cd-9a1a-b9e9da1862be .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7b813a16-e97b-47cd-9a1a-b9e9da1862be img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image {
    
    
    
    
  }


.s-7b813a16-e97b-47cd-9a1a-b9e9da1862be .shogun-image-content {
  
    justify-content: center;
  
}

.s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7b813a16-e97b-47cd-9a1a-b9e9da1862be {
      --shg-aspect-ratio: calc(1028/722); 
    }

    .s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image-container {
      position: relative;
    }

    .s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7b813a16-e97b-47cd-9a1a-b9e9da1862be.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7b813a16-e97b-47cd-9a1a-b9e9da1862be img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}
#s-fa9beda9-5253-4864-90fb-121c0e311386 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-fa9beda9-5253-4864-90fb-121c0e311386 {
  display: none;
}
#s-fa9beda9-5253-4864-90fb-121c0e311386, #wrap-s-fa9beda9-5253-4864-90fb-121c0e311386, #wrap-content-s-fa9beda9-5253-4864-90fb-121c0e311386 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-fa9beda9-5253-4864-90fb-121c0e311386 {
  display: none;
}
#s-fa9beda9-5253-4864-90fb-121c0e311386, #wrap-s-fa9beda9-5253-4864-90fb-121c0e311386, #wrap-content-s-fa9beda9-5253-4864-90fb-121c0e311386 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-fa9beda9-5253-4864-90fb-121c0e311386 {
  display: none;
}
#s-fa9beda9-5253-4864-90fb-121c0e311386, #wrap-s-fa9beda9-5253-4864-90fb-121c0e311386, #wrap-content-s-fa9beda9-5253-4864-90fb-121c0e311386 { display: none !important; }}@media (max-width: 767px){#s-fa9beda9-5253-4864-90fb-121c0e311386 {
  margin-top: 20px;
margin-bottom: 20px;
}
}
@media (min-width: 0px) {
[id="s-fa9beda9-5253-4864-90fb-121c0e311386"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-fa9beda9-5253-4864-90fb-121c0e311386"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-fa9beda9-5253-4864-90fb-121c0e311386"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-fa9beda9-5253-4864-90fb-121c0e311386"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-41badeaf-bd51-4df2-99f0-d7e45eec823e {
  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: 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-94ea9652-e07f-4d50-a07f-b46cf2d46211 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}
@media (min-width: 1200px){#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 {
  display: none;
}
#s-94ea9652-e07f-4d50-a07f-b46cf2d46211, #wrap-s-94ea9652-e07f-4d50-a07f-b46cf2d46211, #wrap-content-s-94ea9652-e07f-4d50-a07f-b46cf2d46211 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 {
  display: none;
}
#s-94ea9652-e07f-4d50-a07f-b46cf2d46211, #wrap-s-94ea9652-e07f-4d50-a07f-b46cf2d46211, #wrap-content-s-94ea9652-e07f-4d50-a07f-b46cf2d46211 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 {
  display: none;
}
#s-94ea9652-e07f-4d50-a07f-b46cf2d46211, #wrap-s-94ea9652-e07f-4d50-a07f-b46cf2d46211, #wrap-content-s-94ea9652-e07f-4d50-a07f-b46cf2d46211 { display: none !important; }}@media (max-width: 767px){#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 {
  display: none;
}
#s-94ea9652-e07f-4d50-a07f-b46cf2d46211, #wrap-s-94ea9652-e07f-4d50-a07f-b46cf2d46211, #wrap-content-s-94ea9652-e07f-4d50-a07f-b46cf2d46211 { display: none !important; }}

.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 {
  max-width:  100%;
}

.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 .shg-image-zoom,
.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 img.shogun-image {
  max-width: 1000px !important;
  
}

.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 img.shogun-image,
.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 .shg-image-zoom,
.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 img.shogun-image {
  aspect-ratio: 1/1;
  
  
  
  
  
  
  
}



  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){
.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 {
  max-width:  100%;
}

.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 .shg-image-zoom,
.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 img.shogun-image {
  max-width: 1000px !important;
  
}

.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 img.shogun-image,
.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 .shg-image-zoom,
.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 img.shogun-image {
  aspect-ratio: 1/1;
  
  
  
  
  
  
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 {
  max-width:  100%;
}

.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 .shg-image-zoom,
.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 img.shogun-image {
  max-width: 1000px !important;
  
}

.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 img.shogun-image,
.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 .shg-image-zoom,
.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 img.shogun-image {
  aspect-ratio: 1/1;
  
  
  
  
  
  
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 {
  max-width:  100%;
}

.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 .shg-image-zoom,
.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 img.shogun-image {
  max-width: 1000px !important;
  
}

.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 img.shogun-image,
.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 .shg-image-zoom,
.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 img.shogun-image {
  aspect-ratio: 1/1;
  
  
  
  
  
  
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){
.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 {
  max-width:  100%;
}

.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 .shg-image-zoom,
.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 img.shogun-image {
  max-width: 1000px !important;
  
}

.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 img.shogun-image,
.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 .shg-image-zoom,
.shg-c#s-94ea9652-e07f-4d50-a07f-b46cf2d46211 img.shogun-image {
  aspect-ratio: 1/1;
  
  
  
  
  
  
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}
#s-44233e57-22af-4d22-a4ee-b6c6cee76732 {
  margin-left: auto;
margin-right: auto;
}

#s-856c7c62-50a9-4375-8728-495781fd21ae {
  margin-left: auto;
margin-right: auto;
text-align: left;
}
@media (min-width: 1200px){#s-856c7c62-50a9-4375-8728-495781fd21ae {
  display: none;
}
#s-856c7c62-50a9-4375-8728-495781fd21ae, #wrap-s-856c7c62-50a9-4375-8728-495781fd21ae, #wrap-content-s-856c7c62-50a9-4375-8728-495781fd21ae { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-856c7c62-50a9-4375-8728-495781fd21ae {
  display: none;
}
#s-856c7c62-50a9-4375-8728-495781fd21ae, #wrap-s-856c7c62-50a9-4375-8728-495781fd21ae, #wrap-content-s-856c7c62-50a9-4375-8728-495781fd21ae { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-856c7c62-50a9-4375-8728-495781fd21ae {
  display: none;
}
#s-856c7c62-50a9-4375-8728-495781fd21ae, #wrap-s-856c7c62-50a9-4375-8728-495781fd21ae, #wrap-content-s-856c7c62-50a9-4375-8728-495781fd21ae { display: none !important; }}@media (max-width: 767px){#s-856c7c62-50a9-4375-8728-495781fd21ae {
  display: none;
}
#s-856c7c62-50a9-4375-8728-495781fd21ae, #wrap-s-856c7c62-50a9-4375-8728-495781fd21ae, #wrap-content-s-856c7c62-50a9-4375-8728-495781fd21ae { display: none !important; }}

.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae {
  max-width:  100%;
}

.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae .shg-image-zoom,
.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae img.shogun-image {
  max-width: 1000px !important;
  
}

.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae img.shogun-image,
.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae .shg-image-zoom,
.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae img.shogun-image {
  aspect-ratio: 1/1;
  
  
  
  
  
  
  
}



  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){
.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae {
  max-width:  100%;
}

.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae .shg-image-zoom,
.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae img.shogun-image {
  max-width: 1000px !important;
  
}

.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae img.shogun-image,
.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae .shg-image-zoom,
.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae img.shogun-image {
  aspect-ratio: 1/1;
  
  
  
  
  
  
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae {
  max-width:  100%;
}

.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae .shg-image-zoom,
.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae img.shogun-image {
  max-width: 1000px !important;
  
}

.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae img.shogun-image,
.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae .shg-image-zoom,
.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae img.shogun-image {
  aspect-ratio: 1/1;
  
  
  
  
  
  
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae {
  max-width:  100%;
}

.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae .shg-image-zoom,
.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae img.shogun-image {
  max-width: 1000px !important;
  
}

.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae img.shogun-image,
.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae .shg-image-zoom,
.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae img.shogun-image {
  aspect-ratio: 1/1;
  
  
  
  
  
  
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){
.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae {
  max-width:  100%;
}

.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae .shg-image-zoom,
.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae img.shogun-image {
  max-width: 1000px !important;
  
}

.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae img.shogun-image,
.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae .shg-image-zoom,
.shg-c#s-856c7c62-50a9-4375-8728-495781fd21ae img.shogun-image {
  aspect-ratio: 1/1;
  
  
  
  
  
  
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}
#s-1dca2934-3c32-4852-8894-8f974b6e35f9 {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
aspect-ratio: 1/1;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-1dca2934-3c32-4852-8894-8f974b6e35f9 {
  max-width: 250px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-1dca2934-3c32-4852-8894-8f974b6e35f9 {
  max-width: 150px;
}
}
#s-1dca2934-3c32-4852-8894-8f974b6e35f9 {
  margin: 0 !important;
}

#s-1dca2934-3c32-4852-8894-8f974b6e35f9-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-1dca2934-3c32-4852-8894-8f974b6e35f9 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-1dca2934-3c32-4852-8894-8f974b6e35f9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1dca2934-3c32-4852-8894-8f974b6e35f9 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1dca2934-3c32-4852-8894-8f974b6e35f9 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1dca2934-3c32-4852-8894-8f974b6e35f9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1dca2934-3c32-4852-8894-8f974b6e35f9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 500px;
  }



  img.s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image {
    
    
    
    max-height: 500px;
  }


.s-1dca2934-3c32-4852-8894-8f974b6e35f9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1dca2934-3c32-4852-8894-8f974b6e35f9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1dca2934-3c32-4852-8894-8f974b6e35f9 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image-container {
      position: relative;
    }

    .s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1dca2934-3c32-4852-8894-8f974b6e35f9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 500px;
    }
  }

@media (min-width: 1200px){#s-1dca2934-3c32-4852-8894-8f974b6e35f9 {
  margin: 0 !important;
}

#s-1dca2934-3c32-4852-8894-8f974b6e35f9-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-1dca2934-3c32-4852-8894-8f974b6e35f9 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-1dca2934-3c32-4852-8894-8f974b6e35f9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1dca2934-3c32-4852-8894-8f974b6e35f9 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1dca2934-3c32-4852-8894-8f974b6e35f9 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1dca2934-3c32-4852-8894-8f974b6e35f9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1dca2934-3c32-4852-8894-8f974b6e35f9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 500px;
  }



  img.s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image {
    
    
    
    max-height: 500px;
  }


.s-1dca2934-3c32-4852-8894-8f974b6e35f9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1dca2934-3c32-4852-8894-8f974b6e35f9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1dca2934-3c32-4852-8894-8f974b6e35f9 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image-container {
      position: relative;
    }

    .s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1dca2934-3c32-4852-8894-8f974b6e35f9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-1dca2934-3c32-4852-8894-8f974b6e35f9 {
  margin: 0 !important;
}

#s-1dca2934-3c32-4852-8894-8f974b6e35f9-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-1dca2934-3c32-4852-8894-8f974b6e35f9 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-1dca2934-3c32-4852-8894-8f974b6e35f9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1dca2934-3c32-4852-8894-8f974b6e35f9 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1dca2934-3c32-4852-8894-8f974b6e35f9 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1dca2934-3c32-4852-8894-8f974b6e35f9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1dca2934-3c32-4852-8894-8f974b6e35f9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 500px;
  }



  img.s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image {
    
    
    
    max-height: 500px;
  }


.s-1dca2934-3c32-4852-8894-8f974b6e35f9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1dca2934-3c32-4852-8894-8f974b6e35f9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1dca2934-3c32-4852-8894-8f974b6e35f9 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image-container {
      position: relative;
    }

    .s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1dca2934-3c32-4852-8894-8f974b6e35f9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-1dca2934-3c32-4852-8894-8f974b6e35f9 {
  margin: 0 !important;
}

#s-1dca2934-3c32-4852-8894-8f974b6e35f9-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-1dca2934-3c32-4852-8894-8f974b6e35f9 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-1dca2934-3c32-4852-8894-8f974b6e35f9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1dca2934-3c32-4852-8894-8f974b6e35f9 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1dca2934-3c32-4852-8894-8f974b6e35f9 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1dca2934-3c32-4852-8894-8f974b6e35f9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1dca2934-3c32-4852-8894-8f974b6e35f9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 500px;
  }



  img.s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image {
    
    
    
    max-height: 500px;
  }


.s-1dca2934-3c32-4852-8894-8f974b6e35f9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1dca2934-3c32-4852-8894-8f974b6e35f9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1dca2934-3c32-4852-8894-8f974b6e35f9 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image-container {
      position: relative;
    }

    .s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1dca2934-3c32-4852-8894-8f974b6e35f9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 500px;
    }
  }

}@media (max-width: 767px){#s-1dca2934-3c32-4852-8894-8f974b6e35f9 {
  margin: 0 !important;
}

#s-1dca2934-3c32-4852-8894-8f974b6e35f9-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-1dca2934-3c32-4852-8894-8f974b6e35f9 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-1dca2934-3c32-4852-8894-8f974b6e35f9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1dca2934-3c32-4852-8894-8f974b6e35f9 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1dca2934-3c32-4852-8894-8f974b6e35f9 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1dca2934-3c32-4852-8894-8f974b6e35f9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1dca2934-3c32-4852-8894-8f974b6e35f9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 500px;
  }



  img.s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image {
    
    
    
    max-height: 500px;
  }


.s-1dca2934-3c32-4852-8894-8f974b6e35f9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1dca2934-3c32-4852-8894-8f974b6e35f9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1dca2934-3c32-4852-8894-8f974b6e35f9 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image-container {
      position: relative;
    }

    .s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1dca2934-3c32-4852-8894-8f974b6e35f9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1dca2934-3c32-4852-8894-8f974b6e35f9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 500px;
    }
  }

}
#s-77d7b813-d9b0-4a81-9c7b-44e2772972a1 {
  margin-left: auto;
margin-right: auto;
}

#s-5308553b-0602-4359-8def-6b4451df2616 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}
@media (min-width: 1200px){#s-5308553b-0602-4359-8def-6b4451df2616 {
  display: none;
}
#s-5308553b-0602-4359-8def-6b4451df2616, #wrap-s-5308553b-0602-4359-8def-6b4451df2616, #wrap-content-s-5308553b-0602-4359-8def-6b4451df2616 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5308553b-0602-4359-8def-6b4451df2616 {
  display: none;
}
#s-5308553b-0602-4359-8def-6b4451df2616, #wrap-s-5308553b-0602-4359-8def-6b4451df2616, #wrap-content-s-5308553b-0602-4359-8def-6b4451df2616 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-5308553b-0602-4359-8def-6b4451df2616 {
  display: none;
}
#s-5308553b-0602-4359-8def-6b4451df2616, #wrap-s-5308553b-0602-4359-8def-6b4451df2616, #wrap-content-s-5308553b-0602-4359-8def-6b4451df2616 { display: none !important; }}@media (max-width: 767px){#s-5308553b-0602-4359-8def-6b4451df2616 {
  display: none;
}
#s-5308553b-0602-4359-8def-6b4451df2616, #wrap-s-5308553b-0602-4359-8def-6b4451df2616, #wrap-content-s-5308553b-0602-4359-8def-6b4451df2616 { display: none !important; }}

.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 {
  max-width:  100%;
}

.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 .shg-image-zoom,
.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 img.shogun-image {
  max-width: 1000px !important;
  
}

.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 img.shogun-image,
.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 .shg-image-zoom,
.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 img.shogun-image {
  aspect-ratio: 1/1;
  
  
  
  
  
  
  
}



  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){
.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 {
  max-width:  100%;
}

.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 .shg-image-zoom,
.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 img.shogun-image {
  max-width: 1000px !important;
  
}

.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 img.shogun-image,
.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 .shg-image-zoom,
.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 img.shogun-image {
  aspect-ratio: 1/1;
  
  
  
  
  
  
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 {
  max-width:  100%;
}

.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 .shg-image-zoom,
.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 img.shogun-image {
  max-width: 1000px !important;
  
}

.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 img.shogun-image,
.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 .shg-image-zoom,
.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 img.shogun-image {
  aspect-ratio: 1/1;
  
  
  
  
  
  
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 {
  max-width:  100%;
}

.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 .shg-image-zoom,
.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 img.shogun-image {
  max-width: 1000px !important;
  
}

.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 img.shogun-image,
.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 .shg-image-zoom,
.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 img.shogun-image {
  aspect-ratio: 1/1;
  
  
  
  
  
  
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){
.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 {
  max-width:  100%;
}

.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 .shg-image-zoom,
.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 img.shogun-image {
  max-width: 1000px !important;
  
}

.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 img.shogun-image,
.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 .shg-image-zoom,
.shg-c#s-5308553b-0602-4359-8def-6b4451df2616 img.shogun-image {
  aspect-ratio: 1/1;
  
  
  
  
  
  
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}
#s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
aspect-ratio: 1/1;
text-align: center;
}

#s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd {
  margin: 0 !important;
}

#s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd-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-ff46d680-1d1a-4d6d-aabb-4502c11b28cd {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 500px;
  }



  img.s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image {
    
    
    
    max-height: 500px;
  }


.s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd .shogun-image-content {
  
    justify-content: center;
  
}

.s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image-container {
      position: relative;
    }

    .s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 500px;
    }
  }

@media (min-width: 1200px){#s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd {
  margin: 0 !important;
}

#s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd-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-ff46d680-1d1a-4d6d-aabb-4502c11b28cd {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 500px;
  }



  img.s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image {
    
    
    
    max-height: 500px;
  }


.s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd .shogun-image-content {
  
    justify-content: center;
  
}

.s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image-container {
      position: relative;
    }

    .s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd {
  margin: 0 !important;
}

#s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd-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-ff46d680-1d1a-4d6d-aabb-4502c11b28cd {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 500px;
  }



  img.s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image {
    
    
    
    max-height: 500px;
  }


.s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd .shogun-image-content {
  
    justify-content: center;
  
}

.s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image-container {
      position: relative;
    }

    .s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd {
  margin: 0 !important;
}

#s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd-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-ff46d680-1d1a-4d6d-aabb-4502c11b28cd {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 500px;
  }



  img.s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image {
    
    
    
    max-height: 500px;
  }


.s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd .shogun-image-content {
  
    justify-content: center;
  
}

.s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image-container {
      position: relative;
    }

    .s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 500px;
    }
  }

}@media (max-width: 767px){#s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd {
  margin: 0 !important;
}

#s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd-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-ff46d680-1d1a-4d6d-aabb-4502c11b28cd {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 500px;
  }



  img.s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image {
    
    
    
    max-height: 500px;
  }


.s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd .shogun-image-content {
  
    justify-content: center;
  
}

.s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image-container {
      position: relative;
    }

    .s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ff46d680-1d1a-4d6d-aabb-4502c11b28cd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 500px;
    }
  }

}
#s-86a85184-efa2-4362-b231-87bb7eaa3031 {
  margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-86a85184-efa2-4362-b231-87bb7eaa3031 {
  display: none;
}
#s-86a85184-efa2-4362-b231-87bb7eaa3031, #wrap-s-86a85184-efa2-4362-b231-87bb7eaa3031, #wrap-content-s-86a85184-efa2-4362-b231-87bb7eaa3031 { display: none !important; }}
#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}
@media (min-width: 1200px){#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 {
  display: none;
}
#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76, #wrap-s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76, #wrap-content-s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 {
  display: none;
}
#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76, #wrap-s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76, #wrap-content-s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 {
  display: none;
}
#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76, #wrap-s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76, #wrap-content-s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 { display: none !important; }}@media (max-width: 767px){#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 {
  display: none;
}
#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76, #wrap-s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76, #wrap-content-s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 { display: none !important; }}

.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 {
  max-width:  100%;
}

.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 .shg-image-zoom,
.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 img.shogun-image {
  max-width: 300px !important;
  min-height: 300px !important;
}

.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 img.shogun-image,
.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 .shg-image-zoom,
.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 img.shogun-image {
  aspect-ratio: 1/1;
  
  
  
  
  
  
  
}



  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){
.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 {
  max-width:  100%;
}

.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 .shg-image-zoom,
.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 img.shogun-image {
  max-width: 300px !important;
  min-height: 300px !important;
}

.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 img.shogun-image,
.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 .shg-image-zoom,
.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 img.shogun-image {
  aspect-ratio: 1/1;
  
  
  
  
  
  
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 {
  max-width:  100%;
}

.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 .shg-image-zoom,
.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 img.shogun-image {
  max-width: 300px !important;
  min-height: 300px !important;
}

.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 img.shogun-image,
.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 .shg-image-zoom,
.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 img.shogun-image {
  aspect-ratio: 1/1;
  
  
  
  
  
  
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 {
  max-width:  100%;
}

.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 .shg-image-zoom,
.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 img.shogun-image {
  max-width: 150px !important;
  min-height: 150px !important;
}

.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 img.shogun-image,
.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 .shg-image-zoom,
.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 img.shogun-image {
  aspect-ratio: 1/1;
  
  
  
  
  
  
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){
.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 {
  max-width:  100%;
}

.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 .shg-image-zoom,
.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 img.shogun-image {
  max-width: 300px !important;
  min-height: 300px !important;
}

.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 img.shogun-image,
.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 .shg-image-zoom,
.shg-c#s-5935d210-ba9c-4cf5-bf9d-fad6bb057c76 img.shogun-image {
  aspect-ratio: 1/1;
  
  
  
  
  
  
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}
#s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac {
  margin-right: 0%;
aspect-ratio: 508/347;
text-align: center;
}
@media (min-width: 1200px){#s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac {
  margin-top: 0px;
margin-bottom: 25px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac {
  margin-bottom: 25px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac {
  margin-bottom: 25px;
}
}@media (max-width: 767px){#s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac {
  margin-top: 0px;
margin-bottom: 0px;
display: none;
}
#s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac, #wrap-s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac, #wrap-content-s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac { display: none !important; }}
#s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac {
  margin: 0 !important;
}

#s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac-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-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  margin-right: 0%;
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  margin-right: 0%;
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac .shg-image-content-wrapper {
      aspect-ratio: 508/347;
      min-width: 100%;
      height: auto;
    }

    #s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac .shogun-image-link {
      aspect-ratio: 508/347;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image {
    
    
    
    
  }


.s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac .shogun-image-content {
  
    justify-content: center;
  
}

.s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac {
      --shg-aspect-ratio: calc(508/347); 
    }

    .s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image-container {
      position: relative;
    }

    .s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

@media (min-width: 1200px){#s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac {
  margin: 0 !important;
}

#s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac-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-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 0px;
  margin-bottom: 25px;
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  margin-top: 0px;
  margin-bottom: 25px;
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac .shg-image-content-wrapper {
      aspect-ratio: 508/347;
      min-width: 100%;
      height: auto;
    }

    #s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac .shogun-image-link {
      aspect-ratio: 508/347;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image {
    
    
    
    
  }


.s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac .shogun-image-content {
  
    justify-content: center;
  
}

.s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac {
      --shg-aspect-ratio: calc(508/347); 
    }

    .s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image-container {
      position: relative;
    }

    .s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac {
  margin: 0 !important;
}

#s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac-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-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  margin-bottom: 25px;
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  margin-bottom: 25px;
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac .shg-image-content-wrapper {
      aspect-ratio: 508/347;
      min-width: 100%;
      height: auto;
    }

    #s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac .shogun-image-link {
      aspect-ratio: 508/347;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image {
    
    
    
    
  }


.s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac .shogun-image-content {
  
    justify-content: center;
  
}

.s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac {
      --shg-aspect-ratio: calc(508/347); 
    }

    .s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image-container {
      position: relative;
    }

    .s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac {
  margin: 0 !important;
}

#s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac-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-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  margin-bottom: 25px;
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  margin-bottom: 25px;
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac .shg-image-content-wrapper {
      aspect-ratio: 508/347;
      min-width: 100%;
      height: auto;
    }

    #s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac .shogun-image-link {
      aspect-ratio: 508/347;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image {
    
    
    
    
  }


.s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac .shogun-image-content {
  
    justify-content: center;
  
}

.s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac {
      --shg-aspect-ratio: calc(508/347); 
    }

    .s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image-container {
      position: relative;
    }

    .s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}@media (max-width: 767px){#s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac {
  margin: 0 !important;
}

#s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac-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-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 0px;
  margin-bottom: 0px;
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  margin-top: 0px;
  margin-bottom: 0px;
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac .shg-image-content-wrapper {
      aspect-ratio: 508/347;
      min-width: 100%;
      height: auto;
    }

    #s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac .shogun-image-link {
      aspect-ratio: 508/347;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image {
    
    
    
    
  }


.s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac .shogun-image-content {
  
    justify-content: center;
  
}

.s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac {
      --shg-aspect-ratio: calc(508/347); 
    }

    .s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image-container {
      position: relative;
    }

    .s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ff5a48b8-ffd4-447a-98b2-9f46a7c906ac img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}
#s-94ac9235-91ec-436d-b9f4-f9601b266536 {
  margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-94ac9235-91ec-436d-b9f4-f9601b266536 {
  display: none;
}
#s-94ac9235-91ec-436d-b9f4-f9601b266536, #wrap-s-94ac9235-91ec-436d-b9f4-f9601b266536, #wrap-content-s-94ac9235-91ec-436d-b9f4-f9601b266536 { display: none !important; }}
#s-918a2586-872e-4b71-8b6b-afee12f2ca32 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}
@media (min-width: 1200px){#s-918a2586-872e-4b71-8b6b-afee12f2ca32 {
  display: none;
}
#s-918a2586-872e-4b71-8b6b-afee12f2ca32, #wrap-s-918a2586-872e-4b71-8b6b-afee12f2ca32, #wrap-content-s-918a2586-872e-4b71-8b6b-afee12f2ca32 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-918a2586-872e-4b71-8b6b-afee12f2ca32 {
  display: none;
}
#s-918a2586-872e-4b71-8b6b-afee12f2ca32, #wrap-s-918a2586-872e-4b71-8b6b-afee12f2ca32, #wrap-content-s-918a2586-872e-4b71-8b6b-afee12f2ca32 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-918a2586-872e-4b71-8b6b-afee12f2ca32 {
  display: none;
}
#s-918a2586-872e-4b71-8b6b-afee12f2ca32, #wrap-s-918a2586-872e-4b71-8b6b-afee12f2ca32, #wrap-content-s-918a2586-872e-4b71-8b6b-afee12f2ca32 { display: none !important; }}@media (max-width: 767px){#s-918a2586-872e-4b71-8b6b-afee12f2ca32 {
  display: none;
}
#s-918a2586-872e-4b71-8b6b-afee12f2ca32, #wrap-s-918a2586-872e-4b71-8b6b-afee12f2ca32, #wrap-content-s-918a2586-872e-4b71-8b6b-afee12f2ca32 { display: none !important; }}

.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 {
  max-width:  100%;
}

.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 .shg-image-zoom,
.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 img.shogun-image {
  max-width: 300px !important;
  min-height: 300px !important;
}

.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 img.shogun-image,
.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 .shg-image-zoom,
.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 img.shogun-image {
  aspect-ratio: 1/1;
  
  
  
  
  
  
  
}



  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){
.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 {
  max-width:  100%;
}

.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 .shg-image-zoom,
.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 img.shogun-image {
  max-width: 300px !important;
  min-height: 300px !important;
}

.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 img.shogun-image,
.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 .shg-image-zoom,
.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 img.shogun-image {
  aspect-ratio: 1/1;
  
  
  
  
  
  
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 {
  max-width:  100%;
}

.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 .shg-image-zoom,
.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 img.shogun-image {
  max-width: 300px !important;
  min-height: 300px !important;
}

.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 img.shogun-image,
.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 .shg-image-zoom,
.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 img.shogun-image {
  aspect-ratio: 1/1;
  
  
  
  
  
  
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 {
  max-width:  100%;
}

.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 .shg-image-zoom,
.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 img.shogun-image {
  max-width: 150px !important;
  min-height: 150px !important;
}

.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 img.shogun-image,
.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 .shg-image-zoom,
.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 img.shogun-image {
  aspect-ratio: 1/1;
  
  
  
  
  
  
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){
.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 {
  max-width:  100%;
}

.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 .shg-image-zoom,
.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 img.shogun-image {
  max-width: 300px !important;
  min-height: 300px !important;
}

.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 img.shogun-image,
.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 .shg-image-zoom,
.shg-c#s-918a2586-872e-4b71-8b6b-afee12f2ca32 img.shogun-image {
  aspect-ratio: 1/1;
  
  
  
  
  
  
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}
#s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f {
  margin-left: auto;
margin-right: auto;
aspect-ratio: 508/347;
text-align: center;
}
@media (max-width: 767px){#s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f {
  display: none;
}
#s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f, #wrap-s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f, #wrap-content-s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f { display: none !important; }}
#s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f {
  margin: 0 !important;
}

#s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f-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-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f .shg-image-content-wrapper {
      aspect-ratio: 508/347;
      min-width: 100%;
      height: auto;
    }

    #s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f .shogun-image-link {
      aspect-ratio: 508/347;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image {
    
    
    
    
  }


.s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f .shogun-image-content {
  
    justify-content: center;
  
}

.s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f {
      --shg-aspect-ratio: calc(508/347); 
    }

    .s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image-container {
      position: relative;
    }

    .s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

@media (min-width: 1200px){#s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f {
  margin: 0 !important;
}

#s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f-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-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f .shg-image-content-wrapper {
      aspect-ratio: 508/347;
      min-width: 100%;
      height: auto;
    }

    #s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f .shogun-image-link {
      aspect-ratio: 508/347;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image {
    
    
    
    
  }


.s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f .shogun-image-content {
  
    justify-content: center;
  
}

.s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f {
      --shg-aspect-ratio: calc(508/347); 
    }

    .s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image-container {
      position: relative;
    }

    .s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f {
  margin: 0 !important;
}

#s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f-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-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f .shg-image-content-wrapper {
      aspect-ratio: 508/347;
      min-width: 100%;
      height: auto;
    }

    #s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f .shogun-image-link {
      aspect-ratio: 508/347;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image {
    
    
    
    
  }


.s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f .shogun-image-content {
  
    justify-content: center;
  
}

.s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f {
      --shg-aspect-ratio: calc(508/347); 
    }

    .s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image-container {
      position: relative;
    }

    .s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f {
  margin: 0 !important;
}

#s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f-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-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f .shg-image-content-wrapper {
      aspect-ratio: 508/347;
      min-width: 100%;
      height: auto;
    }

    #s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f .shogun-image-link {
      aspect-ratio: 508/347;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image {
    
    
    
    
  }


.s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f .shogun-image-content {
  
    justify-content: center;
  
}

.s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f {
      --shg-aspect-ratio: calc(508/347); 
    }

    .s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image-container {
      position: relative;
    }

    .s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}@media (max-width: 767px){#s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f {
  margin: 0 !important;
}

#s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f-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-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f .shg-image-content-wrapper {
      aspect-ratio: 508/347;
      min-width: 100%;
      height: auto;
    }

    #s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f .shogun-image-link {
      aspect-ratio: 508/347;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image {
    
    
    
    
  }


.s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f .shogun-image-content {
  
    justify-content: center;
  
}

.s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f {
      --shg-aspect-ratio: calc(508/347); 
    }

    .s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image-container {
      position: relative;
    }

    .s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-569e4fe3-1e33-49d4-a86b-a4eefcf23d8f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}
#s-7c70e42c-f38b-4a41-84e5-f6dfab1e421e {
  margin-top: 0px;
margin-bottom: 0px;
padding-left: 0%;
padding-right: 0%;
min-height: 50px;
}
@media (max-width: 767px){#s-7c70e42c-f38b-4a41-84e5-f6dfab1e421e {
  margin-left: 0%;
margin-right: 0%;
}
}







#s-7c70e42c-f38b-4a41-84e5-f6dfab1e421e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7c70e42c-f38b-4a41-84e5-f6dfab1e421e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a5b253bf-da24-4d01-8128-2f999054aeb8 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}
@media (min-width: 1200px){#s-a5b253bf-da24-4d01-8128-2f999054aeb8 {
  margin-top: 25px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a5b253bf-da24-4d01-8128-2f999054aeb8 {
  margin-top: 25px;
margin-bottom: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-a5b253bf-da24-4d01-8128-2f999054aeb8 {
  margin-top: 25px;
margin-bottom: 0px;
}
}@media (max-width: 767px){#s-a5b253bf-da24-4d01-8128-2f999054aeb8 {
  margin-top: 0px;
margin-bottom: 25px;
}
}
#s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 {
  margin-top: 25px;
margin-bottom: 25px;
max-width: 1920px;
aspect-ratio: 1920/180;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 {
  display: none;
}
#s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613, #wrap-s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613, #wrap-content-s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 { display: none !important; }}@media (max-width: 767px){#s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 {
  display: none;
}
#s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613, #wrap-s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613, #wrap-content-s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 { display: none !important; }}
#s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 {
  margin: 0 !important;
}

#s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613-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-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 25px;
  margin-bottom: 25px;
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  margin-top: 25px;
  margin-bottom: 25px;
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 .shg-image-content-wrapper {
      aspect-ratio: 1920/180;
      min-width: 100%;
      height: auto;
    }

    #s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 .shogun-image-link {
      aspect-ratio: 1920/180;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 {
      --shg-aspect-ratio: calc(1920/180); 
    }

    .s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image-container {
      position: relative;
    }

    .s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

@media (min-width: 1200px){#s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 {
  margin: 0 !important;
}

#s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613-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-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 .shg-image-content-wrapper {
      aspect-ratio: 1920/180;
      min-width: 100%;
      height: auto;
    }

    #s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 .shogun-image-link {
      aspect-ratio: 1920/180;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 {
      --shg-aspect-ratio: calc(1920/180); 
    }

    .s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image-container {
      position: relative;
    }

    .s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 {
  margin: 0 !important;
}

#s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613-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-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 .shg-image-content-wrapper {
      aspect-ratio: 1920/180;
      min-width: 100%;
      height: auto;
    }

    #s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 .shogun-image-link {
      aspect-ratio: 1920/180;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 {
      --shg-aspect-ratio: calc(1920/180); 
    }

    .s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image-container {
      position: relative;
    }

    .s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 {
  margin: 0 !important;
}

#s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613-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-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 .shg-image-content-wrapper {
      aspect-ratio: 1920/180;
      min-width: 100%;
      height: auto;
    }

    #s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 .shogun-image-link {
      aspect-ratio: 1920/180;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 {
      --shg-aspect-ratio: calc(1920/180); 
    }

    .s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image-container {
      position: relative;
    }

    .s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (max-width: 767px){#s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 {
  margin: 0 !important;
}

#s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613-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-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 .shg-image-content-wrapper {
      aspect-ratio: 1920/180;
      min-width: 100%;
      height: auto;
    }

    #s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 .shogun-image-link {
      aspect-ratio: 1920/180;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 {
      --shg-aspect-ratio: calc(1920/180); 
    }

    .s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image-container {
      position: relative;
    }

    .s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9b6aa2f1-c38a-4bda-998c-66f0e5ce7613 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}
#s-77a04bd4-129d-40fc-aa72-3954deb236ab {
  margin-top: 0px;
margin-bottom: 20px;
max-width: 760px;
aspect-ratio: 760/150;
text-align: center;
}
@media (min-width: 1200px){#s-77a04bd4-129d-40fc-aa72-3954deb236ab {
  display: none;
}
#s-77a04bd4-129d-40fc-aa72-3954deb236ab, #wrap-s-77a04bd4-129d-40fc-aa72-3954deb236ab, #wrap-content-s-77a04bd4-129d-40fc-aa72-3954deb236ab { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-77a04bd4-129d-40fc-aa72-3954deb236ab {
  display: none;
}
#s-77a04bd4-129d-40fc-aa72-3954deb236ab, #wrap-s-77a04bd4-129d-40fc-aa72-3954deb236ab, #wrap-content-s-77a04bd4-129d-40fc-aa72-3954deb236ab { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-77a04bd4-129d-40fc-aa72-3954deb236ab {
  margin-top: 20px;
}
}
#s-77a04bd4-129d-40fc-aa72-3954deb236ab {
  margin: 0 !important;
}

#s-77a04bd4-129d-40fc-aa72-3954deb236ab-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-77a04bd4-129d-40fc-aa72-3954deb236ab {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 0px;
  margin-bottom: 20px;
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-77a04bd4-129d-40fc-aa72-3954deb236ab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  margin-top: 0px;
  margin-bottom: 20px;
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-77a04bd4-129d-40fc-aa72-3954deb236ab .shg-image-content-wrapper {
      aspect-ratio: 760/150;
      min-width: 100%;
      height: auto;
    }

    #s-77a04bd4-129d-40fc-aa72-3954deb236ab .shogun-image-link {
      aspect-ratio: 760/150;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-77a04bd4-129d-40fc-aa72-3954deb236ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-77a04bd4-129d-40fc-aa72-3954deb236ab img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 760px;
  }



  img.s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image {
    
    
    
    max-height: 760px;
  }


.s-77a04bd4-129d-40fc-aa72-3954deb236ab .shogun-image-content {
  
    justify-content: center;
  
}

.s-77a04bd4-129d-40fc-aa72-3954deb236ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77a04bd4-129d-40fc-aa72-3954deb236ab {
      --shg-aspect-ratio: calc(760/150); 
    }

    .s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image-container {
      position: relative;
    }

    .s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77a04bd4-129d-40fc-aa72-3954deb236ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 760px;
    }
  }

@media (min-width: 1200px){#s-77a04bd4-129d-40fc-aa72-3954deb236ab {
  margin: 0 !important;
}

#s-77a04bd4-129d-40fc-aa72-3954deb236ab-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-77a04bd4-129d-40fc-aa72-3954deb236ab {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-77a04bd4-129d-40fc-aa72-3954deb236ab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-77a04bd4-129d-40fc-aa72-3954deb236ab .shg-image-content-wrapper {
      aspect-ratio: 760/150;
      min-width: 100%;
      height: auto;
    }

    #s-77a04bd4-129d-40fc-aa72-3954deb236ab .shogun-image-link {
      aspect-ratio: 760/150;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-77a04bd4-129d-40fc-aa72-3954deb236ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-77a04bd4-129d-40fc-aa72-3954deb236ab img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 760px;
  }



  img.s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image {
    
    
    
    max-height: 760px;
  }


.s-77a04bd4-129d-40fc-aa72-3954deb236ab .shogun-image-content {
  
    justify-content: center;
  
}

.s-77a04bd4-129d-40fc-aa72-3954deb236ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77a04bd4-129d-40fc-aa72-3954deb236ab {
      --shg-aspect-ratio: calc(760/150); 
    }

    .s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image-container {
      position: relative;
    }

    .s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77a04bd4-129d-40fc-aa72-3954deb236ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 760px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-77a04bd4-129d-40fc-aa72-3954deb236ab {
  margin: 0 !important;
}

#s-77a04bd4-129d-40fc-aa72-3954deb236ab-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-77a04bd4-129d-40fc-aa72-3954deb236ab {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-77a04bd4-129d-40fc-aa72-3954deb236ab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-77a04bd4-129d-40fc-aa72-3954deb236ab .shg-image-content-wrapper {
      aspect-ratio: 760/150;
      min-width: 100%;
      height: auto;
    }

    #s-77a04bd4-129d-40fc-aa72-3954deb236ab .shogun-image-link {
      aspect-ratio: 760/150;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-77a04bd4-129d-40fc-aa72-3954deb236ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-77a04bd4-129d-40fc-aa72-3954deb236ab img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 760px;
  }



  img.s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image {
    
    
    
    max-height: 760px;
  }


.s-77a04bd4-129d-40fc-aa72-3954deb236ab .shogun-image-content {
  
    justify-content: center;
  
}

.s-77a04bd4-129d-40fc-aa72-3954deb236ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77a04bd4-129d-40fc-aa72-3954deb236ab {
      --shg-aspect-ratio: calc(760/150); 
    }

    .s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image-container {
      position: relative;
    }

    .s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77a04bd4-129d-40fc-aa72-3954deb236ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 760px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-77a04bd4-129d-40fc-aa72-3954deb236ab {
  margin: 0 !important;
}

#s-77a04bd4-129d-40fc-aa72-3954deb236ab-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-77a04bd4-129d-40fc-aa72-3954deb236ab {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 20px;
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-77a04bd4-129d-40fc-aa72-3954deb236ab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  margin-top: 20px;
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-77a04bd4-129d-40fc-aa72-3954deb236ab .shg-image-content-wrapper {
      aspect-ratio: 760/150;
      min-width: 100%;
      height: auto;
    }

    #s-77a04bd4-129d-40fc-aa72-3954deb236ab .shogun-image-link {
      aspect-ratio: 760/150;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-77a04bd4-129d-40fc-aa72-3954deb236ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-77a04bd4-129d-40fc-aa72-3954deb236ab img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 760px;
  }



  img.s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image {
    
    
    
    max-height: 760px;
  }


.s-77a04bd4-129d-40fc-aa72-3954deb236ab .shogun-image-content {
  
    justify-content: center;
  
}

.s-77a04bd4-129d-40fc-aa72-3954deb236ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77a04bd4-129d-40fc-aa72-3954deb236ab {
      --shg-aspect-ratio: calc(760/150); 
    }

    .s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image-container {
      position: relative;
    }

    .s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77a04bd4-129d-40fc-aa72-3954deb236ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 760px;
    }
  }

}@media (max-width: 767px){#s-77a04bd4-129d-40fc-aa72-3954deb236ab {
  margin: 0 !important;
}

#s-77a04bd4-129d-40fc-aa72-3954deb236ab-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-77a04bd4-129d-40fc-aa72-3954deb236ab {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-77a04bd4-129d-40fc-aa72-3954deb236ab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-77a04bd4-129d-40fc-aa72-3954deb236ab .shg-image-content-wrapper {
      aspect-ratio: 760/150;
      min-width: 100%;
      height: auto;
    }

    #s-77a04bd4-129d-40fc-aa72-3954deb236ab .shogun-image-link {
      aspect-ratio: 760/150;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-77a04bd4-129d-40fc-aa72-3954deb236ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-77a04bd4-129d-40fc-aa72-3954deb236ab img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 760px;
  }



  img.s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image {
    
    
    
    max-height: 760px;
  }


.s-77a04bd4-129d-40fc-aa72-3954deb236ab .shogun-image-content {
  
    justify-content: center;
  
}

.s-77a04bd4-129d-40fc-aa72-3954deb236ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77a04bd4-129d-40fc-aa72-3954deb236ab {
      --shg-aspect-ratio: calc(760/150); 
    }

    .s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image-container {
      position: relative;
    }

    .s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77a04bd4-129d-40fc-aa72-3954deb236ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77a04bd4-129d-40fc-aa72-3954deb236ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 760px;
    }
  }

}
#s-644ba69d-ace0-49d4-a294-8ec47942793d {
  margin-left: 0%;
margin-bottom: 25px;
margin-right: 0%;
max-width: 1920px;
}
@media (min-width: 768px) and (max-width: 991px){#s-644ba69d-ace0-49d4-a294-8ec47942793d {
  display: none;
}
#s-644ba69d-ace0-49d4-a294-8ec47942793d, #wrap-s-644ba69d-ace0-49d4-a294-8ec47942793d, #wrap-content-s-644ba69d-ace0-49d4-a294-8ec47942793d { display: none !important; }}@media (max-width: 767px){#s-644ba69d-ace0-49d4-a294-8ec47942793d {
  display: none;
}
#s-644ba69d-ace0-49d4-a294-8ec47942793d, #wrap-s-644ba69d-ace0-49d4-a294-8ec47942793d, #wrap-content-s-644ba69d-ace0-49d4-a294-8ec47942793d { display: none !important; }}
@media (min-width: 0px) {
[id="s-644ba69d-ace0-49d4-a294-8ec47942793d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-644ba69d-ace0-49d4-a294-8ec47942793d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 12.5px);
}

}

@media (min-width: 992px) {
[id="s-644ba69d-ace0-49d4-a294-8ec47942793d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 12.5px);
}

}

@media (min-width: 1200px) {
[id="s-644ba69d-ace0-49d4-a294-8ec47942793d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 12.5px);
}

}

#s-91d6f329-8aec-4640-90b7-d7c4cf920e8a {
  margin-left: 0%;
margin-right: 0%;
aspect-ratio: 750/500;
text-align: center;
}

#s-91d6f329-8aec-4640-90b7-d7c4cf920e8a {
  margin: 0 !important;
}

#s-91d6f329-8aec-4640-90b7-d7c4cf920e8a-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-91d6f329-8aec-4640-90b7-d7c4cf920e8a {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0%;
  margin-right: 0%;
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-91d6f329-8aec-4640-90b7-d7c4cf920e8a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  margin-left: 0%;
  margin-right: 0%;
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-91d6f329-8aec-4640-90b7-d7c4cf920e8a .shg-image-content-wrapper {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }

    #s-91d6f329-8aec-4640-90b7-d7c4cf920e8a .shogun-image-link {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-91d6f329-8aec-4640-90b7-d7c4cf920e8a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-91d6f329-8aec-4640-90b7-d7c4cf920e8a img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image {
    
    
    
    
  }


.s-91d6f329-8aec-4640-90b7-d7c4cf920e8a .shogun-image-content {
  
    justify-content: center;
  
}

.s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-91d6f329-8aec-4640-90b7-d7c4cf920e8a {
      --shg-aspect-ratio: calc(750/500); 
    }

    .s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image-container {
      position: relative;
    }

    .s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-91d6f329-8aec-4640-90b7-d7c4cf920e8a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

@media (min-width: 1200px){#s-91d6f329-8aec-4640-90b7-d7c4cf920e8a {
  margin: 0 !important;
}

#s-91d6f329-8aec-4640-90b7-d7c4cf920e8a-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-91d6f329-8aec-4640-90b7-d7c4cf920e8a {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-91d6f329-8aec-4640-90b7-d7c4cf920e8a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-91d6f329-8aec-4640-90b7-d7c4cf920e8a .shg-image-content-wrapper {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }

    #s-91d6f329-8aec-4640-90b7-d7c4cf920e8a .shogun-image-link {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-91d6f329-8aec-4640-90b7-d7c4cf920e8a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-91d6f329-8aec-4640-90b7-d7c4cf920e8a img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image {
    
    
    
    
  }


.s-91d6f329-8aec-4640-90b7-d7c4cf920e8a .shogun-image-content {
  
    justify-content: center;
  
}

.s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-91d6f329-8aec-4640-90b7-d7c4cf920e8a {
      --shg-aspect-ratio: calc(750/500); 
    }

    .s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image-container {
      position: relative;
    }

    .s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-91d6f329-8aec-4640-90b7-d7c4cf920e8a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-91d6f329-8aec-4640-90b7-d7c4cf920e8a {
  margin: 0 !important;
}

#s-91d6f329-8aec-4640-90b7-d7c4cf920e8a-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-91d6f329-8aec-4640-90b7-d7c4cf920e8a {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-91d6f329-8aec-4640-90b7-d7c4cf920e8a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-91d6f329-8aec-4640-90b7-d7c4cf920e8a .shg-image-content-wrapper {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }

    #s-91d6f329-8aec-4640-90b7-d7c4cf920e8a .shogun-image-link {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-91d6f329-8aec-4640-90b7-d7c4cf920e8a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-91d6f329-8aec-4640-90b7-d7c4cf920e8a img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image {
    
    
    
    
  }


.s-91d6f329-8aec-4640-90b7-d7c4cf920e8a .shogun-image-content {
  
    justify-content: center;
  
}

.s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-91d6f329-8aec-4640-90b7-d7c4cf920e8a {
      --shg-aspect-ratio: calc(750/500); 
    }

    .s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image-container {
      position: relative;
    }

    .s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-91d6f329-8aec-4640-90b7-d7c4cf920e8a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-91d6f329-8aec-4640-90b7-d7c4cf920e8a {
  margin: 0 !important;
}

#s-91d6f329-8aec-4640-90b7-d7c4cf920e8a-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-91d6f329-8aec-4640-90b7-d7c4cf920e8a {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-91d6f329-8aec-4640-90b7-d7c4cf920e8a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-91d6f329-8aec-4640-90b7-d7c4cf920e8a .shg-image-content-wrapper {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }

    #s-91d6f329-8aec-4640-90b7-d7c4cf920e8a .shogun-image-link {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-91d6f329-8aec-4640-90b7-d7c4cf920e8a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-91d6f329-8aec-4640-90b7-d7c4cf920e8a img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image {
    
    
    
    
  }


.s-91d6f329-8aec-4640-90b7-d7c4cf920e8a .shogun-image-content {
  
    justify-content: center;
  
}

.s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-91d6f329-8aec-4640-90b7-d7c4cf920e8a {
      --shg-aspect-ratio: calc(750/500); 
    }

    .s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image-container {
      position: relative;
    }

    .s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-91d6f329-8aec-4640-90b7-d7c4cf920e8a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}@media (max-width: 767px){#s-91d6f329-8aec-4640-90b7-d7c4cf920e8a {
  margin: 0 !important;
}

#s-91d6f329-8aec-4640-90b7-d7c4cf920e8a-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-91d6f329-8aec-4640-90b7-d7c4cf920e8a {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-91d6f329-8aec-4640-90b7-d7c4cf920e8a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-91d6f329-8aec-4640-90b7-d7c4cf920e8a .shg-image-content-wrapper {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }

    #s-91d6f329-8aec-4640-90b7-d7c4cf920e8a .shogun-image-link {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-91d6f329-8aec-4640-90b7-d7c4cf920e8a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-91d6f329-8aec-4640-90b7-d7c4cf920e8a img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image {
    
    
    
    
  }


.s-91d6f329-8aec-4640-90b7-d7c4cf920e8a .shogun-image-content {
  
    justify-content: center;
  
}

.s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-91d6f329-8aec-4640-90b7-d7c4cf920e8a {
      --shg-aspect-ratio: calc(750/500); 
    }

    .s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image-container {
      position: relative;
    }

    .s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-91d6f329-8aec-4640-90b7-d7c4cf920e8a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-91d6f329-8aec-4640-90b7-d7c4cf920e8a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}
#s-f037d12a-9213-4060-9754-c448734c8547 {
  margin-left: 0%;
margin-right: 0%;
aspect-ratio: 750/500;
text-align: center;
}

#s-f037d12a-9213-4060-9754-c448734c8547 {
  margin: 0 !important;
}

#s-f037d12a-9213-4060-9754-c448734c8547-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-f037d12a-9213-4060-9754-c448734c8547 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0%;
  margin-right: 0%;
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-f037d12a-9213-4060-9754-c448734c8547 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  margin-left: 0%;
  margin-right: 0%;
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f037d12a-9213-4060-9754-c448734c8547 .shg-image-content-wrapper {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }

    #s-f037d12a-9213-4060-9754-c448734c8547 .shogun-image-link {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f037d12a-9213-4060-9754-c448734c8547 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f037d12a-9213-4060-9754-c448734c8547.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f037d12a-9213-4060-9754-c448734c8547 img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-f037d12a-9213-4060-9754-c448734c8547.shogun-image {
    
    
    
    
  }


.s-f037d12a-9213-4060-9754-c448734c8547 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f037d12a-9213-4060-9754-c448734c8547.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f037d12a-9213-4060-9754-c448734c8547.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f037d12a-9213-4060-9754-c448734c8547.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f037d12a-9213-4060-9754-c448734c8547 {
      --shg-aspect-ratio: calc(750/500); 
    }

    .s-f037d12a-9213-4060-9754-c448734c8547.shogun-image-container {
      position: relative;
    }

    .s-f037d12a-9213-4060-9754-c448734c8547.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f037d12a-9213-4060-9754-c448734c8547.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f037d12a-9213-4060-9754-c448734c8547 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

@media (min-width: 1200px){#s-f037d12a-9213-4060-9754-c448734c8547 {
  margin: 0 !important;
}

#s-f037d12a-9213-4060-9754-c448734c8547-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-f037d12a-9213-4060-9754-c448734c8547 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-f037d12a-9213-4060-9754-c448734c8547 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f037d12a-9213-4060-9754-c448734c8547 .shg-image-content-wrapper {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }

    #s-f037d12a-9213-4060-9754-c448734c8547 .shogun-image-link {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f037d12a-9213-4060-9754-c448734c8547 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f037d12a-9213-4060-9754-c448734c8547.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f037d12a-9213-4060-9754-c448734c8547 img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-f037d12a-9213-4060-9754-c448734c8547.shogun-image {
    
    
    
    
  }


.s-f037d12a-9213-4060-9754-c448734c8547 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f037d12a-9213-4060-9754-c448734c8547.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f037d12a-9213-4060-9754-c448734c8547.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f037d12a-9213-4060-9754-c448734c8547.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f037d12a-9213-4060-9754-c448734c8547 {
      --shg-aspect-ratio: calc(750/500); 
    }

    .s-f037d12a-9213-4060-9754-c448734c8547.shogun-image-container {
      position: relative;
    }

    .s-f037d12a-9213-4060-9754-c448734c8547.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f037d12a-9213-4060-9754-c448734c8547.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f037d12a-9213-4060-9754-c448734c8547 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-f037d12a-9213-4060-9754-c448734c8547 {
  margin: 0 !important;
}

#s-f037d12a-9213-4060-9754-c448734c8547-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-f037d12a-9213-4060-9754-c448734c8547 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-f037d12a-9213-4060-9754-c448734c8547 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f037d12a-9213-4060-9754-c448734c8547 .shg-image-content-wrapper {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }

    #s-f037d12a-9213-4060-9754-c448734c8547 .shogun-image-link {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f037d12a-9213-4060-9754-c448734c8547 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f037d12a-9213-4060-9754-c448734c8547.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f037d12a-9213-4060-9754-c448734c8547 img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-f037d12a-9213-4060-9754-c448734c8547.shogun-image {
    
    
    
    
  }


.s-f037d12a-9213-4060-9754-c448734c8547 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f037d12a-9213-4060-9754-c448734c8547.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f037d12a-9213-4060-9754-c448734c8547.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f037d12a-9213-4060-9754-c448734c8547.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f037d12a-9213-4060-9754-c448734c8547 {
      --shg-aspect-ratio: calc(750/500); 
    }

    .s-f037d12a-9213-4060-9754-c448734c8547.shogun-image-container {
      position: relative;
    }

    .s-f037d12a-9213-4060-9754-c448734c8547.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f037d12a-9213-4060-9754-c448734c8547.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f037d12a-9213-4060-9754-c448734c8547 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-f037d12a-9213-4060-9754-c448734c8547 {
  margin: 0 !important;
}

#s-f037d12a-9213-4060-9754-c448734c8547-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-f037d12a-9213-4060-9754-c448734c8547 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-f037d12a-9213-4060-9754-c448734c8547 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f037d12a-9213-4060-9754-c448734c8547 .shg-image-content-wrapper {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }

    #s-f037d12a-9213-4060-9754-c448734c8547 .shogun-image-link {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f037d12a-9213-4060-9754-c448734c8547 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f037d12a-9213-4060-9754-c448734c8547.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f037d12a-9213-4060-9754-c448734c8547 img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-f037d12a-9213-4060-9754-c448734c8547.shogun-image {
    
    
    
    
  }


.s-f037d12a-9213-4060-9754-c448734c8547 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f037d12a-9213-4060-9754-c448734c8547.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f037d12a-9213-4060-9754-c448734c8547.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f037d12a-9213-4060-9754-c448734c8547.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f037d12a-9213-4060-9754-c448734c8547 {
      --shg-aspect-ratio: calc(750/500); 
    }

    .s-f037d12a-9213-4060-9754-c448734c8547.shogun-image-container {
      position: relative;
    }

    .s-f037d12a-9213-4060-9754-c448734c8547.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f037d12a-9213-4060-9754-c448734c8547.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f037d12a-9213-4060-9754-c448734c8547 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}@media (max-width: 767px){#s-f037d12a-9213-4060-9754-c448734c8547 {
  margin: 0 !important;
}

#s-f037d12a-9213-4060-9754-c448734c8547-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-f037d12a-9213-4060-9754-c448734c8547 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-f037d12a-9213-4060-9754-c448734c8547 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f037d12a-9213-4060-9754-c448734c8547 .shg-image-content-wrapper {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }

    #s-f037d12a-9213-4060-9754-c448734c8547 .shogun-image-link {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f037d12a-9213-4060-9754-c448734c8547 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f037d12a-9213-4060-9754-c448734c8547.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f037d12a-9213-4060-9754-c448734c8547 img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-f037d12a-9213-4060-9754-c448734c8547.shogun-image {
    
    
    
    
  }


.s-f037d12a-9213-4060-9754-c448734c8547 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f037d12a-9213-4060-9754-c448734c8547.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f037d12a-9213-4060-9754-c448734c8547.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f037d12a-9213-4060-9754-c448734c8547.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f037d12a-9213-4060-9754-c448734c8547 {
      --shg-aspect-ratio: calc(750/500); 
    }

    .s-f037d12a-9213-4060-9754-c448734c8547.shogun-image-container {
      position: relative;
    }

    .s-f037d12a-9213-4060-9754-c448734c8547.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f037d12a-9213-4060-9754-c448734c8547.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f037d12a-9213-4060-9754-c448734c8547 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}
#s-2113af13-920a-43ac-a231-1746ee923f2f {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
}
@media (min-width: 1200px){#s-2113af13-920a-43ac-a231-1746ee923f2f {
  display: none;
}
#s-2113af13-920a-43ac-a231-1746ee923f2f, #wrap-s-2113af13-920a-43ac-a231-1746ee923f2f, #wrap-content-s-2113af13-920a-43ac-a231-1746ee923f2f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2113af13-920a-43ac-a231-1746ee923f2f {
  display: none;
}
#s-2113af13-920a-43ac-a231-1746ee923f2f, #wrap-s-2113af13-920a-43ac-a231-1746ee923f2f, #wrap-content-s-2113af13-920a-43ac-a231-1746ee923f2f { display: none !important; }}
@media (min-width: 0px) {
[id="s-2113af13-920a-43ac-a231-1746ee923f2f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-2113af13-920a-43ac-a231-1746ee923f2f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-2113af13-920a-43ac-a231-1746ee923f2f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-2113af13-920a-43ac-a231-1746ee923f2f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 {
  margin-left: auto;
margin-right: auto;
max-width: 750px;
aspect-ratio: 1/1;
text-align: center;
}
@media (min-width: 1200px){#s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 {
  display: none;
}
#s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5, #wrap-s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5, #wrap-content-s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 {
  display: none;
}
#s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5, #wrap-s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5, #wrap-content-s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 { display: none !important; }}
#s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 {
  margin: 0 !important;
}

#s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5-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-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 750px;
  }



  img.s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image {
    
    
    
    max-height: 750px;
  }


.s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image-container {
      position: relative;
    }

    .s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 750px;
    }
  }

@media (min-width: 1200px){#s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 {
  margin: 0 !important;
}

#s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5-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-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 750px;
  }



  img.s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image {
    
    
    
    max-height: 750px;
  }


.s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image-container {
      position: relative;
    }

    .s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 750px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 {
  margin: 0 !important;
}

#s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5-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-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 750px;
  }



  img.s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image {
    
    
    
    max-height: 750px;
  }


.s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image-container {
      position: relative;
    }

    .s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 750px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 {
  margin: 0 !important;
}

#s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5-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-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 750px;
  }



  img.s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image {
    
    
    
    max-height: 750px;
  }


.s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image-container {
      position: relative;
    }

    .s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 750px;
    }
  }

}@media (max-width: 767px){#s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 {
  margin: 0 !important;
}

#s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5-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-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 750px;
  }



  img.s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image {
    
    
    
    max-height: 750px;
  }


.s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image-container {
      position: relative;
    }

    .s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7f3abbd0-5562-41e0-bf7e-4703f0814fd5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 750px;
    }
  }

}
#s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 {
  margin-left: auto;
margin-right: auto;
max-width: 750px;
aspect-ratio: 1/1;
text-align: center;
}
@media (min-width: 1200px){#s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 {
  display: none;
}
#s-671ad53f-e35b-4f6c-a6e1-1cd536712e40, #wrap-s-671ad53f-e35b-4f6c-a6e1-1cd536712e40, #wrap-content-s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 {
  display: none;
}
#s-671ad53f-e35b-4f6c-a6e1-1cd536712e40, #wrap-s-671ad53f-e35b-4f6c-a6e1-1cd536712e40, #wrap-content-s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 { display: none !important; }}
#s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 {
  margin: 0 !important;
}

#s-671ad53f-e35b-4f6c-a6e1-1cd536712e40-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-671ad53f-e35b-4f6c-a6e1-1cd536712e40 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 750px;
  }



  img.s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image {
    
    
    
    max-height: 750px;
  }


.s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 .shogun-image-content {
  
    justify-content: center;
  
}

.s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shg-align-container {
  display: flex;
  justify-content: center
}

.s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image-container {
      position: relative;
    }

    .s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 750px;
    }
  }

@media (min-width: 1200px){#s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 {
  margin: 0 !important;
}

#s-671ad53f-e35b-4f6c-a6e1-1cd536712e40-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-671ad53f-e35b-4f6c-a6e1-1cd536712e40 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 750px;
  }



  img.s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image {
    
    
    
    max-height: 750px;
  }


.s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 .shogun-image-content {
  
    justify-content: center;
  
}

.s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shg-align-container {
  display: flex;
  justify-content: center
}

.s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image-container {
      position: relative;
    }

    .s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 750px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 {
  margin: 0 !important;
}

#s-671ad53f-e35b-4f6c-a6e1-1cd536712e40-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-671ad53f-e35b-4f6c-a6e1-1cd536712e40 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 750px;
  }



  img.s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image {
    
    
    
    max-height: 750px;
  }


.s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 .shogun-image-content {
  
    justify-content: center;
  
}

.s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shg-align-container {
  display: flex;
  justify-content: center
}

.s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image-container {
      position: relative;
    }

    .s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 750px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 {
  margin: 0 !important;
}

#s-671ad53f-e35b-4f6c-a6e1-1cd536712e40-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-671ad53f-e35b-4f6c-a6e1-1cd536712e40 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 750px;
  }



  img.s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image {
    
    
    
    max-height: 750px;
  }


.s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 .shogun-image-content {
  
    justify-content: center;
  
}

.s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shg-align-container {
  display: flex;
  justify-content: center
}

.s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image-container {
      position: relative;
    }

    .s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 750px;
    }
  }

}@media (max-width: 767px){#s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 {
  margin: 0 !important;
}

#s-671ad53f-e35b-4f6c-a6e1-1cd536712e40-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-671ad53f-e35b-4f6c-a6e1-1cd536712e40 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 750px;
  }



  img.s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image {
    
    
    
    max-height: 750px;
  }


.s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 .shogun-image-content {
  
    justify-content: center;
  
}

.s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shg-align-container {
  display: flex;
  justify-content: center
}

.s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image-container {
      position: relative;
    }

    .s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-671ad53f-e35b-4f6c-a6e1-1cd536712e40.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-671ad53f-e35b-4f6c-a6e1-1cd536712e40 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 750px;
    }
  }

}
#s-15922560-7384-4006-b1ef-b73772eecfb6 {
  margin-top: 0px;
margin-bottom: 25px;
max-width: 1920px;
aspect-ratio: 1920/180;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-15922560-7384-4006-b1ef-b73772eecfb6 {
  display: none;
}
#s-15922560-7384-4006-b1ef-b73772eecfb6, #wrap-s-15922560-7384-4006-b1ef-b73772eecfb6, #wrap-content-s-15922560-7384-4006-b1ef-b73772eecfb6 { display: none !important; }}@media (max-width: 767px){#s-15922560-7384-4006-b1ef-b73772eecfb6 {
  display: none;
}
#s-15922560-7384-4006-b1ef-b73772eecfb6, #wrap-s-15922560-7384-4006-b1ef-b73772eecfb6, #wrap-content-s-15922560-7384-4006-b1ef-b73772eecfb6 { display: none !important; }}
#s-15922560-7384-4006-b1ef-b73772eecfb6 {
  margin: 0 !important;
}

#s-15922560-7384-4006-b1ef-b73772eecfb6-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-15922560-7384-4006-b1ef-b73772eecfb6 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 0px;
  margin-bottom: 25px;
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-15922560-7384-4006-b1ef-b73772eecfb6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  margin-top: 0px;
  margin-bottom: 25px;
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-15922560-7384-4006-b1ef-b73772eecfb6 .shg-image-content-wrapper {
      aspect-ratio: 1920/180;
      min-width: 100%;
      height: auto;
    }

    #s-15922560-7384-4006-b1ef-b73772eecfb6 .shogun-image-link {
      aspect-ratio: 1920/180;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-15922560-7384-4006-b1ef-b73772eecfb6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-15922560-7384-4006-b1ef-b73772eecfb6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-15922560-7384-4006-b1ef-b73772eecfb6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-15922560-7384-4006-b1ef-b73772eecfb6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-15922560-7384-4006-b1ef-b73772eecfb6 {
      --shg-aspect-ratio: calc(1920/180); 
    }

    .s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image-container {
      position: relative;
    }

    .s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-15922560-7384-4006-b1ef-b73772eecfb6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

@media (min-width: 1200px){#s-15922560-7384-4006-b1ef-b73772eecfb6 {
  margin: 0 !important;
}

#s-15922560-7384-4006-b1ef-b73772eecfb6-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-15922560-7384-4006-b1ef-b73772eecfb6 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-15922560-7384-4006-b1ef-b73772eecfb6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-15922560-7384-4006-b1ef-b73772eecfb6 .shg-image-content-wrapper {
      aspect-ratio: 1920/180;
      min-width: 100%;
      height: auto;
    }

    #s-15922560-7384-4006-b1ef-b73772eecfb6 .shogun-image-link {
      aspect-ratio: 1920/180;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-15922560-7384-4006-b1ef-b73772eecfb6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-15922560-7384-4006-b1ef-b73772eecfb6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-15922560-7384-4006-b1ef-b73772eecfb6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-15922560-7384-4006-b1ef-b73772eecfb6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-15922560-7384-4006-b1ef-b73772eecfb6 {
      --shg-aspect-ratio: calc(1920/180); 
    }

    .s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image-container {
      position: relative;
    }

    .s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-15922560-7384-4006-b1ef-b73772eecfb6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-15922560-7384-4006-b1ef-b73772eecfb6 {
  margin: 0 !important;
}

#s-15922560-7384-4006-b1ef-b73772eecfb6-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-15922560-7384-4006-b1ef-b73772eecfb6 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-15922560-7384-4006-b1ef-b73772eecfb6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-15922560-7384-4006-b1ef-b73772eecfb6 .shg-image-content-wrapper {
      aspect-ratio: 1920/180;
      min-width: 100%;
      height: auto;
    }

    #s-15922560-7384-4006-b1ef-b73772eecfb6 .shogun-image-link {
      aspect-ratio: 1920/180;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-15922560-7384-4006-b1ef-b73772eecfb6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-15922560-7384-4006-b1ef-b73772eecfb6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-15922560-7384-4006-b1ef-b73772eecfb6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-15922560-7384-4006-b1ef-b73772eecfb6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-15922560-7384-4006-b1ef-b73772eecfb6 {
      --shg-aspect-ratio: calc(1920/180); 
    }

    .s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image-container {
      position: relative;
    }

    .s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-15922560-7384-4006-b1ef-b73772eecfb6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-15922560-7384-4006-b1ef-b73772eecfb6 {
  margin: 0 !important;
}

#s-15922560-7384-4006-b1ef-b73772eecfb6-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-15922560-7384-4006-b1ef-b73772eecfb6 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-15922560-7384-4006-b1ef-b73772eecfb6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-15922560-7384-4006-b1ef-b73772eecfb6 .shg-image-content-wrapper {
      aspect-ratio: 1920/180;
      min-width: 100%;
      height: auto;
    }

    #s-15922560-7384-4006-b1ef-b73772eecfb6 .shogun-image-link {
      aspect-ratio: 1920/180;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-15922560-7384-4006-b1ef-b73772eecfb6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-15922560-7384-4006-b1ef-b73772eecfb6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-15922560-7384-4006-b1ef-b73772eecfb6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-15922560-7384-4006-b1ef-b73772eecfb6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-15922560-7384-4006-b1ef-b73772eecfb6 {
      --shg-aspect-ratio: calc(1920/180); 
    }

    .s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image-container {
      position: relative;
    }

    .s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-15922560-7384-4006-b1ef-b73772eecfb6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (max-width: 767px){#s-15922560-7384-4006-b1ef-b73772eecfb6 {
  margin: 0 !important;
}

#s-15922560-7384-4006-b1ef-b73772eecfb6-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-15922560-7384-4006-b1ef-b73772eecfb6 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-15922560-7384-4006-b1ef-b73772eecfb6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-15922560-7384-4006-b1ef-b73772eecfb6 .shg-image-content-wrapper {
      aspect-ratio: 1920/180;
      min-width: 100%;
      height: auto;
    }

    #s-15922560-7384-4006-b1ef-b73772eecfb6 .shogun-image-link {
      aspect-ratio: 1920/180;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-15922560-7384-4006-b1ef-b73772eecfb6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-15922560-7384-4006-b1ef-b73772eecfb6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-15922560-7384-4006-b1ef-b73772eecfb6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-15922560-7384-4006-b1ef-b73772eecfb6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-15922560-7384-4006-b1ef-b73772eecfb6 {
      --shg-aspect-ratio: calc(1920/180); 
    }

    .s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image-container {
      position: relative;
    }

    .s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-15922560-7384-4006-b1ef-b73772eecfb6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-15922560-7384-4006-b1ef-b73772eecfb6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}
#s-0d4350e2-bb53-457d-9af9-c5a459b8ed7f {
  margin-left: 0%;
margin-bottom: 25px;
margin-right: 0%;
}
@media (min-width: 768px) and (max-width: 991px){#s-0d4350e2-bb53-457d-9af9-c5a459b8ed7f {
  display: none;
}
#s-0d4350e2-bb53-457d-9af9-c5a459b8ed7f, #wrap-s-0d4350e2-bb53-457d-9af9-c5a459b8ed7f, #wrap-content-s-0d4350e2-bb53-457d-9af9-c5a459b8ed7f { display: none !important; }}@media (max-width: 767px){#s-0d4350e2-bb53-457d-9af9-c5a459b8ed7f {
  display: none;
}
#s-0d4350e2-bb53-457d-9af9-c5a459b8ed7f, #wrap-s-0d4350e2-bb53-457d-9af9-c5a459b8ed7f, #wrap-content-s-0d4350e2-bb53-457d-9af9-c5a459b8ed7f { display: none !important; }}
@media (min-width: 0px) {
[id="s-0d4350e2-bb53-457d-9af9-c5a459b8ed7f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0d4350e2-bb53-457d-9af9-c5a459b8ed7f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 12.5px);
}

}

@media (min-width: 992px) {
[id="s-0d4350e2-bb53-457d-9af9-c5a459b8ed7f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 12.5px);
}

}

@media (min-width: 1200px) {
[id="s-0d4350e2-bb53-457d-9af9-c5a459b8ed7f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 12.5px);
}

}

#s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb {
  margin-left: 0%;
margin-right: 0%;
aspect-ratio: 750/500;
text-align: center;
}

#s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb {
  margin: 0 !important;
}

#s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb-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-7abb2862-5c69-4bb4-8c59-59cfc29df0cb {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0%;
  margin-right: 0%;
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  margin-left: 0%;
  margin-right: 0%;
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb .shg-image-content-wrapper {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }

    #s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb .shogun-image-link {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image {
    
    
    
    
  }


.s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb .shogun-image-content {
  
    justify-content: center;
  
}

.s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb {
      --shg-aspect-ratio: calc(750/500); 
    }

    .s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image-container {
      position: relative;
    }

    .s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

@media (min-width: 1200px){#s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb {
  margin: 0 !important;
}

#s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb-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-7abb2862-5c69-4bb4-8c59-59cfc29df0cb {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb .shg-image-content-wrapper {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }

    #s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb .shogun-image-link {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image {
    
    
    
    
  }


.s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb .shogun-image-content {
  
    justify-content: center;
  
}

.s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb {
      --shg-aspect-ratio: calc(750/500); 
    }

    .s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image-container {
      position: relative;
    }

    .s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb {
  margin: 0 !important;
}

#s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb-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-7abb2862-5c69-4bb4-8c59-59cfc29df0cb {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb .shg-image-content-wrapper {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }

    #s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb .shogun-image-link {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image {
    
    
    
    
  }


.s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb .shogun-image-content {
  
    justify-content: center;
  
}

.s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb {
      --shg-aspect-ratio: calc(750/500); 
    }

    .s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image-container {
      position: relative;
    }

    .s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb {
  margin: 0 !important;
}

#s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb-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-7abb2862-5c69-4bb4-8c59-59cfc29df0cb {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb .shg-image-content-wrapper {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }

    #s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb .shogun-image-link {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image {
    
    
    
    
  }


.s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb .shogun-image-content {
  
    justify-content: center;
  
}

.s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb {
      --shg-aspect-ratio: calc(750/500); 
    }

    .s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image-container {
      position: relative;
    }

    .s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}@media (max-width: 767px){#s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb {
  margin: 0 !important;
}

#s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb-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-7abb2862-5c69-4bb4-8c59-59cfc29df0cb {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb .shg-image-content-wrapper {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }

    #s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb .shogun-image-link {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image {
    
    
    
    
  }


.s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb .shogun-image-content {
  
    justify-content: center;
  
}

.s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb {
      --shg-aspect-ratio: calc(750/500); 
    }

    .s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image-container {
      position: relative;
    }

    .s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7abb2862-5c69-4bb4-8c59-59cfc29df0cb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}
#s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 {
  margin-left: 0%;
margin-right: 0%;
aspect-ratio: 750/500;
text-align: center;
}

#s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 {
  margin: 0 !important;
}

#s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6-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-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0%;
  margin-right: 0%;
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  margin-left: 0%;
  margin-right: 0%;
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 .shg-image-content-wrapper {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }

    #s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 .shogun-image-link {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image {
    
    
    
    
  }


.s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 {
      --shg-aspect-ratio: calc(750/500); 
    }

    .s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image-container {
      position: relative;
    }

    .s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

@media (min-width: 1200px){#s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 {
  margin: 0 !important;
}

#s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6-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-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 .shg-image-content-wrapper {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }

    #s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 .shogun-image-link {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image {
    
    
    
    
  }


.s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 {
      --shg-aspect-ratio: calc(750/500); 
    }

    .s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image-container {
      position: relative;
    }

    .s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 {
  margin: 0 !important;
}

#s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6-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-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 .shg-image-content-wrapper {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }

    #s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 .shogun-image-link {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image {
    
    
    
    
  }


.s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 {
      --shg-aspect-ratio: calc(750/500); 
    }

    .s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image-container {
      position: relative;
    }

    .s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 {
  margin: 0 !important;
}

#s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6-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-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 .shg-image-content-wrapper {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }

    #s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 .shogun-image-link {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image {
    
    
    
    
  }


.s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 {
      --shg-aspect-ratio: calc(750/500); 
    }

    .s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image-container {
      position: relative;
    }

    .s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}@media (max-width: 767px){#s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 {
  margin: 0 !important;
}

#s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6-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-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 .shg-image-content-wrapper {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }

    #s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 .shogun-image-link {
      aspect-ratio: 750/500;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    
  }



  img.s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image {
    
    
    
    
  }


.s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 {
      --shg-aspect-ratio: calc(750/500); 
    }

    .s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image-container {
      position: relative;
    }

    .s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60a6a9ab-0cba-4bbf-a5b4-4d5f87b86be6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}
#s-da335bdf-04ca-47aa-9891-524454571e8e {
  margin-top: 0px;
margin-bottom: 25px;
max-width: 760px;
aspect-ratio: 760/170;
text-align: center;
}
@media (min-width: 1200px){#s-da335bdf-04ca-47aa-9891-524454571e8e {
  display: none;
}
#s-da335bdf-04ca-47aa-9891-524454571e8e, #wrap-s-da335bdf-04ca-47aa-9891-524454571e8e, #wrap-content-s-da335bdf-04ca-47aa-9891-524454571e8e { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-da335bdf-04ca-47aa-9891-524454571e8e {
  display: none;
}
#s-da335bdf-04ca-47aa-9891-524454571e8e, #wrap-s-da335bdf-04ca-47aa-9891-524454571e8e, #wrap-content-s-da335bdf-04ca-47aa-9891-524454571e8e { display: none !important; }}@media (max-width: 767px){#s-da335bdf-04ca-47aa-9891-524454571e8e {
  margin-bottom: 20px;
}
}
#s-da335bdf-04ca-47aa-9891-524454571e8e {
  margin: 0 !important;
}

#s-da335bdf-04ca-47aa-9891-524454571e8e-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-da335bdf-04ca-47aa-9891-524454571e8e {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 0px;
  margin-bottom: 25px;
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-da335bdf-04ca-47aa-9891-524454571e8e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  margin-top: 0px;
  margin-bottom: 25px;
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-da335bdf-04ca-47aa-9891-524454571e8e .shg-image-content-wrapper {
      aspect-ratio: 760/170;
      min-width: 100%;
      height: auto;
    }

    #s-da335bdf-04ca-47aa-9891-524454571e8e .shogun-image-link {
      aspect-ratio: 760/170;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-da335bdf-04ca-47aa-9891-524454571e8e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-da335bdf-04ca-47aa-9891-524454571e8e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 760px;
  }



  img.s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image {
    
    
    
    max-height: 760px;
  }


.s-da335bdf-04ca-47aa-9891-524454571e8e .shogun-image-content {
  
    justify-content: center;
  
}

.s-da335bdf-04ca-47aa-9891-524454571e8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-da335bdf-04ca-47aa-9891-524454571e8e {
      --shg-aspect-ratio: calc(760/170); 
    }

    .s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image-container {
      position: relative;
    }

    .s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-da335bdf-04ca-47aa-9891-524454571e8e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 760px;
    }
  }

@media (min-width: 1200px){#s-da335bdf-04ca-47aa-9891-524454571e8e {
  margin: 0 !important;
}

#s-da335bdf-04ca-47aa-9891-524454571e8e-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-da335bdf-04ca-47aa-9891-524454571e8e {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-da335bdf-04ca-47aa-9891-524454571e8e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-da335bdf-04ca-47aa-9891-524454571e8e .shg-image-content-wrapper {
      aspect-ratio: 760/170;
      min-width: 100%;
      height: auto;
    }

    #s-da335bdf-04ca-47aa-9891-524454571e8e .shogun-image-link {
      aspect-ratio: 760/170;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-da335bdf-04ca-47aa-9891-524454571e8e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-da335bdf-04ca-47aa-9891-524454571e8e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 760px;
  }



  img.s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image {
    
    
    
    max-height: 760px;
  }


.s-da335bdf-04ca-47aa-9891-524454571e8e .shogun-image-content {
  
    justify-content: center;
  
}

.s-da335bdf-04ca-47aa-9891-524454571e8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-da335bdf-04ca-47aa-9891-524454571e8e {
      --shg-aspect-ratio: calc(760/170); 
    }

    .s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image-container {
      position: relative;
    }

    .s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-da335bdf-04ca-47aa-9891-524454571e8e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 760px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-da335bdf-04ca-47aa-9891-524454571e8e {
  margin: 0 !important;
}

#s-da335bdf-04ca-47aa-9891-524454571e8e-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-da335bdf-04ca-47aa-9891-524454571e8e {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-da335bdf-04ca-47aa-9891-524454571e8e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-da335bdf-04ca-47aa-9891-524454571e8e .shg-image-content-wrapper {
      aspect-ratio: 760/170;
      min-width: 100%;
      height: auto;
    }

    #s-da335bdf-04ca-47aa-9891-524454571e8e .shogun-image-link {
      aspect-ratio: 760/170;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-da335bdf-04ca-47aa-9891-524454571e8e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-da335bdf-04ca-47aa-9891-524454571e8e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 760px;
  }



  img.s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image {
    
    
    
    max-height: 760px;
  }


.s-da335bdf-04ca-47aa-9891-524454571e8e .shogun-image-content {
  
    justify-content: center;
  
}

.s-da335bdf-04ca-47aa-9891-524454571e8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-da335bdf-04ca-47aa-9891-524454571e8e {
      --shg-aspect-ratio: calc(760/170); 
    }

    .s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image-container {
      position: relative;
    }

    .s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-da335bdf-04ca-47aa-9891-524454571e8e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 760px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-da335bdf-04ca-47aa-9891-524454571e8e {
  margin: 0 !important;
}

#s-da335bdf-04ca-47aa-9891-524454571e8e-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-da335bdf-04ca-47aa-9891-524454571e8e {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-da335bdf-04ca-47aa-9891-524454571e8e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-da335bdf-04ca-47aa-9891-524454571e8e .shg-image-content-wrapper {
      aspect-ratio: 760/170;
      min-width: 100%;
      height: auto;
    }

    #s-da335bdf-04ca-47aa-9891-524454571e8e .shogun-image-link {
      aspect-ratio: 760/170;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-da335bdf-04ca-47aa-9891-524454571e8e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-da335bdf-04ca-47aa-9891-524454571e8e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 760px;
  }



  img.s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image {
    
    
    
    max-height: 760px;
  }


.s-da335bdf-04ca-47aa-9891-524454571e8e .shogun-image-content {
  
    justify-content: center;
  
}

.s-da335bdf-04ca-47aa-9891-524454571e8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-da335bdf-04ca-47aa-9891-524454571e8e {
      --shg-aspect-ratio: calc(760/170); 
    }

    .s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image-container {
      position: relative;
    }

    .s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-da335bdf-04ca-47aa-9891-524454571e8e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 760px;
    }
  }

}@media (max-width: 767px){#s-da335bdf-04ca-47aa-9891-524454571e8e {
  margin: 0 !important;
}

#s-da335bdf-04ca-47aa-9891-524454571e8e-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-da335bdf-04ca-47aa-9891-524454571e8e {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  margin-bottom: 20px;
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-da335bdf-04ca-47aa-9891-524454571e8e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  margin-bottom: 20px;
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-da335bdf-04ca-47aa-9891-524454571e8e .shg-image-content-wrapper {
      aspect-ratio: 760/170;
      min-width: 100%;
      height: auto;
    }

    #s-da335bdf-04ca-47aa-9891-524454571e8e .shogun-image-link {
      aspect-ratio: 760/170;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-da335bdf-04ca-47aa-9891-524454571e8e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-da335bdf-04ca-47aa-9891-524454571e8e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 760px;
  }



  img.s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image {
    
    
    
    max-height: 760px;
  }


.s-da335bdf-04ca-47aa-9891-524454571e8e .shogun-image-content {
  
    justify-content: center;
  
}

.s-da335bdf-04ca-47aa-9891-524454571e8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-da335bdf-04ca-47aa-9891-524454571e8e {
      --shg-aspect-ratio: calc(760/170); 
    }

    .s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image-container {
      position: relative;
    }

    .s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-da335bdf-04ca-47aa-9891-524454571e8e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-da335bdf-04ca-47aa-9891-524454571e8e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 760px;
    }
  }

}
#s-d7f32b08-28bb-4df0-90f1-a893d11d7841 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-d7f32b08-28bb-4df0-90f1-a893d11d7841 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d7f32b08-28bb-4df0-90f1-a893d11d7841.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-caadb9e5-56d6-4ea8-a417-f63dd9f54802 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
}
@media (min-width: 768px) and (max-width: 991px){#s-caadb9e5-56d6-4ea8-a417-f63dd9f54802 {
  display: none;
}
#s-caadb9e5-56d6-4ea8-a417-f63dd9f54802, #wrap-s-caadb9e5-56d6-4ea8-a417-f63dd9f54802, #wrap-content-s-caadb9e5-56d6-4ea8-a417-f63dd9f54802 { display: none !important; }}@media (max-width: 767px){#s-caadb9e5-56d6-4ea8-a417-f63dd9f54802 {
  display: none;
}
#s-caadb9e5-56d6-4ea8-a417-f63dd9f54802, #wrap-s-caadb9e5-56d6-4ea8-a417-f63dd9f54802, #wrap-content-s-caadb9e5-56d6-4ea8-a417-f63dd9f54802 { display: none !important; }}
@media (min-width: 0px) {
[id="s-caadb9e5-56d6-4ea8-a417-f63dd9f54802"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-caadb9e5-56d6-4ea8-a417-f63dd9f54802"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-caadb9e5-56d6-4ea8-a417-f63dd9f54802"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-caadb9e5-56d6-4ea8-a417-f63dd9f54802"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

}

#s-5831098b-52dc-44f6-863a-604339574bd2 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}

#s-5831098b-52dc-44f6-863a-604339574bd2 {
  margin: 0 !important;
}

#s-5831098b-52dc-44f6-863a-604339574bd2-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-5831098b-52dc-44f6-863a-604339574bd2 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-5831098b-52dc-44f6-863a-604339574bd2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5831098b-52dc-44f6-863a-604339574bd2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5831098b-52dc-44f6-863a-604339574bd2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5831098b-52dc-44f6-863a-604339574bd2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5831098b-52dc-44f6-863a-604339574bd2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-5831098b-52dc-44f6-863a-604339574bd2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5831098b-52dc-44f6-863a-604339574bd2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5831098b-52dc-44f6-863a-604339574bd2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image-container {
      position: relative;
    }

    .s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5831098b-52dc-44f6-863a-604339574bd2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

@media (min-width: 1200px){#s-5831098b-52dc-44f6-863a-604339574bd2 {
  margin: 0 !important;
}

#s-5831098b-52dc-44f6-863a-604339574bd2-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-5831098b-52dc-44f6-863a-604339574bd2 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-5831098b-52dc-44f6-863a-604339574bd2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5831098b-52dc-44f6-863a-604339574bd2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5831098b-52dc-44f6-863a-604339574bd2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5831098b-52dc-44f6-863a-604339574bd2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5831098b-52dc-44f6-863a-604339574bd2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-5831098b-52dc-44f6-863a-604339574bd2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5831098b-52dc-44f6-863a-604339574bd2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5831098b-52dc-44f6-863a-604339574bd2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image-container {
      position: relative;
    }

    .s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5831098b-52dc-44f6-863a-604339574bd2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-5831098b-52dc-44f6-863a-604339574bd2 {
  margin: 0 !important;
}

#s-5831098b-52dc-44f6-863a-604339574bd2-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-5831098b-52dc-44f6-863a-604339574bd2 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-5831098b-52dc-44f6-863a-604339574bd2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5831098b-52dc-44f6-863a-604339574bd2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5831098b-52dc-44f6-863a-604339574bd2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5831098b-52dc-44f6-863a-604339574bd2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5831098b-52dc-44f6-863a-604339574bd2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-5831098b-52dc-44f6-863a-604339574bd2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5831098b-52dc-44f6-863a-604339574bd2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5831098b-52dc-44f6-863a-604339574bd2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image-container {
      position: relative;
    }

    .s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5831098b-52dc-44f6-863a-604339574bd2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-5831098b-52dc-44f6-863a-604339574bd2 {
  margin: 0 !important;
}

#s-5831098b-52dc-44f6-863a-604339574bd2-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-5831098b-52dc-44f6-863a-604339574bd2 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-5831098b-52dc-44f6-863a-604339574bd2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5831098b-52dc-44f6-863a-604339574bd2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5831098b-52dc-44f6-863a-604339574bd2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5831098b-52dc-44f6-863a-604339574bd2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5831098b-52dc-44f6-863a-604339574bd2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-5831098b-52dc-44f6-863a-604339574bd2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5831098b-52dc-44f6-863a-604339574bd2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5831098b-52dc-44f6-863a-604339574bd2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image-container {
      position: relative;
    }

    .s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5831098b-52dc-44f6-863a-604339574bd2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (max-width: 767px){#s-5831098b-52dc-44f6-863a-604339574bd2 {
  margin: 0 !important;
}

#s-5831098b-52dc-44f6-863a-604339574bd2-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-5831098b-52dc-44f6-863a-604339574bd2 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-5831098b-52dc-44f6-863a-604339574bd2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5831098b-52dc-44f6-863a-604339574bd2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5831098b-52dc-44f6-863a-604339574bd2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5831098b-52dc-44f6-863a-604339574bd2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5831098b-52dc-44f6-863a-604339574bd2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-5831098b-52dc-44f6-863a-604339574bd2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5831098b-52dc-44f6-863a-604339574bd2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5831098b-52dc-44f6-863a-604339574bd2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image-container {
      position: relative;
    }

    .s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5831098b-52dc-44f6-863a-604339574bd2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5831098b-52dc-44f6-863a-604339574bd2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}
#s-65456311-89fd-4be6-b515-cec978314bd8 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}

#s-65456311-89fd-4be6-b515-cec978314bd8 {
  margin: 0 !important;
}

#s-65456311-89fd-4be6-b515-cec978314bd8-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-65456311-89fd-4be6-b515-cec978314bd8 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-65456311-89fd-4be6-b515-cec978314bd8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-65456311-89fd-4be6-b515-cec978314bd8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-65456311-89fd-4be6-b515-cec978314bd8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-65456311-89fd-4be6-b515-cec978314bd8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-65456311-89fd-4be6-b515-cec978314bd8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-65456311-89fd-4be6-b515-cec978314bd8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-65456311-89fd-4be6-b515-cec978314bd8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-65456311-89fd-4be6-b515-cec978314bd8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image-container {
      position: relative;
    }

    .s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-65456311-89fd-4be6-b515-cec978314bd8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

@media (min-width: 1200px){#s-65456311-89fd-4be6-b515-cec978314bd8 {
  margin: 0 !important;
}

#s-65456311-89fd-4be6-b515-cec978314bd8-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-65456311-89fd-4be6-b515-cec978314bd8 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-65456311-89fd-4be6-b515-cec978314bd8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-65456311-89fd-4be6-b515-cec978314bd8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-65456311-89fd-4be6-b515-cec978314bd8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-65456311-89fd-4be6-b515-cec978314bd8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-65456311-89fd-4be6-b515-cec978314bd8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-65456311-89fd-4be6-b515-cec978314bd8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-65456311-89fd-4be6-b515-cec978314bd8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-65456311-89fd-4be6-b515-cec978314bd8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image-container {
      position: relative;
    }

    .s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-65456311-89fd-4be6-b515-cec978314bd8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-65456311-89fd-4be6-b515-cec978314bd8 {
  margin: 0 !important;
}

#s-65456311-89fd-4be6-b515-cec978314bd8-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-65456311-89fd-4be6-b515-cec978314bd8 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-65456311-89fd-4be6-b515-cec978314bd8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-65456311-89fd-4be6-b515-cec978314bd8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-65456311-89fd-4be6-b515-cec978314bd8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-65456311-89fd-4be6-b515-cec978314bd8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-65456311-89fd-4be6-b515-cec978314bd8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-65456311-89fd-4be6-b515-cec978314bd8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-65456311-89fd-4be6-b515-cec978314bd8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-65456311-89fd-4be6-b515-cec978314bd8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image-container {
      position: relative;
    }

    .s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-65456311-89fd-4be6-b515-cec978314bd8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-65456311-89fd-4be6-b515-cec978314bd8 {
  margin: 0 !important;
}

#s-65456311-89fd-4be6-b515-cec978314bd8-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-65456311-89fd-4be6-b515-cec978314bd8 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-65456311-89fd-4be6-b515-cec978314bd8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-65456311-89fd-4be6-b515-cec978314bd8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-65456311-89fd-4be6-b515-cec978314bd8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-65456311-89fd-4be6-b515-cec978314bd8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-65456311-89fd-4be6-b515-cec978314bd8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-65456311-89fd-4be6-b515-cec978314bd8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-65456311-89fd-4be6-b515-cec978314bd8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-65456311-89fd-4be6-b515-cec978314bd8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image-container {
      position: relative;
    }

    .s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-65456311-89fd-4be6-b515-cec978314bd8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (max-width: 767px){#s-65456311-89fd-4be6-b515-cec978314bd8 {
  margin: 0 !important;
}

#s-65456311-89fd-4be6-b515-cec978314bd8-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-65456311-89fd-4be6-b515-cec978314bd8 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-65456311-89fd-4be6-b515-cec978314bd8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-65456311-89fd-4be6-b515-cec978314bd8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-65456311-89fd-4be6-b515-cec978314bd8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-65456311-89fd-4be6-b515-cec978314bd8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-65456311-89fd-4be6-b515-cec978314bd8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-65456311-89fd-4be6-b515-cec978314bd8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-65456311-89fd-4be6-b515-cec978314bd8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-65456311-89fd-4be6-b515-cec978314bd8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image-container {
      position: relative;
    }

    .s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-65456311-89fd-4be6-b515-cec978314bd8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-65456311-89fd-4be6-b515-cec978314bd8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}
#s-963d7904-a192-4eea-a96d-6fbea951c893 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}

#s-963d7904-a192-4eea-a96d-6fbea951c893 {
  margin: 0 !important;
}

#s-963d7904-a192-4eea-a96d-6fbea951c893-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-963d7904-a192-4eea-a96d-6fbea951c893 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-963d7904-a192-4eea-a96d-6fbea951c893 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-963d7904-a192-4eea-a96d-6fbea951c893 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-963d7904-a192-4eea-a96d-6fbea951c893 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-963d7904-a192-4eea-a96d-6fbea951c893 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-963d7904-a192-4eea-a96d-6fbea951c893 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-963d7904-a192-4eea-a96d-6fbea951c893 .shogun-image-content {
  
    justify-content: center;
  
}

.s-963d7904-a192-4eea-a96d-6fbea951c893.shg-align-container {
  display: flex;
  justify-content: center
}

.s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-963d7904-a192-4eea-a96d-6fbea951c893 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image-container {
      position: relative;
    }

    .s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-963d7904-a192-4eea-a96d-6fbea951c893 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

@media (min-width: 1200px){#s-963d7904-a192-4eea-a96d-6fbea951c893 {
  margin: 0 !important;
}

#s-963d7904-a192-4eea-a96d-6fbea951c893-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-963d7904-a192-4eea-a96d-6fbea951c893 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-963d7904-a192-4eea-a96d-6fbea951c893 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-963d7904-a192-4eea-a96d-6fbea951c893 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-963d7904-a192-4eea-a96d-6fbea951c893 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-963d7904-a192-4eea-a96d-6fbea951c893 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-963d7904-a192-4eea-a96d-6fbea951c893 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-963d7904-a192-4eea-a96d-6fbea951c893 .shogun-image-content {
  
    justify-content: center;
  
}

.s-963d7904-a192-4eea-a96d-6fbea951c893.shg-align-container {
  display: flex;
  justify-content: center
}

.s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-963d7904-a192-4eea-a96d-6fbea951c893 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image-container {
      position: relative;
    }

    .s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-963d7904-a192-4eea-a96d-6fbea951c893 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-963d7904-a192-4eea-a96d-6fbea951c893 {
  margin: 0 !important;
}

#s-963d7904-a192-4eea-a96d-6fbea951c893-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-963d7904-a192-4eea-a96d-6fbea951c893 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-963d7904-a192-4eea-a96d-6fbea951c893 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-963d7904-a192-4eea-a96d-6fbea951c893 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-963d7904-a192-4eea-a96d-6fbea951c893 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-963d7904-a192-4eea-a96d-6fbea951c893 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-963d7904-a192-4eea-a96d-6fbea951c893 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-963d7904-a192-4eea-a96d-6fbea951c893 .shogun-image-content {
  
    justify-content: center;
  
}

.s-963d7904-a192-4eea-a96d-6fbea951c893.shg-align-container {
  display: flex;
  justify-content: center
}

.s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-963d7904-a192-4eea-a96d-6fbea951c893 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image-container {
      position: relative;
    }

    .s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-963d7904-a192-4eea-a96d-6fbea951c893 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-963d7904-a192-4eea-a96d-6fbea951c893 {
  margin: 0 !important;
}

#s-963d7904-a192-4eea-a96d-6fbea951c893-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-963d7904-a192-4eea-a96d-6fbea951c893 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-963d7904-a192-4eea-a96d-6fbea951c893 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-963d7904-a192-4eea-a96d-6fbea951c893 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-963d7904-a192-4eea-a96d-6fbea951c893 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-963d7904-a192-4eea-a96d-6fbea951c893 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-963d7904-a192-4eea-a96d-6fbea951c893 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-963d7904-a192-4eea-a96d-6fbea951c893 .shogun-image-content {
  
    justify-content: center;
  
}

.s-963d7904-a192-4eea-a96d-6fbea951c893.shg-align-container {
  display: flex;
  justify-content: center
}

.s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-963d7904-a192-4eea-a96d-6fbea951c893 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image-container {
      position: relative;
    }

    .s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-963d7904-a192-4eea-a96d-6fbea951c893 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (max-width: 767px){#s-963d7904-a192-4eea-a96d-6fbea951c893 {
  margin: 0 !important;
}

#s-963d7904-a192-4eea-a96d-6fbea951c893-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-963d7904-a192-4eea-a96d-6fbea951c893 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-963d7904-a192-4eea-a96d-6fbea951c893 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-963d7904-a192-4eea-a96d-6fbea951c893 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-963d7904-a192-4eea-a96d-6fbea951c893 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-963d7904-a192-4eea-a96d-6fbea951c893 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-963d7904-a192-4eea-a96d-6fbea951c893 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-963d7904-a192-4eea-a96d-6fbea951c893 .shogun-image-content {
  
    justify-content: center;
  
}

.s-963d7904-a192-4eea-a96d-6fbea951c893.shg-align-container {
  display: flex;
  justify-content: center
}

.s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-963d7904-a192-4eea-a96d-6fbea951c893 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image-container {
      position: relative;
    }

    .s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-963d7904-a192-4eea-a96d-6fbea951c893.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-963d7904-a192-4eea-a96d-6fbea951c893 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}
#s-0292bc6b-e689-49e8-902b-af02e0c399c5 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}

#s-0292bc6b-e689-49e8-902b-af02e0c399c5 {
  margin: 0 !important;
}

#s-0292bc6b-e689-49e8-902b-af02e0c399c5-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-0292bc6b-e689-49e8-902b-af02e0c399c5 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-0292bc6b-e689-49e8-902b-af02e0c399c5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0292bc6b-e689-49e8-902b-af02e0c399c5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0292bc6b-e689-49e8-902b-af02e0c399c5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0292bc6b-e689-49e8-902b-af02e0c399c5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0292bc6b-e689-49e8-902b-af02e0c399c5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-0292bc6b-e689-49e8-902b-af02e0c399c5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0292bc6b-e689-49e8-902b-af02e0c399c5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0292bc6b-e689-49e8-902b-af02e0c399c5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image-container {
      position: relative;
    }

    .s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0292bc6b-e689-49e8-902b-af02e0c399c5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

@media (min-width: 1200px){#s-0292bc6b-e689-49e8-902b-af02e0c399c5 {
  margin: 0 !important;
}

#s-0292bc6b-e689-49e8-902b-af02e0c399c5-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-0292bc6b-e689-49e8-902b-af02e0c399c5 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-0292bc6b-e689-49e8-902b-af02e0c399c5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0292bc6b-e689-49e8-902b-af02e0c399c5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0292bc6b-e689-49e8-902b-af02e0c399c5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0292bc6b-e689-49e8-902b-af02e0c399c5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0292bc6b-e689-49e8-902b-af02e0c399c5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-0292bc6b-e689-49e8-902b-af02e0c399c5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0292bc6b-e689-49e8-902b-af02e0c399c5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0292bc6b-e689-49e8-902b-af02e0c399c5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image-container {
      position: relative;
    }

    .s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0292bc6b-e689-49e8-902b-af02e0c399c5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-0292bc6b-e689-49e8-902b-af02e0c399c5 {
  margin: 0 !important;
}

#s-0292bc6b-e689-49e8-902b-af02e0c399c5-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-0292bc6b-e689-49e8-902b-af02e0c399c5 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-0292bc6b-e689-49e8-902b-af02e0c399c5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0292bc6b-e689-49e8-902b-af02e0c399c5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0292bc6b-e689-49e8-902b-af02e0c399c5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0292bc6b-e689-49e8-902b-af02e0c399c5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0292bc6b-e689-49e8-902b-af02e0c399c5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-0292bc6b-e689-49e8-902b-af02e0c399c5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0292bc6b-e689-49e8-902b-af02e0c399c5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0292bc6b-e689-49e8-902b-af02e0c399c5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image-container {
      position: relative;
    }

    .s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0292bc6b-e689-49e8-902b-af02e0c399c5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-0292bc6b-e689-49e8-902b-af02e0c399c5 {
  margin: 0 !important;
}

#s-0292bc6b-e689-49e8-902b-af02e0c399c5-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-0292bc6b-e689-49e8-902b-af02e0c399c5 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-0292bc6b-e689-49e8-902b-af02e0c399c5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0292bc6b-e689-49e8-902b-af02e0c399c5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0292bc6b-e689-49e8-902b-af02e0c399c5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0292bc6b-e689-49e8-902b-af02e0c399c5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0292bc6b-e689-49e8-902b-af02e0c399c5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-0292bc6b-e689-49e8-902b-af02e0c399c5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0292bc6b-e689-49e8-902b-af02e0c399c5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0292bc6b-e689-49e8-902b-af02e0c399c5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image-container {
      position: relative;
    }

    .s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0292bc6b-e689-49e8-902b-af02e0c399c5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (max-width: 767px){#s-0292bc6b-e689-49e8-902b-af02e0c399c5 {
  margin: 0 !important;
}

#s-0292bc6b-e689-49e8-902b-af02e0c399c5-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-0292bc6b-e689-49e8-902b-af02e0c399c5 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-0292bc6b-e689-49e8-902b-af02e0c399c5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0292bc6b-e689-49e8-902b-af02e0c399c5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0292bc6b-e689-49e8-902b-af02e0c399c5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0292bc6b-e689-49e8-902b-af02e0c399c5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0292bc6b-e689-49e8-902b-af02e0c399c5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-0292bc6b-e689-49e8-902b-af02e0c399c5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0292bc6b-e689-49e8-902b-af02e0c399c5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0292bc6b-e689-49e8-902b-af02e0c399c5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image-container {
      position: relative;
    }

    .s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0292bc6b-e689-49e8-902b-af02e0c399c5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0292bc6b-e689-49e8-902b-af02e0c399c5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}
#s-6d74f119-7eac-42f0-a302-a2a4e9e674a9 {
  margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
}
@media (min-width: 768px) and (max-width: 991px){#s-6d74f119-7eac-42f0-a302-a2a4e9e674a9 {
  display: none;
}
#s-6d74f119-7eac-42f0-a302-a2a4e9e674a9, #wrap-s-6d74f119-7eac-42f0-a302-a2a4e9e674a9, #wrap-content-s-6d74f119-7eac-42f0-a302-a2a4e9e674a9 { display: none !important; }}@media (max-width: 767px){#s-6d74f119-7eac-42f0-a302-a2a4e9e674a9 {
  display: none;
}
#s-6d74f119-7eac-42f0-a302-a2a4e9e674a9, #wrap-s-6d74f119-7eac-42f0-a302-a2a4e9e674a9, #wrap-content-s-6d74f119-7eac-42f0-a302-a2a4e9e674a9 { display: none !important; }}
@media (min-width: 0px) {
[id="s-6d74f119-7eac-42f0-a302-a2a4e9e674a9"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-6d74f119-7eac-42f0-a302-a2a4e9e674a9"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6d74f119-7eac-42f0-a302-a2a4e9e674a9"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6d74f119-7eac-42f0-a302-a2a4e9e674a9"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

}

#s-f23c2d9a-410a-4171-9084-c7d86ac1a902 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}

#s-f23c2d9a-410a-4171-9084-c7d86ac1a902 {
  margin: 0 !important;
}

#s-f23c2d9a-410a-4171-9084-c7d86ac1a902-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-f23c2d9a-410a-4171-9084-c7d86ac1a902 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-f23c2d9a-410a-4171-9084-c7d86ac1a902 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f23c2d9a-410a-4171-9084-c7d86ac1a902 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f23c2d9a-410a-4171-9084-c7d86ac1a902 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f23c2d9a-410a-4171-9084-c7d86ac1a902 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f23c2d9a-410a-4171-9084-c7d86ac1a902 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-f23c2d9a-410a-4171-9084-c7d86ac1a902 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f23c2d9a-410a-4171-9084-c7d86ac1a902 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image-container {
      position: relative;
    }

    .s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f23c2d9a-410a-4171-9084-c7d86ac1a902 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

@media (min-width: 1200px){#s-f23c2d9a-410a-4171-9084-c7d86ac1a902 {
  margin: 0 !important;
}

#s-f23c2d9a-410a-4171-9084-c7d86ac1a902-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-f23c2d9a-410a-4171-9084-c7d86ac1a902 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-f23c2d9a-410a-4171-9084-c7d86ac1a902 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f23c2d9a-410a-4171-9084-c7d86ac1a902 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f23c2d9a-410a-4171-9084-c7d86ac1a902 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f23c2d9a-410a-4171-9084-c7d86ac1a902 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f23c2d9a-410a-4171-9084-c7d86ac1a902 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-f23c2d9a-410a-4171-9084-c7d86ac1a902 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f23c2d9a-410a-4171-9084-c7d86ac1a902 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image-container {
      position: relative;
    }

    .s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f23c2d9a-410a-4171-9084-c7d86ac1a902 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-f23c2d9a-410a-4171-9084-c7d86ac1a902 {
  margin: 0 !important;
}

#s-f23c2d9a-410a-4171-9084-c7d86ac1a902-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-f23c2d9a-410a-4171-9084-c7d86ac1a902 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-f23c2d9a-410a-4171-9084-c7d86ac1a902 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f23c2d9a-410a-4171-9084-c7d86ac1a902 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f23c2d9a-410a-4171-9084-c7d86ac1a902 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f23c2d9a-410a-4171-9084-c7d86ac1a902 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f23c2d9a-410a-4171-9084-c7d86ac1a902 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-f23c2d9a-410a-4171-9084-c7d86ac1a902 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f23c2d9a-410a-4171-9084-c7d86ac1a902 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image-container {
      position: relative;
    }

    .s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f23c2d9a-410a-4171-9084-c7d86ac1a902 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-f23c2d9a-410a-4171-9084-c7d86ac1a902 {
  margin: 0 !important;
}

#s-f23c2d9a-410a-4171-9084-c7d86ac1a902-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-f23c2d9a-410a-4171-9084-c7d86ac1a902 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-f23c2d9a-410a-4171-9084-c7d86ac1a902 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f23c2d9a-410a-4171-9084-c7d86ac1a902 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f23c2d9a-410a-4171-9084-c7d86ac1a902 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f23c2d9a-410a-4171-9084-c7d86ac1a902 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f23c2d9a-410a-4171-9084-c7d86ac1a902 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-f23c2d9a-410a-4171-9084-c7d86ac1a902 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f23c2d9a-410a-4171-9084-c7d86ac1a902 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image-container {
      position: relative;
    }

    .s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f23c2d9a-410a-4171-9084-c7d86ac1a902 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (max-width: 767px){#s-f23c2d9a-410a-4171-9084-c7d86ac1a902 {
  margin: 0 !important;
}

#s-f23c2d9a-410a-4171-9084-c7d86ac1a902-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-f23c2d9a-410a-4171-9084-c7d86ac1a902 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-f23c2d9a-410a-4171-9084-c7d86ac1a902 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f23c2d9a-410a-4171-9084-c7d86ac1a902 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f23c2d9a-410a-4171-9084-c7d86ac1a902 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f23c2d9a-410a-4171-9084-c7d86ac1a902 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f23c2d9a-410a-4171-9084-c7d86ac1a902 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-f23c2d9a-410a-4171-9084-c7d86ac1a902 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f23c2d9a-410a-4171-9084-c7d86ac1a902 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image-container {
      position: relative;
    }

    .s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f23c2d9a-410a-4171-9084-c7d86ac1a902.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f23c2d9a-410a-4171-9084-c7d86ac1a902 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}
#s-5b60be4c-991e-4f6f-8704-d98f99c2975e {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}

#s-5b60be4c-991e-4f6f-8704-d98f99c2975e {
  margin: 0 !important;
}

#s-5b60be4c-991e-4f6f-8704-d98f99c2975e-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-5b60be4c-991e-4f6f-8704-d98f99c2975e {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-5b60be4c-991e-4f6f-8704-d98f99c2975e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5b60be4c-991e-4f6f-8704-d98f99c2975e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5b60be4c-991e-4f6f-8704-d98f99c2975e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b60be4c-991e-4f6f-8704-d98f99c2975e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5b60be4c-991e-4f6f-8704-d98f99c2975e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-5b60be4c-991e-4f6f-8704-d98f99c2975e .shogun-image-content {
  
    justify-content: center;
  
}

.s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5b60be4c-991e-4f6f-8704-d98f99c2975e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image-container {
      position: relative;
    }

    .s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b60be4c-991e-4f6f-8704-d98f99c2975e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

@media (min-width: 1200px){#s-5b60be4c-991e-4f6f-8704-d98f99c2975e {
  margin: 0 !important;
}

#s-5b60be4c-991e-4f6f-8704-d98f99c2975e-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-5b60be4c-991e-4f6f-8704-d98f99c2975e {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-5b60be4c-991e-4f6f-8704-d98f99c2975e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5b60be4c-991e-4f6f-8704-d98f99c2975e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5b60be4c-991e-4f6f-8704-d98f99c2975e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b60be4c-991e-4f6f-8704-d98f99c2975e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5b60be4c-991e-4f6f-8704-d98f99c2975e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-5b60be4c-991e-4f6f-8704-d98f99c2975e .shogun-image-content {
  
    justify-content: center;
  
}

.s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5b60be4c-991e-4f6f-8704-d98f99c2975e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image-container {
      position: relative;
    }

    .s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b60be4c-991e-4f6f-8704-d98f99c2975e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-5b60be4c-991e-4f6f-8704-d98f99c2975e {
  margin: 0 !important;
}

#s-5b60be4c-991e-4f6f-8704-d98f99c2975e-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-5b60be4c-991e-4f6f-8704-d98f99c2975e {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-5b60be4c-991e-4f6f-8704-d98f99c2975e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5b60be4c-991e-4f6f-8704-d98f99c2975e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5b60be4c-991e-4f6f-8704-d98f99c2975e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b60be4c-991e-4f6f-8704-d98f99c2975e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5b60be4c-991e-4f6f-8704-d98f99c2975e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-5b60be4c-991e-4f6f-8704-d98f99c2975e .shogun-image-content {
  
    justify-content: center;
  
}

.s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5b60be4c-991e-4f6f-8704-d98f99c2975e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image-container {
      position: relative;
    }

    .s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b60be4c-991e-4f6f-8704-d98f99c2975e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-5b60be4c-991e-4f6f-8704-d98f99c2975e {
  margin: 0 !important;
}

#s-5b60be4c-991e-4f6f-8704-d98f99c2975e-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-5b60be4c-991e-4f6f-8704-d98f99c2975e {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-5b60be4c-991e-4f6f-8704-d98f99c2975e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5b60be4c-991e-4f6f-8704-d98f99c2975e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5b60be4c-991e-4f6f-8704-d98f99c2975e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b60be4c-991e-4f6f-8704-d98f99c2975e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5b60be4c-991e-4f6f-8704-d98f99c2975e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-5b60be4c-991e-4f6f-8704-d98f99c2975e .shogun-image-content {
  
    justify-content: center;
  
}

.s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5b60be4c-991e-4f6f-8704-d98f99c2975e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image-container {
      position: relative;
    }

    .s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b60be4c-991e-4f6f-8704-d98f99c2975e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (max-width: 767px){#s-5b60be4c-991e-4f6f-8704-d98f99c2975e {
  margin: 0 !important;
}

#s-5b60be4c-991e-4f6f-8704-d98f99c2975e-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-5b60be4c-991e-4f6f-8704-d98f99c2975e {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-5b60be4c-991e-4f6f-8704-d98f99c2975e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5b60be4c-991e-4f6f-8704-d98f99c2975e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5b60be4c-991e-4f6f-8704-d98f99c2975e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b60be4c-991e-4f6f-8704-d98f99c2975e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5b60be4c-991e-4f6f-8704-d98f99c2975e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-5b60be4c-991e-4f6f-8704-d98f99c2975e .shogun-image-content {
  
    justify-content: center;
  
}

.s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5b60be4c-991e-4f6f-8704-d98f99c2975e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image-container {
      position: relative;
    }

    .s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b60be4c-991e-4f6f-8704-d98f99c2975e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b60be4c-991e-4f6f-8704-d98f99c2975e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}
#s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}

#s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda {
  margin: 0 !important;
}

#s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda-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-fc59bbf3-f609-44db-8deb-0f3c3bde1fda {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda .shogun-image-content {
  
    justify-content: center;
  
}

.s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image-container {
      position: relative;
    }

    .s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

@media (min-width: 1200px){#s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda {
  margin: 0 !important;
}

#s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda-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-fc59bbf3-f609-44db-8deb-0f3c3bde1fda {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda .shogun-image-content {
  
    justify-content: center;
  
}

.s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image-container {
      position: relative;
    }

    .s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda {
  margin: 0 !important;
}

#s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda-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-fc59bbf3-f609-44db-8deb-0f3c3bde1fda {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda .shogun-image-content {
  
    justify-content: center;
  
}

.s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image-container {
      position: relative;
    }

    .s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda {
  margin: 0 !important;
}

#s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda-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-fc59bbf3-f609-44db-8deb-0f3c3bde1fda {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda .shogun-image-content {
  
    justify-content: center;
  
}

.s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image-container {
      position: relative;
    }

    .s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (max-width: 767px){#s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda {
  margin: 0 !important;
}

#s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda-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-fc59bbf3-f609-44db-8deb-0f3c3bde1fda {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda .shogun-image-content {
  
    justify-content: center;
  
}

.s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image-container {
      position: relative;
    }

    .s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fc59bbf3-f609-44db-8deb-0f3c3bde1fda img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}
#s-196a8173-8e98-412e-a46c-7c5faf97014d {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}

#s-196a8173-8e98-412e-a46c-7c5faf97014d {
  margin: 0 !important;
}

#s-196a8173-8e98-412e-a46c-7c5faf97014d-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-196a8173-8e98-412e-a46c-7c5faf97014d {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-196a8173-8e98-412e-a46c-7c5faf97014d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-196a8173-8e98-412e-a46c-7c5faf97014d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-196a8173-8e98-412e-a46c-7c5faf97014d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-196a8173-8e98-412e-a46c-7c5faf97014d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-196a8173-8e98-412e-a46c-7c5faf97014d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-196a8173-8e98-412e-a46c-7c5faf97014d .shogun-image-content {
  
    justify-content: center;
  
}

.s-196a8173-8e98-412e-a46c-7c5faf97014d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-196a8173-8e98-412e-a46c-7c5faf97014d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image-container {
      position: relative;
    }

    .s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-196a8173-8e98-412e-a46c-7c5faf97014d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

@media (min-width: 1200px){#s-196a8173-8e98-412e-a46c-7c5faf97014d {
  margin: 0 !important;
}

#s-196a8173-8e98-412e-a46c-7c5faf97014d-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-196a8173-8e98-412e-a46c-7c5faf97014d {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-196a8173-8e98-412e-a46c-7c5faf97014d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-196a8173-8e98-412e-a46c-7c5faf97014d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-196a8173-8e98-412e-a46c-7c5faf97014d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-196a8173-8e98-412e-a46c-7c5faf97014d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-196a8173-8e98-412e-a46c-7c5faf97014d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-196a8173-8e98-412e-a46c-7c5faf97014d .shogun-image-content {
  
    justify-content: center;
  
}

.s-196a8173-8e98-412e-a46c-7c5faf97014d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-196a8173-8e98-412e-a46c-7c5faf97014d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image-container {
      position: relative;
    }

    .s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-196a8173-8e98-412e-a46c-7c5faf97014d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-196a8173-8e98-412e-a46c-7c5faf97014d {
  margin: 0 !important;
}

#s-196a8173-8e98-412e-a46c-7c5faf97014d-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-196a8173-8e98-412e-a46c-7c5faf97014d {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-196a8173-8e98-412e-a46c-7c5faf97014d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-196a8173-8e98-412e-a46c-7c5faf97014d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-196a8173-8e98-412e-a46c-7c5faf97014d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-196a8173-8e98-412e-a46c-7c5faf97014d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-196a8173-8e98-412e-a46c-7c5faf97014d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-196a8173-8e98-412e-a46c-7c5faf97014d .shogun-image-content {
  
    justify-content: center;
  
}

.s-196a8173-8e98-412e-a46c-7c5faf97014d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-196a8173-8e98-412e-a46c-7c5faf97014d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image-container {
      position: relative;
    }

    .s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-196a8173-8e98-412e-a46c-7c5faf97014d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-196a8173-8e98-412e-a46c-7c5faf97014d {
  margin: 0 !important;
}

#s-196a8173-8e98-412e-a46c-7c5faf97014d-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-196a8173-8e98-412e-a46c-7c5faf97014d {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-196a8173-8e98-412e-a46c-7c5faf97014d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-196a8173-8e98-412e-a46c-7c5faf97014d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-196a8173-8e98-412e-a46c-7c5faf97014d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-196a8173-8e98-412e-a46c-7c5faf97014d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-196a8173-8e98-412e-a46c-7c5faf97014d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-196a8173-8e98-412e-a46c-7c5faf97014d .shogun-image-content {
  
    justify-content: center;
  
}

.s-196a8173-8e98-412e-a46c-7c5faf97014d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-196a8173-8e98-412e-a46c-7c5faf97014d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image-container {
      position: relative;
    }

    .s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-196a8173-8e98-412e-a46c-7c5faf97014d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (max-width: 767px){#s-196a8173-8e98-412e-a46c-7c5faf97014d {
  margin: 0 !important;
}

#s-196a8173-8e98-412e-a46c-7c5faf97014d-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-196a8173-8e98-412e-a46c-7c5faf97014d {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-196a8173-8e98-412e-a46c-7c5faf97014d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-196a8173-8e98-412e-a46c-7c5faf97014d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-196a8173-8e98-412e-a46c-7c5faf97014d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-196a8173-8e98-412e-a46c-7c5faf97014d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-196a8173-8e98-412e-a46c-7c5faf97014d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-196a8173-8e98-412e-a46c-7c5faf97014d .shogun-image-content {
  
    justify-content: center;
  
}

.s-196a8173-8e98-412e-a46c-7c5faf97014d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-196a8173-8e98-412e-a46c-7c5faf97014d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image-container {
      position: relative;
    }

    .s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-196a8173-8e98-412e-a46c-7c5faf97014d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-196a8173-8e98-412e-a46c-7c5faf97014d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}
#s-2562147d-3902-4bed-9357-ba2260075f42 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
}
@media (min-width: 1200px){#s-2562147d-3902-4bed-9357-ba2260075f42 {
  display: none;
}
#s-2562147d-3902-4bed-9357-ba2260075f42, #wrap-s-2562147d-3902-4bed-9357-ba2260075f42, #wrap-content-s-2562147d-3902-4bed-9357-ba2260075f42 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2562147d-3902-4bed-9357-ba2260075f42 {
  display: none;
}
#s-2562147d-3902-4bed-9357-ba2260075f42, #wrap-s-2562147d-3902-4bed-9357-ba2260075f42, #wrap-content-s-2562147d-3902-4bed-9357-ba2260075f42 { display: none !important; }}
@media (min-width: 0px) {
[id="s-2562147d-3902-4bed-9357-ba2260075f42"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-2562147d-3902-4bed-9357-ba2260075f42"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-2562147d-3902-4bed-9357-ba2260075f42"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-2562147d-3902-4bed-9357-ba2260075f42"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 {
  margin-left: auto;
margin-right: auto;
max-width: 750px;
aspect-ratio: 1/1;
text-align: center;
}

#s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 {
  margin: 0 !important;
}

#s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1-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-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 750px;
  }



  img.s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image {
    
    
    
    max-height: 750px;
  }


.s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image-container {
      position: relative;
    }

    .s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 750px;
    }
  }

@media (min-width: 1200px){#s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 {
  margin: 0 !important;
}

#s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1-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-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 750px;
  }



  img.s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image {
    
    
    
    max-height: 750px;
  }


.s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image-container {
      position: relative;
    }

    .s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 750px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 {
  margin: 0 !important;
}

#s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1-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-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 750px;
  }



  img.s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image {
    
    
    
    max-height: 750px;
  }


.s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image-container {
      position: relative;
    }

    .s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 750px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 {
  margin: 0 !important;
}

#s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1-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-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 750px;
  }



  img.s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image {
    
    
    
    max-height: 750px;
  }


.s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image-container {
      position: relative;
    }

    .s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 750px;
    }
  }

}@media (max-width: 767px){#s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 {
  margin: 0 !important;
}

#s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1-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-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 750px;
  }



  img.s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image {
    
    
    
    max-height: 750px;
  }


.s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image-container {
      position: relative;
    }

    .s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd71a094-351d-4be0-b23d-7b3bb1dd84c1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 750px;
    }
  }

}
#s-44b35a03-c6b8-42bc-96e1-e0214d705225 {
  margin-left: auto;
margin-right: auto;
max-width: 750px;
aspect-ratio: 1/1;
text-align: center;
}
@media (min-width: 1200px){#s-44b35a03-c6b8-42bc-96e1-e0214d705225 {
  display: none;
}
#s-44b35a03-c6b8-42bc-96e1-e0214d705225, #wrap-s-44b35a03-c6b8-42bc-96e1-e0214d705225, #wrap-content-s-44b35a03-c6b8-42bc-96e1-e0214d705225 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-44b35a03-c6b8-42bc-96e1-e0214d705225 {
  display: none;
}
#s-44b35a03-c6b8-42bc-96e1-e0214d705225, #wrap-s-44b35a03-c6b8-42bc-96e1-e0214d705225, #wrap-content-s-44b35a03-c6b8-42bc-96e1-e0214d705225 { display: none !important; }}
#s-44b35a03-c6b8-42bc-96e1-e0214d705225 {
  margin: 0 !important;
}

#s-44b35a03-c6b8-42bc-96e1-e0214d705225-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-44b35a03-c6b8-42bc-96e1-e0214d705225 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-44b35a03-c6b8-42bc-96e1-e0214d705225 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-44b35a03-c6b8-42bc-96e1-e0214d705225 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-44b35a03-c6b8-42bc-96e1-e0214d705225 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-44b35a03-c6b8-42bc-96e1-e0214d705225 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-44b35a03-c6b8-42bc-96e1-e0214d705225 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 750px;
  }



  img.s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image {
    
    
    
    max-height: 750px;
  }


.s-44b35a03-c6b8-42bc-96e1-e0214d705225 .shogun-image-content {
  
    justify-content: center;
  
}

.s-44b35a03-c6b8-42bc-96e1-e0214d705225.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-44b35a03-c6b8-42bc-96e1-e0214d705225 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image-container {
      position: relative;
    }

    .s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44b35a03-c6b8-42bc-96e1-e0214d705225 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 750px;
    }
  }

@media (min-width: 1200px){#s-44b35a03-c6b8-42bc-96e1-e0214d705225 {
  margin: 0 !important;
}

#s-44b35a03-c6b8-42bc-96e1-e0214d705225-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-44b35a03-c6b8-42bc-96e1-e0214d705225 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-44b35a03-c6b8-42bc-96e1-e0214d705225 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-44b35a03-c6b8-42bc-96e1-e0214d705225 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-44b35a03-c6b8-42bc-96e1-e0214d705225 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-44b35a03-c6b8-42bc-96e1-e0214d705225 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-44b35a03-c6b8-42bc-96e1-e0214d705225 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 750px;
  }



  img.s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image {
    
    
    
    max-height: 750px;
  }


.s-44b35a03-c6b8-42bc-96e1-e0214d705225 .shogun-image-content {
  
    justify-content: center;
  
}

.s-44b35a03-c6b8-42bc-96e1-e0214d705225.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-44b35a03-c6b8-42bc-96e1-e0214d705225 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image-container {
      position: relative;
    }

    .s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44b35a03-c6b8-42bc-96e1-e0214d705225 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 750px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-44b35a03-c6b8-42bc-96e1-e0214d705225 {
  margin: 0 !important;
}

#s-44b35a03-c6b8-42bc-96e1-e0214d705225-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-44b35a03-c6b8-42bc-96e1-e0214d705225 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-44b35a03-c6b8-42bc-96e1-e0214d705225 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-44b35a03-c6b8-42bc-96e1-e0214d705225 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-44b35a03-c6b8-42bc-96e1-e0214d705225 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-44b35a03-c6b8-42bc-96e1-e0214d705225 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-44b35a03-c6b8-42bc-96e1-e0214d705225 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 750px;
  }



  img.s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image {
    
    
    
    max-height: 750px;
  }


.s-44b35a03-c6b8-42bc-96e1-e0214d705225 .shogun-image-content {
  
    justify-content: center;
  
}

.s-44b35a03-c6b8-42bc-96e1-e0214d705225.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-44b35a03-c6b8-42bc-96e1-e0214d705225 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image-container {
      position: relative;
    }

    .s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44b35a03-c6b8-42bc-96e1-e0214d705225 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 750px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-44b35a03-c6b8-42bc-96e1-e0214d705225 {
  margin: 0 !important;
}

#s-44b35a03-c6b8-42bc-96e1-e0214d705225-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-44b35a03-c6b8-42bc-96e1-e0214d705225 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-44b35a03-c6b8-42bc-96e1-e0214d705225 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-44b35a03-c6b8-42bc-96e1-e0214d705225 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-44b35a03-c6b8-42bc-96e1-e0214d705225 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-44b35a03-c6b8-42bc-96e1-e0214d705225 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-44b35a03-c6b8-42bc-96e1-e0214d705225 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 750px;
  }



  img.s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image {
    
    
    
    max-height: 750px;
  }


.s-44b35a03-c6b8-42bc-96e1-e0214d705225 .shogun-image-content {
  
    justify-content: center;
  
}

.s-44b35a03-c6b8-42bc-96e1-e0214d705225.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-44b35a03-c6b8-42bc-96e1-e0214d705225 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image-container {
      position: relative;
    }

    .s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44b35a03-c6b8-42bc-96e1-e0214d705225 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 750px;
    }
  }

}@media (max-width: 767px){#s-44b35a03-c6b8-42bc-96e1-e0214d705225 {
  margin: 0 !important;
}

#s-44b35a03-c6b8-42bc-96e1-e0214d705225-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-44b35a03-c6b8-42bc-96e1-e0214d705225 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-44b35a03-c6b8-42bc-96e1-e0214d705225 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-44b35a03-c6b8-42bc-96e1-e0214d705225 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-44b35a03-c6b8-42bc-96e1-e0214d705225 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-44b35a03-c6b8-42bc-96e1-e0214d705225 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-44b35a03-c6b8-42bc-96e1-e0214d705225 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 750px;
  }



  img.s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image {
    
    
    
    max-height: 750px;
  }


.s-44b35a03-c6b8-42bc-96e1-e0214d705225 .shogun-image-content {
  
    justify-content: center;
  
}

.s-44b35a03-c6b8-42bc-96e1-e0214d705225.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-44b35a03-c6b8-42bc-96e1-e0214d705225 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image-container {
      position: relative;
    }

    .s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44b35a03-c6b8-42bc-96e1-e0214d705225.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44b35a03-c6b8-42bc-96e1-e0214d705225 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 750px;
    }
  }

}
#s-a587d5fc-15f0-4f2f-83d0-669862dec088 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
}
@media (min-width: 1200px){#s-a587d5fc-15f0-4f2f-83d0-669862dec088 {
  display: none;
}
#s-a587d5fc-15f0-4f2f-83d0-669862dec088, #wrap-s-a587d5fc-15f0-4f2f-83d0-669862dec088, #wrap-content-s-a587d5fc-15f0-4f2f-83d0-669862dec088 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a587d5fc-15f0-4f2f-83d0-669862dec088 {
  display: none;
}
#s-a587d5fc-15f0-4f2f-83d0-669862dec088, #wrap-s-a587d5fc-15f0-4f2f-83d0-669862dec088, #wrap-content-s-a587d5fc-15f0-4f2f-83d0-669862dec088 { display: none !important; }}
@media (min-width: 0px) {
[id="s-a587d5fc-15f0-4f2f-83d0-669862dec088"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-a587d5fc-15f0-4f2f-83d0-669862dec088"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-a587d5fc-15f0-4f2f-83d0-669862dec088"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-a587d5fc-15f0-4f2f-83d0-669862dec088"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-176d89a6-2e75-436b-802e-cdd08c5127f6 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}

#s-176d89a6-2e75-436b-802e-cdd08c5127f6 {
  margin: 0 !important;
}

#s-176d89a6-2e75-436b-802e-cdd08c5127f6-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-176d89a6-2e75-436b-802e-cdd08c5127f6 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-176d89a6-2e75-436b-802e-cdd08c5127f6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-176d89a6-2e75-436b-802e-cdd08c5127f6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-176d89a6-2e75-436b-802e-cdd08c5127f6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-176d89a6-2e75-436b-802e-cdd08c5127f6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-176d89a6-2e75-436b-802e-cdd08c5127f6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-176d89a6-2e75-436b-802e-cdd08c5127f6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-176d89a6-2e75-436b-802e-cdd08c5127f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-176d89a6-2e75-436b-802e-cdd08c5127f6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image-container {
      position: relative;
    }

    .s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-176d89a6-2e75-436b-802e-cdd08c5127f6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

@media (min-width: 1200px){#s-176d89a6-2e75-436b-802e-cdd08c5127f6 {
  margin: 0 !important;
}

#s-176d89a6-2e75-436b-802e-cdd08c5127f6-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-176d89a6-2e75-436b-802e-cdd08c5127f6 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-176d89a6-2e75-436b-802e-cdd08c5127f6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-176d89a6-2e75-436b-802e-cdd08c5127f6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-176d89a6-2e75-436b-802e-cdd08c5127f6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-176d89a6-2e75-436b-802e-cdd08c5127f6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-176d89a6-2e75-436b-802e-cdd08c5127f6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-176d89a6-2e75-436b-802e-cdd08c5127f6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-176d89a6-2e75-436b-802e-cdd08c5127f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-176d89a6-2e75-436b-802e-cdd08c5127f6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image-container {
      position: relative;
    }

    .s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-176d89a6-2e75-436b-802e-cdd08c5127f6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-176d89a6-2e75-436b-802e-cdd08c5127f6 {
  margin: 0 !important;
}

#s-176d89a6-2e75-436b-802e-cdd08c5127f6-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-176d89a6-2e75-436b-802e-cdd08c5127f6 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-176d89a6-2e75-436b-802e-cdd08c5127f6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-176d89a6-2e75-436b-802e-cdd08c5127f6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-176d89a6-2e75-436b-802e-cdd08c5127f6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-176d89a6-2e75-436b-802e-cdd08c5127f6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-176d89a6-2e75-436b-802e-cdd08c5127f6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-176d89a6-2e75-436b-802e-cdd08c5127f6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-176d89a6-2e75-436b-802e-cdd08c5127f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-176d89a6-2e75-436b-802e-cdd08c5127f6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image-container {
      position: relative;
    }

    .s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-176d89a6-2e75-436b-802e-cdd08c5127f6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-176d89a6-2e75-436b-802e-cdd08c5127f6 {
  margin: 0 !important;
}

#s-176d89a6-2e75-436b-802e-cdd08c5127f6-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-176d89a6-2e75-436b-802e-cdd08c5127f6 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-176d89a6-2e75-436b-802e-cdd08c5127f6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-176d89a6-2e75-436b-802e-cdd08c5127f6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-176d89a6-2e75-436b-802e-cdd08c5127f6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-176d89a6-2e75-436b-802e-cdd08c5127f6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-176d89a6-2e75-436b-802e-cdd08c5127f6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-176d89a6-2e75-436b-802e-cdd08c5127f6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-176d89a6-2e75-436b-802e-cdd08c5127f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-176d89a6-2e75-436b-802e-cdd08c5127f6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image-container {
      position: relative;
    }

    .s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-176d89a6-2e75-436b-802e-cdd08c5127f6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (max-width: 767px){#s-176d89a6-2e75-436b-802e-cdd08c5127f6 {
  margin: 0 !important;
}

#s-176d89a6-2e75-436b-802e-cdd08c5127f6-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-176d89a6-2e75-436b-802e-cdd08c5127f6 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-176d89a6-2e75-436b-802e-cdd08c5127f6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-176d89a6-2e75-436b-802e-cdd08c5127f6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-176d89a6-2e75-436b-802e-cdd08c5127f6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-176d89a6-2e75-436b-802e-cdd08c5127f6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-176d89a6-2e75-436b-802e-cdd08c5127f6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-176d89a6-2e75-436b-802e-cdd08c5127f6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-176d89a6-2e75-436b-802e-cdd08c5127f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-176d89a6-2e75-436b-802e-cdd08c5127f6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image-container {
      position: relative;
    }

    .s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-176d89a6-2e75-436b-802e-cdd08c5127f6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-176d89a6-2e75-436b-802e-cdd08c5127f6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}
#s-1f028ac0-f213-469a-9c01-0040719032c4 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}
@media (min-width: 1200px){#s-1f028ac0-f213-469a-9c01-0040719032c4 {
  display: none;
}
#s-1f028ac0-f213-469a-9c01-0040719032c4, #wrap-s-1f028ac0-f213-469a-9c01-0040719032c4, #wrap-content-s-1f028ac0-f213-469a-9c01-0040719032c4 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1f028ac0-f213-469a-9c01-0040719032c4 {
  display: none;
}
#s-1f028ac0-f213-469a-9c01-0040719032c4, #wrap-s-1f028ac0-f213-469a-9c01-0040719032c4, #wrap-content-s-1f028ac0-f213-469a-9c01-0040719032c4 { display: none !important; }}
#s-1f028ac0-f213-469a-9c01-0040719032c4 {
  margin: 0 !important;
}

#s-1f028ac0-f213-469a-9c01-0040719032c4-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-1f028ac0-f213-469a-9c01-0040719032c4 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-1f028ac0-f213-469a-9c01-0040719032c4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1f028ac0-f213-469a-9c01-0040719032c4 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1f028ac0-f213-469a-9c01-0040719032c4 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1f028ac0-f213-469a-9c01-0040719032c4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1f028ac0-f213-469a-9c01-0040719032c4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-1f028ac0-f213-469a-9c01-0040719032c4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1f028ac0-f213-469a-9c01-0040719032c4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1f028ac0-f213-469a-9c01-0040719032c4 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image-container {
      position: relative;
    }

    .s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1f028ac0-f213-469a-9c01-0040719032c4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

@media (min-width: 1200px){#s-1f028ac0-f213-469a-9c01-0040719032c4 {
  margin: 0 !important;
}

#s-1f028ac0-f213-469a-9c01-0040719032c4-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-1f028ac0-f213-469a-9c01-0040719032c4 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-1f028ac0-f213-469a-9c01-0040719032c4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1f028ac0-f213-469a-9c01-0040719032c4 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1f028ac0-f213-469a-9c01-0040719032c4 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1f028ac0-f213-469a-9c01-0040719032c4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1f028ac0-f213-469a-9c01-0040719032c4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-1f028ac0-f213-469a-9c01-0040719032c4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1f028ac0-f213-469a-9c01-0040719032c4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1f028ac0-f213-469a-9c01-0040719032c4 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image-container {
      position: relative;
    }

    .s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1f028ac0-f213-469a-9c01-0040719032c4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-1f028ac0-f213-469a-9c01-0040719032c4 {
  margin: 0 !important;
}

#s-1f028ac0-f213-469a-9c01-0040719032c4-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-1f028ac0-f213-469a-9c01-0040719032c4 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-1f028ac0-f213-469a-9c01-0040719032c4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1f028ac0-f213-469a-9c01-0040719032c4 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1f028ac0-f213-469a-9c01-0040719032c4 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1f028ac0-f213-469a-9c01-0040719032c4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1f028ac0-f213-469a-9c01-0040719032c4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-1f028ac0-f213-469a-9c01-0040719032c4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1f028ac0-f213-469a-9c01-0040719032c4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1f028ac0-f213-469a-9c01-0040719032c4 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image-container {
      position: relative;
    }

    .s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1f028ac0-f213-469a-9c01-0040719032c4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-1f028ac0-f213-469a-9c01-0040719032c4 {
  margin: 0 !important;
}

#s-1f028ac0-f213-469a-9c01-0040719032c4-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-1f028ac0-f213-469a-9c01-0040719032c4 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-1f028ac0-f213-469a-9c01-0040719032c4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1f028ac0-f213-469a-9c01-0040719032c4 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1f028ac0-f213-469a-9c01-0040719032c4 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1f028ac0-f213-469a-9c01-0040719032c4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1f028ac0-f213-469a-9c01-0040719032c4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-1f028ac0-f213-469a-9c01-0040719032c4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1f028ac0-f213-469a-9c01-0040719032c4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1f028ac0-f213-469a-9c01-0040719032c4 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image-container {
      position: relative;
    }

    .s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1f028ac0-f213-469a-9c01-0040719032c4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (max-width: 767px){#s-1f028ac0-f213-469a-9c01-0040719032c4 {
  margin: 0 !important;
}

#s-1f028ac0-f213-469a-9c01-0040719032c4-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-1f028ac0-f213-469a-9c01-0040719032c4 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-1f028ac0-f213-469a-9c01-0040719032c4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1f028ac0-f213-469a-9c01-0040719032c4 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1f028ac0-f213-469a-9c01-0040719032c4 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1f028ac0-f213-469a-9c01-0040719032c4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1f028ac0-f213-469a-9c01-0040719032c4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-1f028ac0-f213-469a-9c01-0040719032c4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1f028ac0-f213-469a-9c01-0040719032c4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1f028ac0-f213-469a-9c01-0040719032c4 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image-container {
      position: relative;
    }

    .s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1f028ac0-f213-469a-9c01-0040719032c4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1f028ac0-f213-469a-9c01-0040719032c4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}
#s-472dadf3-e4b9-478b-afc3-e5957689c60f {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
}
@media (min-width: 1200px){#s-472dadf3-e4b9-478b-afc3-e5957689c60f {
  display: none;
}
#s-472dadf3-e4b9-478b-afc3-e5957689c60f, #wrap-s-472dadf3-e4b9-478b-afc3-e5957689c60f, #wrap-content-s-472dadf3-e4b9-478b-afc3-e5957689c60f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-472dadf3-e4b9-478b-afc3-e5957689c60f {
  display: none;
}
#s-472dadf3-e4b9-478b-afc3-e5957689c60f, #wrap-s-472dadf3-e4b9-478b-afc3-e5957689c60f, #wrap-content-s-472dadf3-e4b9-478b-afc3-e5957689c60f { display: none !important; }}
@media (min-width: 0px) {
[id="s-472dadf3-e4b9-478b-afc3-e5957689c60f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-472dadf3-e4b9-478b-afc3-e5957689c60f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-472dadf3-e4b9-478b-afc3-e5957689c60f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-472dadf3-e4b9-478b-afc3-e5957689c60f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-86302ff8-13c1-42b0-a150-86e52481f72c {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}

#s-86302ff8-13c1-42b0-a150-86e52481f72c {
  margin: 0 !important;
}

#s-86302ff8-13c1-42b0-a150-86e52481f72c-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-86302ff8-13c1-42b0-a150-86e52481f72c {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-86302ff8-13c1-42b0-a150-86e52481f72c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-86302ff8-13c1-42b0-a150-86e52481f72c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-86302ff8-13c1-42b0-a150-86e52481f72c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-86302ff8-13c1-42b0-a150-86e52481f72c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-86302ff8-13c1-42b0-a150-86e52481f72c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-86302ff8-13c1-42b0-a150-86e52481f72c .shogun-image-content {
  
    justify-content: center;
  
}

.s-86302ff8-13c1-42b0-a150-86e52481f72c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-86302ff8-13c1-42b0-a150-86e52481f72c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image-container {
      position: relative;
    }

    .s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-86302ff8-13c1-42b0-a150-86e52481f72c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

@media (min-width: 1200px){#s-86302ff8-13c1-42b0-a150-86e52481f72c {
  margin: 0 !important;
}

#s-86302ff8-13c1-42b0-a150-86e52481f72c-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-86302ff8-13c1-42b0-a150-86e52481f72c {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-86302ff8-13c1-42b0-a150-86e52481f72c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-86302ff8-13c1-42b0-a150-86e52481f72c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-86302ff8-13c1-42b0-a150-86e52481f72c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-86302ff8-13c1-42b0-a150-86e52481f72c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-86302ff8-13c1-42b0-a150-86e52481f72c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-86302ff8-13c1-42b0-a150-86e52481f72c .shogun-image-content {
  
    justify-content: center;
  
}

.s-86302ff8-13c1-42b0-a150-86e52481f72c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-86302ff8-13c1-42b0-a150-86e52481f72c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image-container {
      position: relative;
    }

    .s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-86302ff8-13c1-42b0-a150-86e52481f72c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-86302ff8-13c1-42b0-a150-86e52481f72c {
  margin: 0 !important;
}

#s-86302ff8-13c1-42b0-a150-86e52481f72c-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-86302ff8-13c1-42b0-a150-86e52481f72c {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-86302ff8-13c1-42b0-a150-86e52481f72c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-86302ff8-13c1-42b0-a150-86e52481f72c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-86302ff8-13c1-42b0-a150-86e52481f72c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-86302ff8-13c1-42b0-a150-86e52481f72c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-86302ff8-13c1-42b0-a150-86e52481f72c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-86302ff8-13c1-42b0-a150-86e52481f72c .shogun-image-content {
  
    justify-content: center;
  
}

.s-86302ff8-13c1-42b0-a150-86e52481f72c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-86302ff8-13c1-42b0-a150-86e52481f72c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image-container {
      position: relative;
    }

    .s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-86302ff8-13c1-42b0-a150-86e52481f72c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-86302ff8-13c1-42b0-a150-86e52481f72c {
  margin: 0 !important;
}

#s-86302ff8-13c1-42b0-a150-86e52481f72c-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-86302ff8-13c1-42b0-a150-86e52481f72c {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-86302ff8-13c1-42b0-a150-86e52481f72c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-86302ff8-13c1-42b0-a150-86e52481f72c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-86302ff8-13c1-42b0-a150-86e52481f72c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-86302ff8-13c1-42b0-a150-86e52481f72c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-86302ff8-13c1-42b0-a150-86e52481f72c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-86302ff8-13c1-42b0-a150-86e52481f72c .shogun-image-content {
  
    justify-content: center;
  
}

.s-86302ff8-13c1-42b0-a150-86e52481f72c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-86302ff8-13c1-42b0-a150-86e52481f72c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image-container {
      position: relative;
    }

    .s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-86302ff8-13c1-42b0-a150-86e52481f72c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (max-width: 767px){#s-86302ff8-13c1-42b0-a150-86e52481f72c {
  margin: 0 !important;
}

#s-86302ff8-13c1-42b0-a150-86e52481f72c-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-86302ff8-13c1-42b0-a150-86e52481f72c {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-86302ff8-13c1-42b0-a150-86e52481f72c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-86302ff8-13c1-42b0-a150-86e52481f72c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-86302ff8-13c1-42b0-a150-86e52481f72c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-86302ff8-13c1-42b0-a150-86e52481f72c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-86302ff8-13c1-42b0-a150-86e52481f72c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-86302ff8-13c1-42b0-a150-86e52481f72c .shogun-image-content {
  
    justify-content: center;
  
}

.s-86302ff8-13c1-42b0-a150-86e52481f72c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-86302ff8-13c1-42b0-a150-86e52481f72c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image-container {
      position: relative;
    }

    .s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-86302ff8-13c1-42b0-a150-86e52481f72c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-86302ff8-13c1-42b0-a150-86e52481f72c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}
#s-40c1c6f9-f571-40b4-afe6-1425b970dbaa {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}
@media (min-width: 1200px){#s-40c1c6f9-f571-40b4-afe6-1425b970dbaa {
  display: none;
}
#s-40c1c6f9-f571-40b4-afe6-1425b970dbaa, #wrap-s-40c1c6f9-f571-40b4-afe6-1425b970dbaa, #wrap-content-s-40c1c6f9-f571-40b4-afe6-1425b970dbaa { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-40c1c6f9-f571-40b4-afe6-1425b970dbaa {
  display: none;
}
#s-40c1c6f9-f571-40b4-afe6-1425b970dbaa, #wrap-s-40c1c6f9-f571-40b4-afe6-1425b970dbaa, #wrap-content-s-40c1c6f9-f571-40b4-afe6-1425b970dbaa { display: none !important; }}
#s-40c1c6f9-f571-40b4-afe6-1425b970dbaa {
  margin: 0 !important;
}

#s-40c1c6f9-f571-40b4-afe6-1425b970dbaa-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-40c1c6f9-f571-40b4-afe6-1425b970dbaa {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-40c1c6f9-f571-40b4-afe6-1425b970dbaa {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-40c1c6f9-f571-40b4-afe6-1425b970dbaa .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-40c1c6f9-f571-40b4-afe6-1425b970dbaa .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-40c1c6f9-f571-40b4-afe6-1425b970dbaa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-40c1c6f9-f571-40b4-afe6-1425b970dbaa img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-40c1c6f9-f571-40b4-afe6-1425b970dbaa .shogun-image-content {
  
    justify-content: center;
  
}

.s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-40c1c6f9-f571-40b4-afe6-1425b970dbaa {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image-container {
      position: relative;
    }

    .s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-40c1c6f9-f571-40b4-afe6-1425b970dbaa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

@media (min-width: 1200px){#s-40c1c6f9-f571-40b4-afe6-1425b970dbaa {
  margin: 0 !important;
}

#s-40c1c6f9-f571-40b4-afe6-1425b970dbaa-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-40c1c6f9-f571-40b4-afe6-1425b970dbaa {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-40c1c6f9-f571-40b4-afe6-1425b970dbaa {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-40c1c6f9-f571-40b4-afe6-1425b970dbaa .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-40c1c6f9-f571-40b4-afe6-1425b970dbaa .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-40c1c6f9-f571-40b4-afe6-1425b970dbaa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-40c1c6f9-f571-40b4-afe6-1425b970dbaa img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-40c1c6f9-f571-40b4-afe6-1425b970dbaa .shogun-image-content {
  
    justify-content: center;
  
}

.s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-40c1c6f9-f571-40b4-afe6-1425b970dbaa {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image-container {
      position: relative;
    }

    .s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-40c1c6f9-f571-40b4-afe6-1425b970dbaa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-40c1c6f9-f571-40b4-afe6-1425b970dbaa {
  margin: 0 !important;
}

#s-40c1c6f9-f571-40b4-afe6-1425b970dbaa-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-40c1c6f9-f571-40b4-afe6-1425b970dbaa {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-40c1c6f9-f571-40b4-afe6-1425b970dbaa {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-40c1c6f9-f571-40b4-afe6-1425b970dbaa .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-40c1c6f9-f571-40b4-afe6-1425b970dbaa .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-40c1c6f9-f571-40b4-afe6-1425b970dbaa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-40c1c6f9-f571-40b4-afe6-1425b970dbaa img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-40c1c6f9-f571-40b4-afe6-1425b970dbaa .shogun-image-content {
  
    justify-content: center;
  
}

.s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-40c1c6f9-f571-40b4-afe6-1425b970dbaa {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image-container {
      position: relative;
    }

    .s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-40c1c6f9-f571-40b4-afe6-1425b970dbaa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-40c1c6f9-f571-40b4-afe6-1425b970dbaa {
  margin: 0 !important;
}

#s-40c1c6f9-f571-40b4-afe6-1425b970dbaa-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-40c1c6f9-f571-40b4-afe6-1425b970dbaa {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-40c1c6f9-f571-40b4-afe6-1425b970dbaa {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-40c1c6f9-f571-40b4-afe6-1425b970dbaa .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-40c1c6f9-f571-40b4-afe6-1425b970dbaa .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-40c1c6f9-f571-40b4-afe6-1425b970dbaa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-40c1c6f9-f571-40b4-afe6-1425b970dbaa img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-40c1c6f9-f571-40b4-afe6-1425b970dbaa .shogun-image-content {
  
    justify-content: center;
  
}

.s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-40c1c6f9-f571-40b4-afe6-1425b970dbaa {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image-container {
      position: relative;
    }

    .s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-40c1c6f9-f571-40b4-afe6-1425b970dbaa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (max-width: 767px){#s-40c1c6f9-f571-40b4-afe6-1425b970dbaa {
  margin: 0 !important;
}

#s-40c1c6f9-f571-40b4-afe6-1425b970dbaa-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-40c1c6f9-f571-40b4-afe6-1425b970dbaa {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-40c1c6f9-f571-40b4-afe6-1425b970dbaa {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-40c1c6f9-f571-40b4-afe6-1425b970dbaa .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-40c1c6f9-f571-40b4-afe6-1425b970dbaa .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-40c1c6f9-f571-40b4-afe6-1425b970dbaa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-40c1c6f9-f571-40b4-afe6-1425b970dbaa img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-40c1c6f9-f571-40b4-afe6-1425b970dbaa .shogun-image-content {
  
    justify-content: center;
  
}

.s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-40c1c6f9-f571-40b4-afe6-1425b970dbaa {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image-container {
      position: relative;
    }

    .s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-40c1c6f9-f571-40b4-afe6-1425b970dbaa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-40c1c6f9-f571-40b4-afe6-1425b970dbaa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}
#s-fe8d2061-3f98-4e6b-96c5-5e83cd7a61e8 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
}
@media (min-width: 1200px){#s-fe8d2061-3f98-4e6b-96c5-5e83cd7a61e8 {
  display: none;
}
#s-fe8d2061-3f98-4e6b-96c5-5e83cd7a61e8, #wrap-s-fe8d2061-3f98-4e6b-96c5-5e83cd7a61e8, #wrap-content-s-fe8d2061-3f98-4e6b-96c5-5e83cd7a61e8 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-fe8d2061-3f98-4e6b-96c5-5e83cd7a61e8 {
  display: none;
}
#s-fe8d2061-3f98-4e6b-96c5-5e83cd7a61e8, #wrap-s-fe8d2061-3f98-4e6b-96c5-5e83cd7a61e8, #wrap-content-s-fe8d2061-3f98-4e6b-96c5-5e83cd7a61e8 { display: none !important; }}
@media (min-width: 0px) {
[id="s-fe8d2061-3f98-4e6b-96c5-5e83cd7a61e8"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-fe8d2061-3f98-4e6b-96c5-5e83cd7a61e8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-fe8d2061-3f98-4e6b-96c5-5e83cd7a61e8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-fe8d2061-3f98-4e6b-96c5-5e83cd7a61e8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-47faf8c0-976a-422b-9de0-188167a6d075 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}

#s-47faf8c0-976a-422b-9de0-188167a6d075 {
  margin: 0 !important;
}

#s-47faf8c0-976a-422b-9de0-188167a6d075-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-47faf8c0-976a-422b-9de0-188167a6d075 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-47faf8c0-976a-422b-9de0-188167a6d075 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-47faf8c0-976a-422b-9de0-188167a6d075 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-47faf8c0-976a-422b-9de0-188167a6d075 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-47faf8c0-976a-422b-9de0-188167a6d075 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-47faf8c0-976a-422b-9de0-188167a6d075 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-47faf8c0-976a-422b-9de0-188167a6d075 .shogun-image-content {
  
    justify-content: center;
  
}

.s-47faf8c0-976a-422b-9de0-188167a6d075.shg-align-container {
  display: flex;
  justify-content: center
}

.s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-47faf8c0-976a-422b-9de0-188167a6d075 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image-container {
      position: relative;
    }

    .s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-47faf8c0-976a-422b-9de0-188167a6d075 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

@media (min-width: 1200px){#s-47faf8c0-976a-422b-9de0-188167a6d075 {
  margin: 0 !important;
}

#s-47faf8c0-976a-422b-9de0-188167a6d075-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-47faf8c0-976a-422b-9de0-188167a6d075 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-47faf8c0-976a-422b-9de0-188167a6d075 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-47faf8c0-976a-422b-9de0-188167a6d075 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-47faf8c0-976a-422b-9de0-188167a6d075 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-47faf8c0-976a-422b-9de0-188167a6d075 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-47faf8c0-976a-422b-9de0-188167a6d075 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-47faf8c0-976a-422b-9de0-188167a6d075 .shogun-image-content {
  
    justify-content: center;
  
}

.s-47faf8c0-976a-422b-9de0-188167a6d075.shg-align-container {
  display: flex;
  justify-content: center
}

.s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-47faf8c0-976a-422b-9de0-188167a6d075 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image-container {
      position: relative;
    }

    .s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-47faf8c0-976a-422b-9de0-188167a6d075 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-47faf8c0-976a-422b-9de0-188167a6d075 {
  margin: 0 !important;
}

#s-47faf8c0-976a-422b-9de0-188167a6d075-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-47faf8c0-976a-422b-9de0-188167a6d075 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-47faf8c0-976a-422b-9de0-188167a6d075 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-47faf8c0-976a-422b-9de0-188167a6d075 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-47faf8c0-976a-422b-9de0-188167a6d075 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-47faf8c0-976a-422b-9de0-188167a6d075 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-47faf8c0-976a-422b-9de0-188167a6d075 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-47faf8c0-976a-422b-9de0-188167a6d075 .shogun-image-content {
  
    justify-content: center;
  
}

.s-47faf8c0-976a-422b-9de0-188167a6d075.shg-align-container {
  display: flex;
  justify-content: center
}

.s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-47faf8c0-976a-422b-9de0-188167a6d075 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image-container {
      position: relative;
    }

    .s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-47faf8c0-976a-422b-9de0-188167a6d075 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-47faf8c0-976a-422b-9de0-188167a6d075 {
  margin: 0 !important;
}

#s-47faf8c0-976a-422b-9de0-188167a6d075-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-47faf8c0-976a-422b-9de0-188167a6d075 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-47faf8c0-976a-422b-9de0-188167a6d075 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-47faf8c0-976a-422b-9de0-188167a6d075 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-47faf8c0-976a-422b-9de0-188167a6d075 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-47faf8c0-976a-422b-9de0-188167a6d075 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-47faf8c0-976a-422b-9de0-188167a6d075 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-47faf8c0-976a-422b-9de0-188167a6d075 .shogun-image-content {
  
    justify-content: center;
  
}

.s-47faf8c0-976a-422b-9de0-188167a6d075.shg-align-container {
  display: flex;
  justify-content: center
}

.s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-47faf8c0-976a-422b-9de0-188167a6d075 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image-container {
      position: relative;
    }

    .s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-47faf8c0-976a-422b-9de0-188167a6d075 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (max-width: 767px){#s-47faf8c0-976a-422b-9de0-188167a6d075 {
  margin: 0 !important;
}

#s-47faf8c0-976a-422b-9de0-188167a6d075-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-47faf8c0-976a-422b-9de0-188167a6d075 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-47faf8c0-976a-422b-9de0-188167a6d075 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-47faf8c0-976a-422b-9de0-188167a6d075 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-47faf8c0-976a-422b-9de0-188167a6d075 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-47faf8c0-976a-422b-9de0-188167a6d075 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-47faf8c0-976a-422b-9de0-188167a6d075 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-47faf8c0-976a-422b-9de0-188167a6d075 .shogun-image-content {
  
    justify-content: center;
  
}

.s-47faf8c0-976a-422b-9de0-188167a6d075.shg-align-container {
  display: flex;
  justify-content: center
}

.s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-47faf8c0-976a-422b-9de0-188167a6d075 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image-container {
      position: relative;
    }

    .s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-47faf8c0-976a-422b-9de0-188167a6d075.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-47faf8c0-976a-422b-9de0-188167a6d075 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}
#s-60c54332-a7ef-4526-9503-29f3523c6e10 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}
@media (min-width: 1200px){#s-60c54332-a7ef-4526-9503-29f3523c6e10 {
  display: none;
}
#s-60c54332-a7ef-4526-9503-29f3523c6e10, #wrap-s-60c54332-a7ef-4526-9503-29f3523c6e10, #wrap-content-s-60c54332-a7ef-4526-9503-29f3523c6e10 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-60c54332-a7ef-4526-9503-29f3523c6e10 {
  display: none;
}
#s-60c54332-a7ef-4526-9503-29f3523c6e10, #wrap-s-60c54332-a7ef-4526-9503-29f3523c6e10, #wrap-content-s-60c54332-a7ef-4526-9503-29f3523c6e10 { display: none !important; }}
#s-60c54332-a7ef-4526-9503-29f3523c6e10 {
  margin: 0 !important;
}

#s-60c54332-a7ef-4526-9503-29f3523c6e10-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-60c54332-a7ef-4526-9503-29f3523c6e10 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-60c54332-a7ef-4526-9503-29f3523c6e10 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-60c54332-a7ef-4526-9503-29f3523c6e10 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-60c54332-a7ef-4526-9503-29f3523c6e10 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-60c54332-a7ef-4526-9503-29f3523c6e10 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-60c54332-a7ef-4526-9503-29f3523c6e10 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-60c54332-a7ef-4526-9503-29f3523c6e10 .shogun-image-content {
  
    justify-content: center;
  
}

.s-60c54332-a7ef-4526-9503-29f3523c6e10.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60c54332-a7ef-4526-9503-29f3523c6e10 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image-container {
      position: relative;
    }

    .s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60c54332-a7ef-4526-9503-29f3523c6e10 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

@media (min-width: 1200px){#s-60c54332-a7ef-4526-9503-29f3523c6e10 {
  margin: 0 !important;
}

#s-60c54332-a7ef-4526-9503-29f3523c6e10-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-60c54332-a7ef-4526-9503-29f3523c6e10 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-60c54332-a7ef-4526-9503-29f3523c6e10 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-60c54332-a7ef-4526-9503-29f3523c6e10 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-60c54332-a7ef-4526-9503-29f3523c6e10 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-60c54332-a7ef-4526-9503-29f3523c6e10 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-60c54332-a7ef-4526-9503-29f3523c6e10 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-60c54332-a7ef-4526-9503-29f3523c6e10 .shogun-image-content {
  
    justify-content: center;
  
}

.s-60c54332-a7ef-4526-9503-29f3523c6e10.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60c54332-a7ef-4526-9503-29f3523c6e10 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image-container {
      position: relative;
    }

    .s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60c54332-a7ef-4526-9503-29f3523c6e10 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-60c54332-a7ef-4526-9503-29f3523c6e10 {
  margin: 0 !important;
}

#s-60c54332-a7ef-4526-9503-29f3523c6e10-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-60c54332-a7ef-4526-9503-29f3523c6e10 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-60c54332-a7ef-4526-9503-29f3523c6e10 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-60c54332-a7ef-4526-9503-29f3523c6e10 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-60c54332-a7ef-4526-9503-29f3523c6e10 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-60c54332-a7ef-4526-9503-29f3523c6e10 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-60c54332-a7ef-4526-9503-29f3523c6e10 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-60c54332-a7ef-4526-9503-29f3523c6e10 .shogun-image-content {
  
    justify-content: center;
  
}

.s-60c54332-a7ef-4526-9503-29f3523c6e10.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60c54332-a7ef-4526-9503-29f3523c6e10 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image-container {
      position: relative;
    }

    .s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60c54332-a7ef-4526-9503-29f3523c6e10 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-60c54332-a7ef-4526-9503-29f3523c6e10 {
  margin: 0 !important;
}

#s-60c54332-a7ef-4526-9503-29f3523c6e10-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-60c54332-a7ef-4526-9503-29f3523c6e10 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-60c54332-a7ef-4526-9503-29f3523c6e10 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-60c54332-a7ef-4526-9503-29f3523c6e10 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-60c54332-a7ef-4526-9503-29f3523c6e10 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-60c54332-a7ef-4526-9503-29f3523c6e10 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-60c54332-a7ef-4526-9503-29f3523c6e10 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-60c54332-a7ef-4526-9503-29f3523c6e10 .shogun-image-content {
  
    justify-content: center;
  
}

.s-60c54332-a7ef-4526-9503-29f3523c6e10.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60c54332-a7ef-4526-9503-29f3523c6e10 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image-container {
      position: relative;
    }

    .s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60c54332-a7ef-4526-9503-29f3523c6e10 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (max-width: 767px){#s-60c54332-a7ef-4526-9503-29f3523c6e10 {
  margin: 0 !important;
}

#s-60c54332-a7ef-4526-9503-29f3523c6e10-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-60c54332-a7ef-4526-9503-29f3523c6e10 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-60c54332-a7ef-4526-9503-29f3523c6e10 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-60c54332-a7ef-4526-9503-29f3523c6e10 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-60c54332-a7ef-4526-9503-29f3523c6e10 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-60c54332-a7ef-4526-9503-29f3523c6e10 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-60c54332-a7ef-4526-9503-29f3523c6e10 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-60c54332-a7ef-4526-9503-29f3523c6e10 .shogun-image-content {
  
    justify-content: center;
  
}

.s-60c54332-a7ef-4526-9503-29f3523c6e10.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60c54332-a7ef-4526-9503-29f3523c6e10 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image-container {
      position: relative;
    }

    .s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60c54332-a7ef-4526-9503-29f3523c6e10.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60c54332-a7ef-4526-9503-29f3523c6e10 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}
#s-8571984d-f910-4a86-a65b-5d53d8a33c54 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
}
@media (min-width: 1200px){#s-8571984d-f910-4a86-a65b-5d53d8a33c54 {
  display: none;
}
#s-8571984d-f910-4a86-a65b-5d53d8a33c54, #wrap-s-8571984d-f910-4a86-a65b-5d53d8a33c54, #wrap-content-s-8571984d-f910-4a86-a65b-5d53d8a33c54 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8571984d-f910-4a86-a65b-5d53d8a33c54 {
  display: none;
}
#s-8571984d-f910-4a86-a65b-5d53d8a33c54, #wrap-s-8571984d-f910-4a86-a65b-5d53d8a33c54, #wrap-content-s-8571984d-f910-4a86-a65b-5d53d8a33c54 { display: none !important; }}
@media (min-width: 0px) {
[id="s-8571984d-f910-4a86-a65b-5d53d8a33c54"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-8571984d-f910-4a86-a65b-5d53d8a33c54"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-8571984d-f910-4a86-a65b-5d53d8a33c54"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-8571984d-f910-4a86-a65b-5d53d8a33c54"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}

#s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 {
  margin: 0 !important;
}

#s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5-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-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image-container {
      position: relative;
    }

    .s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

@media (min-width: 1200px){#s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 {
  margin: 0 !important;
}

#s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5-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-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image-container {
      position: relative;
    }

    .s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 {
  margin: 0 !important;
}

#s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5-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-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image-container {
      position: relative;
    }

    .s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 {
  margin: 0 !important;
}

#s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5-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-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image-container {
      position: relative;
    }

    .s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (max-width: 767px){#s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 {
  margin: 0 !important;
}

#s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5-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-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image-container {
      position: relative;
    }

    .s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3d5d74ab-fc0e-4b5a-a2c7-9e509bcd79d5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}
#s-c75031a8-ac1d-42d4-8a81-703d75565701 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}

#s-c75031a8-ac1d-42d4-8a81-703d75565701 {
  margin: 0 !important;
}

#s-c75031a8-ac1d-42d4-8a81-703d75565701-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-c75031a8-ac1d-42d4-8a81-703d75565701 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-c75031a8-ac1d-42d4-8a81-703d75565701 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c75031a8-ac1d-42d4-8a81-703d75565701 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c75031a8-ac1d-42d4-8a81-703d75565701 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c75031a8-ac1d-42d4-8a81-703d75565701 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c75031a8-ac1d-42d4-8a81-703d75565701 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-c75031a8-ac1d-42d4-8a81-703d75565701 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c75031a8-ac1d-42d4-8a81-703d75565701.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c75031a8-ac1d-42d4-8a81-703d75565701 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image-container {
      position: relative;
    }

    .s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c75031a8-ac1d-42d4-8a81-703d75565701 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

@media (min-width: 1200px){#s-c75031a8-ac1d-42d4-8a81-703d75565701 {
  margin: 0 !important;
}

#s-c75031a8-ac1d-42d4-8a81-703d75565701-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-c75031a8-ac1d-42d4-8a81-703d75565701 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-c75031a8-ac1d-42d4-8a81-703d75565701 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c75031a8-ac1d-42d4-8a81-703d75565701 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c75031a8-ac1d-42d4-8a81-703d75565701 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c75031a8-ac1d-42d4-8a81-703d75565701 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c75031a8-ac1d-42d4-8a81-703d75565701 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-c75031a8-ac1d-42d4-8a81-703d75565701 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c75031a8-ac1d-42d4-8a81-703d75565701.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c75031a8-ac1d-42d4-8a81-703d75565701 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image-container {
      position: relative;
    }

    .s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c75031a8-ac1d-42d4-8a81-703d75565701 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-c75031a8-ac1d-42d4-8a81-703d75565701 {
  margin: 0 !important;
}

#s-c75031a8-ac1d-42d4-8a81-703d75565701-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-c75031a8-ac1d-42d4-8a81-703d75565701 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-c75031a8-ac1d-42d4-8a81-703d75565701 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c75031a8-ac1d-42d4-8a81-703d75565701 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c75031a8-ac1d-42d4-8a81-703d75565701 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c75031a8-ac1d-42d4-8a81-703d75565701 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c75031a8-ac1d-42d4-8a81-703d75565701 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-c75031a8-ac1d-42d4-8a81-703d75565701 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c75031a8-ac1d-42d4-8a81-703d75565701.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c75031a8-ac1d-42d4-8a81-703d75565701 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image-container {
      position: relative;
    }

    .s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c75031a8-ac1d-42d4-8a81-703d75565701 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-c75031a8-ac1d-42d4-8a81-703d75565701 {
  margin: 0 !important;
}

#s-c75031a8-ac1d-42d4-8a81-703d75565701-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-c75031a8-ac1d-42d4-8a81-703d75565701 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-c75031a8-ac1d-42d4-8a81-703d75565701 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c75031a8-ac1d-42d4-8a81-703d75565701 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c75031a8-ac1d-42d4-8a81-703d75565701 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c75031a8-ac1d-42d4-8a81-703d75565701 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c75031a8-ac1d-42d4-8a81-703d75565701 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-c75031a8-ac1d-42d4-8a81-703d75565701 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c75031a8-ac1d-42d4-8a81-703d75565701.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c75031a8-ac1d-42d4-8a81-703d75565701 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image-container {
      position: relative;
    }

    .s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c75031a8-ac1d-42d4-8a81-703d75565701 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (max-width: 767px){#s-c75031a8-ac1d-42d4-8a81-703d75565701 {
  margin: 0 !important;
}

#s-c75031a8-ac1d-42d4-8a81-703d75565701-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-c75031a8-ac1d-42d4-8a81-703d75565701 {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-c75031a8-ac1d-42d4-8a81-703d75565701 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c75031a8-ac1d-42d4-8a81-703d75565701 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c75031a8-ac1d-42d4-8a81-703d75565701 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c75031a8-ac1d-42d4-8a81-703d75565701 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c75031a8-ac1d-42d4-8a81-703d75565701 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1000px;
  }



  img.s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-c75031a8-ac1d-42d4-8a81-703d75565701 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c75031a8-ac1d-42d4-8a81-703d75565701.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c75031a8-ac1d-42d4-8a81-703d75565701 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image-container {
      position: relative;
    }

    .s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c75031a8-ac1d-42d4-8a81-703d75565701.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c75031a8-ac1d-42d4-8a81-703d75565701 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}
#s-592a683e-3fc7-4aef-8e6b-77b504ea313c {
  margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
min-height: 50px;
}








#s-592a683e-3fc7-4aef-8e6b-77b504ea313c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-592a683e-3fc7-4aef-8e6b-77b504ea313c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c4b89bff-46bf-4a4d-b5e3-ef4e7a08a780 {
  margin-left: 1%;
margin-right: 1%;
padding-left: 0%;
padding-right: 0%;
min-height: 50px;
}
@media (max-width: 767px){#s-c4b89bff-46bf-4a4d-b5e3-ef4e7a08a780 {
  margin-bottom: 0px;
}
}







#s-c4b89bff-46bf-4a4d-b5e3-ef4e7a08a780 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c4b89bff-46bf-4a4d-b5e3-ef4e7a08a780.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-86c27154-8eca-4b15-9dda-f99d4e02edac {
  text-align: left;
}

#s-dbfca2e6-a260-468c-82f5-2870dee8f3fc {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 20px;
margin-right: 0%;
max-width: 8001px;
aspect-ratio: 8001/3458;
text-align: center;
opacity: 1;
background-color: rgba(255, 255, 255, 1);
}
#s-dbfca2e6-a260-468c-82f5-2870dee8f3fc:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
opacity: 1 !important;}
#s-dbfca2e6-a260-468c-82f5-2870dee8f3fc {
  margin: 0 !important;
}

#s-dbfca2e6-a260-468c-82f5-2870dee8f3fc-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-dbfca2e6-a260-468c-82f5-2870dee8f3fc {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0%;
  margin-right: 0%;
  margin-top: 0px;
  margin-bottom: 20px;
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  background: rgba(255, 255, 255, 1);
}

.shg-image-content-margin-container-s-dbfca2e6-a260-468c-82f5-2870dee8f3fc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  margin-left: 0%;
  margin-right: 0%;
  margin-top: 0px;
  margin-bottom: 20px;
  /* Add padding handling matching image-margin-container */
  
  
  
  
}





  img.s-dbfca2e6-a260-468c-82f5-2870dee8f3fc.shogun-image {
    
    
    
    max-height: 8001px;
  }


.s-dbfca2e6-a260-468c-82f5-2870dee8f3fc .shogun-image-content {
  
    justify-content: center;
  
}

.s-dbfca2e6-a260-468c-82f5-2870dee8f3fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dbfca2e6-a260-468c-82f5-2870dee8f3fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dbfca2e6-a260-468c-82f5-2870dee8f3fc.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){#s-dbfca2e6-a260-468c-82f5-2870dee8f3fc {
  margin: 0 !important;
}

#s-dbfca2e6-a260-468c-82f5-2870dee8f3fc-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-dbfca2e6-a260-468c-82f5-2870dee8f3fc {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-dbfca2e6-a260-468c-82f5-2870dee8f3fc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}





  img.s-dbfca2e6-a260-468c-82f5-2870dee8f3fc.shogun-image {
    
    
    
    max-height: 8001px;
  }


.s-dbfca2e6-a260-468c-82f5-2870dee8f3fc .shogun-image-content {
  
    justify-content: center;
  
}

.s-dbfca2e6-a260-468c-82f5-2870dee8f3fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dbfca2e6-a260-468c-82f5-2870dee8f3fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dbfca2e6-a260-468c-82f5-2870dee8f3fc.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-dbfca2e6-a260-468c-82f5-2870dee8f3fc {
  margin: 0 !important;
}

#s-dbfca2e6-a260-468c-82f5-2870dee8f3fc-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-dbfca2e6-a260-468c-82f5-2870dee8f3fc {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-dbfca2e6-a260-468c-82f5-2870dee8f3fc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}





  img.s-dbfca2e6-a260-468c-82f5-2870dee8f3fc.shogun-image {
    
    
    
    max-height: 8001px;
  }


.s-dbfca2e6-a260-468c-82f5-2870dee8f3fc .shogun-image-content {
  
    justify-content: center;
  
}

.s-dbfca2e6-a260-468c-82f5-2870dee8f3fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dbfca2e6-a260-468c-82f5-2870dee8f3fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dbfca2e6-a260-468c-82f5-2870dee8f3fc.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){#s-dbfca2e6-a260-468c-82f5-2870dee8f3fc {
  margin: 0 !important;
}

#s-dbfca2e6-a260-468c-82f5-2870dee8f3fc-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-dbfca2e6-a260-468c-82f5-2870dee8f3fc {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-dbfca2e6-a260-468c-82f5-2870dee8f3fc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}





  img.s-dbfca2e6-a260-468c-82f5-2870dee8f3fc.shogun-image {
    
    
    
    max-height: 8001px;
  }


.s-dbfca2e6-a260-468c-82f5-2870dee8f3fc .shogun-image-content {
  
    justify-content: center;
  
}

.s-dbfca2e6-a260-468c-82f5-2870dee8f3fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dbfca2e6-a260-468c-82f5-2870dee8f3fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dbfca2e6-a260-468c-82f5-2870dee8f3fc.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){#s-dbfca2e6-a260-468c-82f5-2870dee8f3fc {
  margin: 0 !important;
}

#s-dbfca2e6-a260-468c-82f5-2870dee8f3fc-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-dbfca2e6-a260-468c-82f5-2870dee8f3fc {
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
}

.shg-image-content-margin-container-s-dbfca2e6-a260-468c-82f5-2870dee8f3fc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling matching image-margin-container */
  
  
  
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}





  img.s-dbfca2e6-a260-468c-82f5-2870dee8f3fc.shogun-image {
    
    
    
    max-height: 8001px;
  }


.s-dbfca2e6-a260-468c-82f5-2870dee8f3fc .shogun-image-content {
  
    justify-content: center;
  
}

.s-dbfca2e6-a260-468c-82f5-2870dee8f3fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dbfca2e6-a260-468c-82f5-2870dee8f3fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dbfca2e6-a260-468c-82f5-2870dee8f3fc.shogun-image {
  box-sizing: border-box;
}




}
/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}

.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty:not(.shopify-section *):not([id^="wistia"]) {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}

/* <-- User Content Animations */

.shogun-form-error-msg,
.shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

@media only screen
       and (min-width: 1024px)
       and (max-height: 1366px)
       and (-webkit-min-device-pixel-ratio: 1.5)
       and (hover: none)
       and (orientation: landscape) {
  .shg-box {
    background-attachment: scroll !important;
  }
}
